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