Right - I made a linker version script by whacking the lua.symbols
(from nm -g) with:
$ awk '{print "\t\t" $3 ";"} lua.symbols > lua.map
and wrapped these lines with:
VERS_1.0 {
global:
....
};
And building with -rdynamic -Wl,--version-script lua.mapStill works! The executable is a bit larger ;) but not as big as -rdynamic on its own. steve d. _______________________________________________ Scite-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scite-interest
