Skip to content

Commit

Permalink
Configs: CFLAGS isn't used by the GNUMakefile, change it to SITE_CFLAGS.
Browse files Browse the repository at this point in the history
  • Loading branch information
erg committed Mar 23, 2013
1 parent f9ea61b commit 6d19db3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion vm/Config.macosx
@@ -1,5 +1,5 @@
include vm/Config.unix
CFLAGS += -fPIC
SITE_CFLAGS +=

PLAF_DLL_OBJS += vm/os-macosx.o vm/mach_signal.o vm/mvm-unix.o
PLAF_MASTER_HEADERS += vm/os-macosx.hpp vm/mach_signal.hpp
Expand Down
2 changes: 1 addition & 1 deletion vm/Config.macosx.x86.fat
@@ -1,3 +1,3 @@
include vm/Config.macosx
include vm/Config.x86.fat
CFLAGS += -arch i386 -arch x86_64
SITE_CFLAGS += -arch i386 -arch x86_64
3 changes: 1 addition & 2 deletions vm/Config.unix
@@ -1,5 +1,5 @@
ifndef DEBUG
CFLAGS += -fomit-frame-pointer
SITE_CFLAGS += -fomit-frame-pointer
endif

EXE_SUFFIX =
Expand All @@ -18,7 +18,6 @@ else
X11_UI_LIBS = `pkg-config --libs gtk+-2.0 gtkglext-1.0`
endif

# CFLAGS += -fPIC
FFI_TEST_CFLAGS = -fPIC

# LINKER = gcc -shared -o
Expand Down
2 changes: 1 addition & 1 deletion vm/Config.windows
@@ -1,4 +1,4 @@
CFLAGS += -mno-cygwin -mwindows
SITE_CFLAGS += -mno-cygwin -mwindows
CFLAGS_CONSOLE += -mconsole
SHARED_FLAG = -shared
SHARED_DLL_EXTENSION=.dll
Expand Down

0 comments on commit 6d19db3

Please sign in to comment.