Skip to content

Commit

Permalink
Fix plugin compilation for Win64 PharoVM
Browse files Browse the repository at this point in the history
The plugins where compiled without -DPharoVM=1 flags, making FilePlugin crash
This is because this flag was in COGDEFS, but COGDEFS was not used in CFLAGS
  • Loading branch information
nicolas-cellier-aka-nice committed Jun 2, 2017
1 parent 4fe4243 commit 2f8eedd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.win64x64/common/Makefile.plugin
Expand Up @@ -75,7 +75,7 @@ DEFS:= $(WINVER) -DWIN64=1 -DWIN32_FILE_SUPPORT -DNO_ISNAN \
$(NDEBUG) -DLSB_FIRST -DVM_NAME=\"$(VM)\" $(XDEFS)

CFLAGS:= -fdeclspec -msse2 -ggdb2 -m64 -mdll \
-mno-rtd -mms-bitfields $(OFLAGS) $(NOBUILTIN) $(WARNINGS)
-mno-rtd -mms-bitfields $(OFLAGS) $(NOBUILTIN) $(WARNINGS) $(COGDEFS)


#############################################################################
Expand Down

0 comments on commit 2f8eedd

Please sign in to comment.