Changeset - r1241:5c8d0e7c0c4d
[Not reviewed]
master
0 1 0
tron - 20 years ago 2005-01-30 23:04:41
tron@openttd.org
(svn r1745) Use -fno-inline when DEBUGing
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
Makefile
Show inline comments
 
@@ -282,13 +282,13 @@ ifeq ($(shell if test $(CC_VERSION) -ge 
 
endif
 
ifeq ($(shell if test $(CC_VERSION) -ge 34; then echo true; fi), true)
 
  CFLAGS += -Wdeclaration-after-statement -Wold-style-definition
 
endif
 

	
 
ifdef DEBUG
 
  CFLAGS += -g -D_DEBUG
 
  CFLAGS += -g -fno-inline -D_DEBUG
 
endif
 

	
 
ifdef PROFILE
 
  CFLAGS += -pg
 
  LDFLAGS += -pg
 
endif
0 comments (0 inline, 0 general)