From 556aa310505276c11dee54822e0f8eb1017e69de Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sat, 9 Dec 2023 18:41:18 +0200 Subject: gnu: llvm-14: Fix building on powerpc-linux. * gnu/packages/llvm.scm (llvm-14)[arguments]: When building for powerpc-linux adjust the configure-flags to always link shared libraries with -latomic. Change-Id: If020528bf1717595b66e6e0826dbe7a0c1128322 --- gnu/packages/llvm.scm | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index 08536fc865..a84b8c0030 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -706,6 +706,10 @@ of programming tools as well as libraries with equivalent functionality.") #$(string-append "-DLLVM_TARGETS_TO_BUILD=" (system->llvm-target))) '()) + ;; undefined reference to `__atomic_fetch_add_8' in lib/libLLVMOrcJIT.so.14 + #$@(if (target-ppc32?) + (list "-DCMAKE_SHARED_LINKER_FLAGS=-latomic") + `()) "-DCMAKE_SKIP_BUILD_RPATH=FALSE" "-DCMAKE_BUILD_WITH_INSTALL_RPATH=FALSE" "-DBUILD_SHARED_LIBS:BOOL=TRUE" -- cgit v1.2.3 17ac2dc6207308d3bf117'>refslogtreecommitdiff
path: root/tests/read-print.scm
AgeCommit message (Expand)Author
2023-05-05read-print: Correctly read "(. x)"....Ludovic Courtès
2023-04-24read-print: 'pretty-print-with-comments' keeps newlines on long strings....Ludovic Courtès
2023-03-16read-print: 'read-with-comments' reads comments within gexps....Ludovic Courtès
2023-03-07read-print: Correctly handle comments that follow a list head....Ludovic Courtès
2023-01-09read-print: Do not use extended notation when printing '1+', '1-', etc....Ludovic Courtès
2022-09-20read-print: Correctly support multiple same-named newline forms....Ludovic Courtès
2022-09-02read-print: Define forms for which \n, \t, etc. are not escaped....Ludovic Courtès
2022-09-01read-print: Guess the base to use for integers being printed....Ludovic Courtès
2022-08-10read-print: Report missing closing parens instead of looping....Ludovic Courtès
2022-08-08read-print: Add 'case' and 'cond' special forms....Ludovic Courtès
2022-08-08read-print: Support printing multi-line comments....Ludovic Courtès
2022-08-08read-print: 'canonicalize-comment' leaves top-level comments unchanged....Ludovic Courtès
2022-08-08read-print: Add code to read and write sequences of expressions/blanks....Ludovic Courtès
2022-08-08read-print: Recognize page breaks....Ludovic Courtès
2022-08-08read-print: Read and render vertical space....Ludovic Courtès
2022-08-08style: Move reader and printer to (guix read-print)....Ludovic Courtès