Skip to content

Commit

Permalink
fixing #611
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Mar 19, 2012
1 parent 8574723 commit ec8f367
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ USEGCC = 1
USECLANG = 0

ifeq ($(USEGCC),1)
CC = gcc -std=gnu99
CC = gcc
CXX = g++
CFLAGS = -pipe -fPIC -fno-strict-aliasing
CFLAGS = -std=gnu99 -pipe -fPIC -fno-strict-aliasing
CXXFLAGS = -pipe -fPIC -fno-rtti
DEBUGFLAGS = -ggdb3 -DDEBUG
SHIPFLAGS = -O3 -DNDEBUG -falign-functions -momit-leaf-frame-pointer
endif

ifeq ($(USECLANG),1)
CC = clang -std=gnu99
CC = clang
CXX = clang++
CFLAGS = -pipe -fPIC -fno-strict-aliasing
CFLAGS = -std=gnu99 -pipe -fPIC -fno-strict-aliasing
CXXFLAGS = -pipe -fPIC -fno-rtti
DEBUGFLAGS = -g -DDEBUG
SHIPFLAGS = -O3 -DNDEBUG
Expand Down

0 comments on commit ec8f367

Please sign in to comment.