]> gitweb.factorcode.org Git - factor.git/commitdiff
Makefile fix for Windows
authorslava <slava@factorcode.org>
Sun, 12 Nov 2006 17:55:53 +0000 (17:55 +0000)
committerslava <slava@factorcode.org>
Sun, 12 Nov 2006 17:55:53 +0000 (17:55 +0000)
Makefile

index e5b0e9a361b810b8501d565325e2c4263cad08c3..36c09ac16959217627b39f809dc243ed05569ef1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,10 @@ ifdef DEBUG
        CFLAGS = -g
        STRIP = touch
 else
-       CFLAGS = -Wall -O3 -ffast-math -fomit-frame-pointer $(SITE_CFLAGS)
+       # Temporary workaround for a Windows gcc issue; later we'll find a
+       # real fix, for now just -fno-inline-functions
+       CFLAGS = -Wall -O3 -ffast-math -fomit-frame-pointer \
+               -fno-inline-functions $(SITE_CFLAGS)
        STRIP = strip
 endif