Fix bounds checking on targets with no bcheck.c

This commit is contained in:
herman ten brugge 2019-12-10 08:44:44 +01:00
parent 4461f38a9e
commit 17850a51f5
2 changed files with 11 additions and 10 deletions

View File

@ -68,18 +68,18 @@ OBJ-riscv64 = $(RISCV64_O) $(DSO_O)
OBJB-i386 = $(BCHECK_O)
OBJB-x86_64 = $(BCHECK_O)
OBJB-x86_64-osx =
OBJB-x86_64-osx = dummy.o
OBJB-i386-win32 = bcheck.o
OBJB-x86_64-win32 = bcheck.o
OBJB-arm64 =
OBJB-arm =
OBJB-arm-fpa =
OBJB-arm-fpa-ld =
OBJB-arm-vfp =
OBJB-arm-eabi =
OBJB-arm-eabihf =
OBJB-arm-wince =
OBJB-riscv64 =
OBJB-arm64 = dummy.o
OBJB-arm = dummy.o
OBJB-arm-fpa = dummy.o
OBJB-arm-fpa-ld = dummy.o
OBJB-arm-vfp = dummy.o
OBJB-arm-eabi = dummy.o
OBJB-arm-eabihf = dummy.o
OBJB-arm-wince = dummy.o
OBJB-riscv64 = dummy.o
all: $(BIN) $(BINB)

1
lib/dummy.c Normal file
View File

@ -0,0 +1 @@
static char dummy;