Add vim swap files to .gitignore (foo/bar/.baz.factor.swp)

Remove -fomit-frame-pointer from Windows optimized compiles because it causes incorrect code
Add -fomit-frame-pointer to Config.unix
release
U-C4\Administrator 2007-10-04 11:53:12 -05:00
parent 02a9e1eb14
commit c0e72118fd
3 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -14,3 +14,4 @@ factor
.DS_Store .DS_Store
.gdb_history .gdb_history
*.*.marks *.*.marks
.*.swp

View File

@ -11,7 +11,7 @@ CFLAGS = -Wall
ifdef DEBUG ifdef DEBUG
CFLAGS += -g CFLAGS += -g
else else
CFLAGS += -O3 -fomit-frame-pointer $(SITE_CFLAGS) CFLAGS += -O3 $(SITE_CFLAGS)
endif endif
ifdef CONFIG ifdef CONFIG

View File

@ -1,3 +1,7 @@
#ifndef DEBUG
C_FLAGS += -fomit-frame-pointer
#endif
EXE_SUFFIX = EXE_SUFFIX =
DLL_PREFIX = lib DLL_PREFIX = lib
DLL_EXTENSION = .a DLL_EXTENSION = .a