-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
509 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ Source: clasp-cl | |
Section: lisp | ||
Priority: optional | ||
Maintainer: Tarn W. Burton <[email protected]> | ||
Build-Depends: debhelper-compat (= 13), libelf-dev, libgmp-dev, llvm-15, | ||
clang-15, sbcl, libclang-15-dev, llvm-15-dev, ninja-build, libfmt-dev, | ||
git, pkg-config, libboost-all-dev, libclang-cpp15, libclang-cpp15-dev, | ||
Build-Depends: debhelper-compat (= 13), libelf-dev, libgmp-dev, llvm-18, | ||
clang-18, sbcl, libclang-18-dev, llvm-18-dev, ninja-build, libfmt-dev, | ||
git, pkg-config, libboost-all-dev, libclang-cpp18, libclang-cpp18-dev, | ||
libnetcdf-dev, libczmq-dev, libexpat1-dev | ||
Standards-Version: 4.5.1 | ||
Homepage: https://github.com/clasp-developers/clasp | ||
|
@@ -20,7 +20,7 @@ Provides: lisp-compiler | |
Architecture: any | ||
Build-Profiles: <!noclasp> | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, libelf1, libgmp10, libgmpxx4ldbl, | ||
llvm-15, clang-15, libclang-cpp15 | ||
llvm-18, clang-18, libclang-cpp18 | ||
Description: Common Lisp implementation that brings Common Lisp and C++ Together | ||
Clasp is a new Common Lisp implementation that seamlessly interoperates | ||
with C++ libraries and programs using LLVM for compilation to native | ||
|
@@ -37,9 +37,9 @@ Conflicts: clasp-cl | |
Provides: lisp-compiler, clasp-cl | ||
Architecture: any | ||
Build-Profiles: <!nocando> | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, libelf-dev, libgmp-dev, llvm-15, | ||
clang-15, sbcl, libclang-15-dev, llvm-15-dev, libfmt-dev, | ||
libclang-cpp15, libclang-cpp15-dev, libnetcdf-dev, libczmq-dev, | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, libelf-dev, libgmp-dev, llvm-18, | ||
clang-18, sbcl, libclang-18-dev, llvm-18-dev, libfmt-dev, | ||
libclang-cpp18, libclang-cpp18-dev, libnetcdf-dev, libczmq-dev, | ||
libexpat1-dev, ninja-build | ||
Description: Common Lisp implementation that brings Common Lisp and C++ Together | ||
Clasp is a new Common Lisp implementation that seamlessly interoperates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(if (member :cando k:*extensions*) | ||
(k:sources :iclasp #~"clasp_gc_cando.sif") | ||
(k:sources :iclasp #~"clasp_gc.sif")) | ||
(k:sources :libclasp #~"clasp_gc_cando.sif") | ||
(k:sources :libclasp #~"clasp_gc.sif")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(k:sources :iclasp | ||
(k:sources :libclasp | ||
#~"astExpose0.cc" | ||
#~"astExpose1.cc" | ||
#~"clangTooling.cc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(k:sources :iclasp | ||
(k:sources :libclasp | ||
#~"adapter.cc" | ||
#~"class_rep.cc" | ||
#~"open.cc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(k:sources :iclasp | ||
(k:sources :libclasp | ||
#~"dummy.cc" | ||
#~"mpPackage.cc" | ||
#~"nativeVector.cc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.