mconfig.Linux 434 B

12345678910111213141516
  1. # Installation path options.
  2. SBINDIR=/sbin
  3. MANDIR=/usr/share/man
  4. SYSCONTROLSOCKET=/dev/dinitctl
  5. # General build options.
  6. # Linux (GCC). Note with GCC 5.x/6.x you must use the old ABI, with GCC 7.x you must use
  7. # the new ABI. See BUILD file for more information.
  8. CXX=g++
  9. CXXOPTS=-D_GLIBCXX_USE_CXX11_ABI=1 -std=c++11 -Os -Wall -fno-rtti -fno-plt -flto
  10. LDFLAGS=-flto -Os
  11. BUILD_SHUTDOWN=yes
  12. SANITIZEOPTS=-fsanitize=address,undefined