¡@

Home 

c++ Programming Glossary: ffunction

May compiler optimizations be inhibited by multi-threading?

http://stackoverflow.com/questions/16807766/may-compiler-optimizations-be-inhibited-by-multi-threading

cfi asm fearly inlining feliminate unused debug types ffunction cse fgcse lm fident finline functions called once fira share.. cfi asm fearly inlining feliminate unused debug types ffunction cse fgcse lm fident finline functions called once fira share..

Using GCC to find unreachable functions (“dead code”)

http://stackoverflow.com/questions/4195494/using-gcc-to-find-unreachable-functions-dead-code

probably want GCC to put each function in its own section ffunction sections . By default GCC will put all functions in the same..

C/C++ gcc & ld - remove unused symbols

http://stackoverflow.com/questions/6687630/c-c-gcc-ld-remove-unused-symbols

version I use doesn't have the dead strip option and the ffunction sections... gc sections for ld doesn't give any significant.. by using the following two compiler flags fdata sections ffunction sections Link the translation units together using the linker.. with the following command to gcc g gcc Os fdata sections ffunction sections test.cpp o test.o Wl gc sections Note that Os is an..

How to hide the exported symbols name within a shared library

http://stackoverflow.com/questions/9648655/how-to-hide-the-exported-symbols-name-within-a-shared-library

in your public API as well. If you add fdata sections ffunction sections to your object builds when you link with Wl gc sections..