trust me to use the wrong term.
I am aware of the TC64 normal flags
export CFLAGS="-mtune=generic -Os -pipe"
export CXXFLAGS="-mtune=generic -Os -pipe"
export LDFLAGS="-Wl,-O1"
what I should have said in subject was configure option. its a configure option that I have never seen before.
eg
./configure --prefix=/usr/local --enable-no_rtti
anyhow all I can do it test the size by rebuilding it and checking unsquashed on disk size,
I am interested because the resultant exe is huge. I have not compared .so files yet.
anyhow I shall try 4 permutations to see whats what.
export CFLAGS="-mtune=generic -Os -pipe"
export CXXFLAGS="-mtune=generic -Os -pipe
-fno-exceptions -fno-rtti"
export LDFLAGS="-Wl,-O1"
with and without that configure option.
anyhow
@Rich please mark as solved.