llvm.core: fix add-llvm-library
parent
b5ca026852
commit
b7aac8c13a
|
@ -1,6 +1,6 @@
|
||||||
! Copyright (C) 2009 Matthew Willis.
|
! Copyright (C) 2009 Matthew Willis.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: alien.libraries alien.syntax system sequences combinators ;
|
USING: alien.libraries alien.syntax system sequences combinators kernel ;
|
||||||
|
|
||||||
IN: llvm.core
|
IN: llvm.core
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ IN: llvm.core
|
||||||
{
|
{
|
||||||
{ [ os macosx? ] [ "/usr/local/lib/lib" ".dylib" surround ] }
|
{ [ os macosx? ] [ "/usr/local/lib/lib" ".dylib" surround ] }
|
||||||
{ [ os windows? ] [ ".dll" append ] }
|
{ [ os windows? ] [ ".dll" append ] }
|
||||||
{ [ os unix? ] [ ".so" append ] }
|
{ [ os unix? ] [ "lib" ".so" surround ] }
|
||||||
} cond add-library ;
|
} cond "cdecl" add-library ;
|
||||||
|
|
||||||
"LLVMSystem" add-llvm-library
|
"LLVMSystem" add-llvm-library
|
||||||
"LLVMSupport" add-llvm-library
|
"LLVMSupport" add-llvm-library
|
||||||
|
|
Loading…
Reference in New Issue