diff options
author | midipix <writeonce@midipix.org> | 2018-11-10 12:05:30 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-10 15:42:28 -0500 |
commit | 4cdd285f13dbd186e775973f23229b876f7b983d (patch) | |
tree | ed31fabd88adc9ed665d99cec99d46d3f0362ca8 /src | |
parent | 091cf105cdd698b30582531ff3e8cbfc44a9b3e6 (diff) | |
download | slibtool-4cdd285f13dbd186e775973f23229b876f7b983d.tar.bz2 slibtool-4cdd285f13dbd186e775973f23229b876f7b983d.tar.xz |
driver: host flavors: midipix: ldso environment variable is LD_LIBRARY_PATH.
Diffstat (limited to 'src')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 90321ed..106f9e6 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -38,7 +38,7 @@ static const struct slbt_source_version slbt_src_version = { bfmt,arp,ars,dsop,dsos,exep,exes,impp,imps,ldenv,pic} SLBT_FLAVOR_SETTINGS(host_flavor_default, "elf", "-fPIC","lib",".a", "lib",".so", "","", "", "", "LD_LIBRARY_PATH"); -SLBT_FLAVOR_SETTINGS(host_flavor_midipix, "pe", "-fPIC","lib",".a", "lib",".so", "","", "lib",".lib.a", "PATH"); +SLBT_FLAVOR_SETTINGS(host_flavor_midipix, "pe", "-fPIC","lib",".a", "lib",".so", "","", "lib",".lib.a", "LD_LIBRARY_PATH"); SLBT_FLAVOR_SETTINGS(host_flavor_mingw, "pe", 0, "lib",".a", "lib",".dll", "",".exe", "lib",".dll.a", "PATH"); SLBT_FLAVOR_SETTINGS(host_flavor_cygwin, "pe", 0, "lib",".a", "lib",".dll", "",".exe", "lib",".dll.a", "PATH"); SLBT_FLAVOR_SETTINGS(host_flavor_darwin, "macho","-fPIC","lib",".a", "lib",".dylib", "","", "", "", "DYLD_LIBRARY_PATH"); |