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.unixrelease
parent
02a9e1eb14
commit
c0e72118fd
|
@ -14,3 +14,4 @@ factor
|
|||
.DS_Store
|
||||
.gdb_history
|
||||
*.*.marks
|
||||
.*.swp
|
||||
|
|
2
Makefile
2
Makefile
|
@ -11,7 +11,7 @@ CFLAGS = -Wall
|
|||
ifdef DEBUG
|
||||
CFLAGS += -g
|
||||
else
|
||||
CFLAGS += -O3 -fomit-frame-pointer $(SITE_CFLAGS)
|
||||
CFLAGS += -O3 $(SITE_CFLAGS)
|
||||
endif
|
||||
|
||||
ifdef CONFIG
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
#ifndef DEBUG
|
||||
C_FLAGS += -fomit-frame-pointer
|
||||
#endif
|
||||
|
||||
EXE_SUFFIX =
|
||||
DLL_PREFIX = lib
|
||||
DLL_EXTENSION = .a
|
||||
|
|
Loading…
Reference in New Issue