diff options
author | Gabriel Dos Reis <gdr@axiomatics.org> | 2016-12-29 02:13:58 -0800 |
---|---|---|
committer | Gabriel Dos Reis <gdr@axiomatics.org> | 2016-12-29 02:13:58 -0800 |
commit | 2bd3cc876cc90b8e28e0e8d88a5982f69729f867 (patch) | |
tree | 89fb25441b1c7868411aeeb169bc3b34eec6a31a /configure | |
parent | a8a3b2cdf66d274c831ad6229e6123e9cd68e07d (diff) | |
download | open-axiom-2bd3cc876cc90b8e28e0e8d88a5982f69729f867.tar.gz |
Add Boot support for native load unit specification in foreign
function import.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -700,6 +700,7 @@ LIBTOOL OBJDUMP DLLTOOL AS +oa_shrlib_prefix oa_shrlib_flags oa_shrobj_flags oa_use_libtool_for_shared_lib @@ -9280,6 +9281,7 @@ func_stripname_cnf () + oa_use_libtool_for_shared_lib=no oa_shrobj_flags= oa_shrlib_flags= @@ -16755,6 +16757,8 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +# Most targets use 'lib' prefix, as in 'libOpenAxiom'. +oa_shrlib_prefix='lib' # Give me extension of libraries @@ -16764,6 +16768,8 @@ case $host in *mingw*|*cygwin*) oa_shrobj_flags='-prefer-pic' oa_shrlib_flags="-shared -Wl,--export-all-symbols" + # Windows platforms don't need a prefix + oa_shrlib_prefix= ;; *darwin*) oa_shrobj_flags='-dynamic' |