diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-11-15 09:56:37 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-11-15 10:00:08 +0100 |
commit | acacb633e92c2c7facc11a9c18e6dda16c044e95 (patch) | |
tree | 2915c20509e8442717e0a934d0b950e93ca84c0e /Makefile.inc | |
parent | 9ae0188f77e9a00af73648f0f6f4504bd464c32d (diff) |
Partial SEH support.
* Removed linker script; .edata *and* .pdata required by MingW for SEH.
* Removed buggy `-fdata-sections` and `-ffunction-sections`.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile.inc b/Makefile.inc index c4ac08d..f0959d8 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -49,7 +49,7 @@ RC = $(LOCAL_MINGW64_RC) DDK_INCLUDE_DIR = $(dir $(CC))../x86_64-w64-mingw32/include/ddk CFLAGS := -Wall -Wextra -Wno-sign-compare -Wno-strict-aliasing \ -m64 -fPIC -fvisibility=hidden \ - -ffunction-sections -fdata-sections -fno-builtin -ffreestanding \ + -fno-builtin -ffreestanding \ -fno-stack-protector -mno-stack-arg-probe \ -I$(DPP_ROOT)/CRT -I$(DDK_INCLUDE_DIR) \ -D__INTRINSIC_DEFINED_InterlockedBitTestAndSet \ @@ -84,8 +84,7 @@ DRIVER_LDFLAGS := -shared \ -Wl,--exclude-all-symbols \ -Wl,--entry,_CRT_DriverEntry \ $(PRINT_LDSCRIPT) \ - -nostartfiles -nodefaultlibs -nostdlib \ - -T$(DPP_ROOT)/ld-script.txt + -nostartfiles -nodefaultlibs -nostdlib DRIVER_LIBS := -lntoskrnl -lhal USER_LDFLAGS := -Wl,--dynamicbase -Wl,--nxcompat -Wl,--gc-sections USER_LIBS := @@ -139,7 +138,7 @@ define BUILD_C_OBJECT $(call CHECK_REQUIRED_PATHS) $(call is_set,$(1),First argument: Source file missing) $(call is_set,$(2),Second argument: Output object file missing) - $(Q)$(CC) -std=c99 $(CFLAGS) $(CUSTOM_CFLAGS) $(CFLAGS_$(2)) -c $(1) -o $(2) + $(Q)$(CC) -std=gnu99 $(CFLAGS) $(CUSTOM_CFLAGS) $(CFLAGS_$(2)) -c $(1) -o $(2) @echo 'CC $(2)' endef |