Use -flto=full for the LDC release build
This commit is contained in:
parent
a619e6bba0
commit
9ff5f8062a
8
makefile
8
makefile
|
@ -27,6 +27,8 @@ VERSIONS =
|
||||||
DEBUG_VERSIONS = -version=dparse_verbose
|
DEBUG_VERSIONS = -version=dparse_verbose
|
||||||
DMD_FLAGS = -w -inline -release -O -J. -od${OBJ_DIR} -version=StdLoggerDisableWarning
|
DMD_FLAGS = -w -inline -release -O -J. -od${OBJ_DIR} -version=StdLoggerDisableWarning
|
||||||
DMD_TEST_FLAGS = -w -g -J. -version=StdLoggerDisableWarning
|
DMD_TEST_FLAGS = -w -g -J. -version=StdLoggerDisableWarning
|
||||||
|
override LDC_FLAGS += -O5 -release -oq
|
||||||
|
override GDC_FLAGS += -O3 -frelease
|
||||||
SHELL:=/bin/bash
|
SHELL:=/bin/bash
|
||||||
|
|
||||||
all: dmdbuild
|
all: dmdbuild
|
||||||
|
@ -46,11 +48,11 @@ dmdbuild: githash $(SRC)
|
||||||
|
|
||||||
gdcbuild: githash
|
gdcbuild: githash
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
${GDC} -O3 -frelease -obin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -J.
|
${GDC} ${GDC_FLAGS} -obin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -J.
|
||||||
|
|
||||||
ldcbuild: githash
|
ldcbuild: githash
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
${LDC} -O5 -release -oq -of=bin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -J.
|
${LDC} ${LDC_FLAGS} -of=bin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -J.
|
||||||
|
|
||||||
# compile the dependencies separately, s.t. their unittests don't get executed
|
# compile the dependencies separately, s.t. their unittests don't get executed
|
||||||
bin/dscanner-unittest-lib.a: ${LIB_SRC}
|
bin/dscanner-unittest-lib.a: ${LIB_SRC}
|
||||||
|
@ -95,5 +97,5 @@ release:
|
||||||
archiveName="dscanner-$$VERSION-$$OS-$$ARCH_SUFFIX.tar.gz"
|
archiveName="dscanner-$$VERSION-$$OS-$$ARCH_SUFFIX.tar.gz"
|
||||||
|
|
||||||
echo "Building $$archiveName"
|
echo "Building $$archiveName"
|
||||||
${MAKE} ldcbuild
|
${MAKE} ldcbuild LDC_FLAGS="-flto=full"
|
||||||
tar cvfz "bin/$$archiveName" -C bin dscanner
|
tar cvfz "bin/$$archiveName" -C bin dscanner
|
||||||
|
|
Loading…
Reference in New Issue