Skip to content

Commit

Permalink
Fix invalid argument warnings on clang.
Browse files Browse the repository at this point in the history
  • Loading branch information
SadieCat committed Dec 7, 2012
1 parent 391ec2c commit c468e9b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion make/template/main.mk
Expand Up @@ -87,7 +87,10 @@ INSTMODE_LIB = 0644

DBGOK=0
@IFEQ $(D) 0
CXXFLAGS += -O2 -g1
CXXFLAGS += -O2
@IFEQ $(CC) gcc
CXXFLAGS += -g1
@ENDIF
HEADER = std-header
DBGOK=1
@ENDIF
Expand Down

0 comments on commit c468e9b

Please sign in to comment.