diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-04-24 19:32:09 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-04-24 19:32:09 +0200 |
commit | aa3ff58c3c3939b1fc6b31e9db279e7bb97e7020 (patch) | |
tree | 37fd9cdf5984b57286548a5cc412d05cb44a1bde /Makefile.inc | |
parent | 059714129efd6329bc982476044c2274076268c5 (diff) |
Unified CFLAGS for EASTL and all other builds.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc index 1eef485..5d89f2c 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -18,7 +18,8 @@ CMAKE = cmake CC = $(LOCAL_MINGW64_CC) CXX = $(dir $(CC))x86_64-w64-mingw32-g++ DDK_INCLUDE_DIR = $(dir $(CC))../x86_64-w64-mingw32/include/ddk -CFLAGS := -Wall -Wextra -m64 -shared -fPIC \ +CFLAGS := -Wall -Wextra -m64 -fPIC \ + -ffunction-sections -fdata-sections \ -I$(DPP_ROOT) -I$(DDK_INCLUDE_DIR) \ -D__INTRINSIC_DEFINED_InterlockedBitTestAndSet \ -D__INTRINSIC_DEFINED_InterlockedBitTestAndReset @@ -31,7 +32,8 @@ EASTL_CXXFLAGS := -I$(DPP_ROOT)/EASTL/include -I$(DPP_ROOT)/EASTL/test/packages/ -DEA_COMPILER_MANAGED_CPP=1 \ -Wno-unknown-pragmas \ -Wno-deprecated-copy -DRIVER_LDFLAGS := -Wl,--subsystem,native \ +DRIVER_LDFLAGS := -shared \ + -Wl,--subsystem,native \ -Wl,--image-base,0x140000000 \ -Wl,--dynamicbase -Wl,--nxcompat \ -Wl,--file-alignment,0x200 \ |