]> gitweb.factorcode.org Git - factor.git/commitdiff
llvm.ffi: fix cond.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 6 Jan 2020 03:14:22 +0000 (19:14 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 6 Jan 2020 03:14:22 +0000 (19:14 -0800)
extra/llvm/ffi/ffi.factor

index 9709dc21c6d6a554ff33860a4e30f90947a26fde..84583e7c0631511c80c749135f20ab8da3cfdae0 100644 (file)
@@ -7,7 +7,7 @@ IN: llvm.ffi
 << "llvm" {
     { [ os linux? ] [ "LLVM-3.9" find-so ] }
     { [ os macosx? ] [ "/usr/local/opt/llvm/lib/libLLVM.dylib" ] }
-    [ drop ]
+    [ drop ]
 } cond [ cdecl add-library ] when*
 >>