Hi,
On Sun, 6 May 2018, ag wrote:
tcc -o liba-tcc.so alib.c -g -O2 -shared -fPIC -fvisibility="hidden"
TCC doesn't support the -fvisibility= option at all. By default it silently accepts all -f options, if you want a warning then do:
% tcc ... -Wunsupported ... -fvisibility=hidden tcc: warning: unsupported option '-fvisibility=hidden' Ciao, Michael. _______________________________________________ Tinycc-devel mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/tinycc-devel
