diff options
author | midipix <writeonce@midipix.org> | 2024-02-22 13:40:56 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-22 13:47:14 +0000 |
commit | 752c02b178233ce8dbee73ebf4cab8a6759c8d12 (patch) | |
tree | b92781647aafab4c92f452edf59960e2613d4c13 /src/host | |
parent | 279932401cb1e799f2e8bdae7eae47b788c3001d (diff) | |
download | slibtool-752c02b178233ce8dbee73ebf4cab8a6759c8d12.tar.bz2 slibtool-752c02b178233ce8dbee73ebf4cab8a6759c8d12.tar.xz |
link mode: implemented -export-symbols-regex (for all supported flavors).
Diffstat (limited to 'src/host')
-rw-r--r-- | src/host/slbt_host_flavor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/host/slbt_host_flavor.c b/src/host/slbt_host_flavor.c index 7b5ac13..2372f38 100644 --- a/src/host/slbt_host_flavor.c +++ b/src/host/slbt_host_flavor.c @@ -31,7 +31,7 @@ static const char * ldrpath_elf[] = { SLBT_FLAVOR_SETTINGS(host_flavor_default, \ "elf","-fPIC", \ "lib",".a","lib",".so",".so","", \ - "","","","",".ver", \ + "","","","",".expsyms.ver", \ "LD_LIBRARY_PATH"); SLBT_FLAVOR_SETTINGS(host_flavor_midipix, \ @@ -61,7 +61,7 @@ SLBT_FLAVOR_SETTINGS(host_flavor_msys, \ SLBT_FLAVOR_SETTINGS(host_flavor_darwin, \ "macho","-fPIC", \ "lib",".a","lib",".dylib","",".dylib", \ - "","","","",".exp", \ + "","","","",".expsyms.exp", \ "DYLD_LIBRARY_PATH"); |