Commit 33c69bab authored by Lionel Gauthier's avatar Lionel Gauthier

For x64.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4923 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 219ad7d7
......@@ -6,7 +6,13 @@ AR = /usr/bin/ar
CD = cd
MAKE = make
CFLAGS = $(INCLUDES) $(DEFINES) -g -pthread
# machine hardware name
HARDWARE_NAME = $(shell uname -m)
ifeq ($(HARDWARE_NAME), x86_64)
CFLAGS = $(INCLUDES) $(DEFINES) -fPIC -g -pthread
else
CFLAGS = $(INCLUDES) $(DEFINES) -g -pthread
endif
DEFINES = -DLINUX -D_REENTRANT -Wall -O -std=gnu99
SVN_REV = $(shell svnversion -n .)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment