gcc and AMD Open64 opencc both have a -s
option to "strip symbol table and relocation information". So far I haven't been able to find the same option in Clang/LLVM. Does it exist?
相关问题
- Error building gcc 4.8.3 from source: libstdc++.so
- What are the recommended GNU linker options to spe
- What is the right order of linker flags in gcc?
- How to use strip_tags with second parameter in Cod
- CMakeList file to generate LLVM bitcode file from
相关文章
- Optimization techniques for backtracking regex imp
- gcc/g++ gives me error “CreateProcess: No such fil
- Calls that precede a function's definition can
- How can I use gcc's -I command to add recursiv
- How do I know if std::map insert succeeded or fail
- How to specify gcc flags (CXXFLAGS) particularly f
- Logging Django SQL queries with DEBUG set to False
- How to generate assembly code with gcc that can be
You can use a
strip
utility from binutils.Actually, a llvm-ld has this options http://llvm.org/cmds/llvm-ld.html
opt have something too: