Skip to content

Commit

Permalink
Fix a slip in the 64-bit WIndows MSVC makefiles now that we no longer…
Browse files Browse the repository at this point in the history
… use

setjmp/longjmp to reenter the interpreter. [ci skip]
  • Loading branch information
eliotmiranda committed Apr 2, 2020
1 parent 2bf0a0d commit dfc7542
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions build.win64x64/common/Makefile.msvc.flags
Expand Up @@ -58,11 +58,9 @@ MSVCLINK:= $(TOOLPREFIX)link.exe
# DO NOT USE := FOR OFLAGS BECAUSE SOME PLUGINS REDEFINE THIS!!
# /Z7 debug info in files; /Zi debug info in PDB
OFLAGS= /Ot
EXCEPTION_C_FLAGS = /EHsc # choosing this produces spurious buffer overrun crashes in long jumps
EXCEPTION_C_FLAGS =
CFLAGS= /MD /DWIN64=1 /Z7 $(OFLAGS) \
-Dalloca=_alloca -Dhuge=my_huge \
$(EXCEPTION_C_FLAGS) $(NOBUILTIN) $(WARNINGS)
/EHsc $(NOBUILTIN) $(WARNINGS)

# Do _not_ define NDEBUG. The entire point of the msvc build is to debug with
# MSVC and defining NDEBUG installs a default catch-everything exception handler
Expand Down

0 comments on commit dfc7542

Please sign in to comment.