summaryrefslogtreecommitdiff
path: root/gnu/packages/llvm.scm
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' into core-updatesMarius Bakke2020-05-021-3/+8
|\
| * gnu: llvm-for-extempore: Update to 3.8.•••* gnu/packages/llvm.scm (llvm-for-extempore): Update to 3.8. [source]: Use upstream patched source. * gnu/packages/patches/llvm-for-extempore.patch: Delete due to source being already patched. * gnu/local.mk (dist_patch_DATA): Remove it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Giacomo Leidi2020-05-021-3/+8
* | Merge branch 'master' into core-updatesMarius Bakke2020-04-241-14/+40
|\|
| * gnu: llvm: Add 10.0.0.•••* gnu/packages/llvm.scm (llvm-10, clang-runtime-10, clang-10) (clang-toolchain-10, llvm-9, clang-runtime-9, clang-9) (clang-toolchain-9): New variables. (llvm, clang, clang-runtime, clang-toolchain): Redefine as aliases to the '-9' bindings. * gnu/packages/patches/clang-10.0-libc-search-path.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Ludovic Courtès2020-04-241-14/+40
* | Merge branch 'master' into core-updatesMarius Bakke2020-04-131-1/+1
|\|
| * gnu: emacs-clang-format: Fix grammar of "allows to filter" to "filters".•••* gnu/packages/llvm (emacs-clang-format): Fix grammar. Vagrant Cascadian2020-04-121-1/+1
* | llvm: Add support for the Hurd.•••* gnu/packages/llvm.scm (system->llvm-target): Use X86 for i586 (i.e., the Hurd). Jan Nieuwenhuizen2020-03-261-1/+2
* | gnu: libcxx: Hide GCC's C++ headers during the build process.•••* gnu/packages/llvm.scm (libcxx)[arguments]: New field. Marius Bakke2020-03-151-0/+17
* | gnu: clang: Switch to 'C_INCLUDE_PATH' & co.•••* gnu/packages/llvm.scm (clang-from-llvm)[native-search-paths]: Remove "CPATH", and add "C_INCLUDE_PATH" and "CPLUS_INCLUDE_PATH". Marius Bakke2020-03-151-1/+4
* | gnu: clang-runtime: Fix build with glibc 2.31.•••* gnu/packages/patches/clang-runtime-3.8-libsanitizer-mode-field.patch, gnu/packages/patches/clang-runtime-3.9-libsanitizer-mode-field.patch, gnu/packages/patches/clang-runtime-9-libsanitizer-mode-field.patch: New files. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/llvm.scm (clang-runtime, clang-runtime-8, clang-runtime-7, clang-runtime-6, clang-runtime-3.9.1, clang-runtime-3.8, clang-runtime-3.7): Add the respective patches. Marius Bakke2020-03-051-6/+13
* | gnu: clang-runtime: Adjust for CPLUS_INCLUDE_PATH changes.•••* gnu/packages/llvm.scm (clang-runtime-from-llvm)[arguments]: Add #:modules and #:phases. Marius Bakke2020-03-051-1/+22
* | Merge branch 'master' into core-updatesMarius Bakke2020-03-041-231/+268
|\|
| * gnu: clang: Move version conditionals out of the builder.•••* gnu/packages/llvm.scm (clang-from-llvm)[arguments]: Rewrite phase 'set-glibc-file-names' to use VERSION>=? from (guix utils) and splice in the relevant build code, instead of doing the comparison at build time. Marius Bakke2020-02-261-56/+51
| * gnu: clang: Fix C++ search path handling on non-x86_64.•••* gnu/packages/llvm.scm (clang-from-llvm)[arguments]: Add phase 'add-missing-triplets'. Marius Bakke2020-02-261-0/+18
| * gnu: clang-runtime-3.5: Fix build.•••* gnu/packages/llvm.scm (clang-runtime-3.5) [inputs]: Add libtirpc. [arguments]: Add phase to find rpc headers. Ricardo Wurmus2020-02-251-6/+29
| * gnu: LLVM: Promote LLVM 9 to the default 'llvm' package.•••* gnu/packages/llvm.scm (llvm-8): Rename to ... (llvm): ... this. Update to 9.0.1. [license]: Change to ASL2.0. (clang-runtime-from-llvm)[license]: Inherit from LLVM. (clang-from-llvm)[license]: Conditionally choose license based on version. (llvm-9, clang-runtime-8, clang-8, clang-toolchain-8): New public variables. (llvm-7): Inherit from LLVM-8 (for the license change). (llvm-6): Inherit from LLVM-7. (llvm-3.9.1): Inherit from LLVM-6. (llvm-3.8): Inherit from LLVM-3.9.1. (llvm-3.7): Inherit from LLVM-3.8. (llvm-3.6): Inherit from LLVM-3.7. (llvm-3.5): Inherit from LLVM-3.6. (libcxx, libclc, libomp): Update to 9.0.1. Marius Bakke2020-02-241-37/+42
| * gnu: clang: Use the correct CLANG-RUNTIME for versions 6 and 7.•••* gnu/packages/llvm.scm (clang-7): Use CLANG-RUNTIME-7. (clang-6): Use CLANG-RUNTIME-6. Marius Bakke2020-02-241-2/+2
| * gnu: Reorganize llvm.scm.•••* gnu/packages/llvm.scm (libcxx, libclc, libomp, libcxx-6): Move package definitions below the various LLVM/Clang variants. Marius Bakke2020-02-241-112/+112
| * gnu: clang@9: Update to 9.0.1.•••* gnu/packages/llvm.scm (llvm-9): Update to 9.0.1. clang-runtime-9, clang-9): Update hashes. Marius Bakke2020-02-241-4/+4
| * gnu: llvm: Add helper procedure for constructing download URLs.•••...in preparation for LLVM 9.0.1 which is no longer hosted on llvm.org. * gnu/packages/llvm.scm (llvm-download-uri): New procedure. (llvm-8, clang-runtime-from-llvm, clang-from-llvm, libcxx, libomp, llvm-9, llvm-7, llvm-6, libcxx-6, llvm-3.9.1, llvm-3.8, llvm-3.7, llvm-3.6, llvm-3.5)[source](uri): Use it. Marius Bakke2020-02-241-29/+24
| * gnu: clang@9: Fix search path handling.•••* gnu/packages/patches/clang-9.0-libc-search-path.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/llvm.scm (clang-9): Add #:patches. Marius Bakke2020-02-241-2/+3
* | gnu: llvm@3: Do not inherit 'install-opt-viewer' phase.•••This is a follow-up to commit 50b61ec22306181c419a3bd4c35b3c001c604994. * gnu/packages/llvm.scm (llvm-3.9.1)[outputs, arguments]: New fields. (llvm-3.8, llvm-3.7, llvm-3.6, llvm-3.5): Inherit from LLVM-3.9.1. Marius Bakke2020-02-031-6/+12
* | Merge remote-tracking branch 'master' into core-updates.Mathieu Othacehe2019-12-311-2/+7
|\|
| * gnu: python-llvmlite: Update to 0.30.0.•••* gnu/packages/llvm.scm (python-llvmlite): Update to 0.30.0. [arguments]: Disable tests until dynamic loading of libm.so is fixed. Brett Gilio2019-12-231-2/+7
* | gnu: llvm: split scripts to a separate output.•••This reduces the closure size by almost 80 MiB. * gnu/packages/llvm.scm (llvm-8): Add "opt-viewer" output. Julien Lepiller2019-12-141-10/+22
|/
* gnu: Add llvm-9, clang-9 and clang-toolchain-9.•••* gnu/packages/llvm.scm (llvm-9): New variable. (clang-runtime-9): New variable. (clang-9): New variable. (clang-toolchain-9): New variable. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com> David Truby2019-11-201-0/+25
* gnu: llvm: Change copyright holder.•••* gnu/packages/llvm.scm: Change David Truby to Arm Ltd as copyright holder as requested here: https://issues.guix.gnu.org/issue/32773#18. Mathieu Othacehe2019-11-191-1/+1
* gnu: Add clang-toolchain.•••In the same spirit that gcc-toolchain provides a complete gcc toolchain suitable for user profile installation, add a make-clang-toolchain function and use it to create clang-toolchain, clang-toolchain-7 and clang-toolchain-6 packages. * gnu/packages/llvm.scm (make-clang-toolchain): New method. (clang-toolchain): New public variable defined using previous method, (clang-toolchain-7): ditto, (clang-toolchain-6): ditto. Mathieu Othacehe2019-11-171-0/+57
* gnu: clang-from-llvm: Fix libstdc++ header location search.•••Make clang use libstdc++ from gcc package. In the future, the build of clang could be parametrized to build clang with libstdc++ support or with libcxx support. * gnu/packages/llvm.scm (clang-from-llvm)[arguments]: Make clang look for libstdc++ in the right location, which is gcc c++ includes directory. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com> David Truby2019-11-171-0/+8
* gnu: clang-from-llvm: Fix set-glibc-file-names phase.•••* gnu/packages/llvm.scm (clang-from-llvm)[arguments]: Turn case on major version into a cond, so that newer versions of clang have the same behaviour as version 6 and 7. Signed-off-by: Carl Dong <contact@carldong.me> Mathieu Othacehe2019-11-121-5/+7
* gnu: Add 'file-name' where appropriate.•••* gnu/packages/admin.scm (detox, neofetch), gnu/packages/algebra.scm (python-fpylll), gnu/packages/bioinformatics.scm (tbsp, genrich), gnu/packages/crypto.scm (hpenc), gnu/packages/digest.scm (xxhash), gnu/packages/emacs-xyz.scm (emacs-tiny, emacs-ergoemacs-mode, emacs-make-it-so, emacs-poet-theme, emacs-deft, emacs-scribble-mode, emacs-helm-mu, emacs-unidecode, emacs-diff-hl, emacs-helm-exwm, emacs-gif-screencast, emacs-exec-path-from-shell), gnu/packages/engineering.scm (gpx), gnu/packages/freedesktop.scm (waylandpp), gnu/packages/golang.scm (go-github-com-sirupsen-logrus, go-github-com-shirou-gopsutil), gnu/packages/guile-xyz.scm (guile-studio, guile-picture-language, jupyter-guile-kernel), gnu/packages/image-viewers.scm (qview), gnu/packages/java-maths.scm (java-jblas), gnu/packages/llvm.scm (libclc), gnu/packages/logging.scm (spdlog), gnu/packages/ocaml.scm (ocaml-cstruct, ocaml-zarith), gnu/packages/terminals.scm (libtsm), gnu/packages/tigervnc.scm (tigervnc-client), gnu/packages/xdisorg.scm (xcalib, xbanish) [source]: Add file-name. Efraim Flashner2019-11-101-0/+1
* gnu: libomp: Fix test target.•••* gnu/packages/llvm.scm (libomp)[arguments]: Change #:test-target value. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Boris A. Dekshteyn2019-09-231-1/+1
* gnu: Add libcxx-6•••* gnu/packages/llvm.scm (libcxx-6): New variable. John Soo2019-09-221-0/+17
* gnu: llvm: Add 'system->llvm-target' procedure.•••* gnu/packages/llvm.scm (system->llvm-target): New procedure. Ludovic Courtès2019-07-241-1/+24
* gnu: libomp: Download over HTTPS.•••* gnu/packages/llvm.scm (libomp)[source]: Use HTTPS. Tobias Geerinckx-Rice2019-07-081-1/+1
* gnu: libomp: Fix source hash.•••This is a follow-up to commit c5296e205b65a9b53553cf45be2ab223d5e82df5, which updated llvm. * gnu/packages/llvm.scm (libomp)[source]: Fix hash. Tobias Geerinckx-Rice2019-07-081-2/+2
* gnu: rust: use llvm@8•••* gnu/packages/llvm.scm (llvm): Rename to... (llvm-8): ...this. (llvm): New variable. * gnu/packages/rust.scm (rust)[inputs]: Use llvm-8 Ivan Petkov2019-06-281-1/+3
* gnu: python-llvmlite: Build against LLVM 7.•••This is a follow-up to commit c5296e205b65a9b53553cf45be2ab223d5e82df5. * gnu/packages/llvm.scm (llvm-7, clang-runtime-7, clang-7): New public variables. (python-llvmlite)[inputs]: Inherit from LLVM-7 instead of LLVM. Marius Bakke2019-06-281-2/+24
* gnu: Add libclc.•••* gnu/packages/llvm.scm (libclc): New variable. Ricardo Wurmus2019-06-261-0/+39
* gnu: libcxx: Update hash.•••This is a follow-up to commit c5296e205b65a9b53553cf45be2ab223d5e82df5, which updated llvm. * gnu/packages/llvm.scm (libcxx): Update hash. Ricardo Wurmus2019-06-261-1/+1
* gnu: llvm: Update to 8.0.0.•••* gnu/packages/llvm.scm (llvm): Update to 8.0.0. * gnu/packages/llvm.scm (clang-runtime): Update hash. * gnu/packages/llvm.scm (clang): Update hash. Rutger Helling2019-05-061-4/+5
* gnu: Add libomp.•••* gnu/packages/llvm.scm (libomp): New variable. Ludovic Courtès2019-04-161-0/+39
* gnu: libcxx: Correct sha256 hash.•••* gnu/packages/llvm.scm (libcxx)[source]: Fix it. Tobias Geerinckx-Rice2019-03-181-1/+1
* gnu: python-llvmlite: Update to 0.27.1.•••* gnu/packages/llvm.scm (python-llvmlite): Update to 0.27.1. [inputs]: Update patch for custom LLVM variant. Ricardo Wurmus2019-03-131-4/+4
* gnu: Add libcxx.•••* gnu/packages/llvm.scm (libcxx): New variable. Ricardo Wurmus2019-02-171-1/+24
* gnu: LLVM, Clang: Update to 7.0.1.•••* gnu/packages/patches/clang-7.0-libc-search-path.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/llvm.scm (llvm, clang-runtime, clang): Update to 7.0.1. (llvm-7.0.1): Remove variable. (clang-from-llvm)[arguments]: Adjust phase to match Clang 7. (llvm-6, clang-runtime-6, clang-6): New public variables. * gnu/packages/dlang.scm (ldc)[native-inputs]: Change LLVM and CLANG to LLVM-6.0 and CLANG-6.0. * gnu/packages/gl.scm (mesa)[inputs]: Change from LLVM to LLVM-6. Marius Bakke2019-02-151-20/+27
* gnu: LLVM: Use HTTPS URLs.•••* gnu/packages/llvm.scm (llvm, clang-runtime-from-llvm, clang-from-llvm, llvm-3.9.1, llvm-3.7, llvm-3.6, llvm-3.5)[source](uri): Use HTTPS. (emacs-clang-format)[description]: Likewise. Marius Bakke2019-02-151-8/+8
* Merge branch 'master' into stagingMarius Bakke2019-01-311-2/+3
|\
| * gnu: clang-runtime@3.5: Fix compilation on glibc 2.28.•••Reported by zimoun <zimon.toutoune@gmail.com>. * gnu/packages/llvm.scm (clang-runtime-3.5): Add "clang-3.5-libsanitizer-ustat-fix.patch". Ludovic Courtès2019-01-291-2/+3
* | Merge remote-tracking branch 'origin/master' into stagingEfraim Flashner2019-01-091-0/+29
|\|