diff options
Diffstat (limited to 'Modules/ld_so_aix')
-rwxr-xr-x | Modules/ld_so_aix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/ld_so_aix b/Modules/ld_so_aix index b9aba4c..76afa6e 100755 --- a/Modules/ld_so_aix +++ b/Modules/ld_so_aix @@ -168,6 +168,10 @@ fi CCOPT="-Wl,-e$entry -Wl,-bE:$expfile -Wl,-bI:$impfile -Wl,-bhalt:4" CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -lm -o $objfile" +# Note: to use dynamic libraries like libtcl8.4.so and libtk8.4.so +# you may need to replace the second CCOPT line above with the following: +# CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -brtl -bnortllib -lm -o $objfile" + CCARGS="$args" # Export list generation. |