Advertisement
Guest User

Untitled

a guest
Jul 27th, 2021
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1.  
  2. # Clear Linux GCC settings for CFLAGS, CXXFLAGS, etc.
  3.  
  4. (Has been working well for me, but please test on your own)
  5.  
  6. export CFFLAGS="-O3 -march=native -mtune=native -pipe -feliminate-unused-debug-types -fexceptions -fstack-protector --param=ssp-buffer-size=32 -m64 -fasynchronous-unwind-tables -ftree-loop-distribute-patterns -malign-data=abi -fno-semantic-interposition -ftree-vectorize -fno-tree-loop-vectorize"
  7.  
  8. export FFLAGS="-O3 -march=native -mtune=native -pipe -feliminate-unused-debug-types -fexceptions -fstack-protector --param=ssp-buffer-size=32 -m64 -fasynchronous-unwind-tables -ftree-loop-distribute-patterns -malign-data=abi -fno-semantic-interposition -ftree-vectorize -fno-tree-loop-vectorize"
  9.  
  10. export CXXFLAGS="-O3 -march=native -mtune=native -pipe -feliminate-unused-debug-types -fexceptions -fstack-protector --param=ssp-buffer-size=32 -m64 -fasynchronous-unwind-tables -ftree-loop-distribute-patterns -fno-semantic-interposition -ffat-lto-objects -fno-trapping-math -fvisibility-inlines-hidden -fno-tree-loop-vectorize"
  11.  
  12. export CFLAGS="-O3 -march=native -mtune=native -pipe -feliminate-unused-debug-types -fexceptions -fstack-protector --param=ssp-buffer-size=32 -m64 -fasynchronous-unwind-tables -ftree-loop-distribute-patterns -fno-semantic-interposition -ffat-lto-objects -fno-trapping-math -fno-tree-loop-vectorize"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement