mconfig 529 B

12345678910111213141516
  1. # Linux (GCC). Note with GCC 5.x/6.x you must use the old ABI, with GCC 7.x you must use
  2. # the new ABI. See BUILD file for more information.
  3. CXX=g++
  4. CXXOPTS=-D_GLIBCXX_USE_CXX11_ABI=1 -std=gnu++11 -Os -Wall -Wno-invalid-offsetof -fno-rtti
  5. EXTRA_LIBS=
  6. BUILD_SHUTDOWN=yes
  7. # OpenBSD, tested with GCC 4.9.3 and gmake:
  8. #CXX=clang++
  9. #CXXOPTS=-std=gnu++11 -Os -Wall -fno-rtti
  10. #EXTRA_LIBS=
  11. #BUILD_SHUTDOWN=no
  12. # (shutdown command not available for OpenBSD yet).
  13. # MacOS: use Linux settings, but don't build shutdown:
  14. #BUILD_SHUTDOWN=no