Minor Linux fixes for Makefile.lite build method.

This commit is contained in:
Erik de Castro Lopo
2013-01-02 22:39:56 +11:00
parent 85d5c53803
commit 33fa7dc643

View File

@@ -55,6 +55,11 @@ ifeq ($(PROC),powerpc)
PROC := ppc
endif
ifeq ($(OS),Linux)
PROC := $(shell uname -m)
USE_ICONV := 0
endif
debug : BUILD = debug
valgrind : BUILD = debug
release : BUILD = release
@@ -90,6 +95,12 @@ else
CONFIG_CFLAGS += -DWORDS_BIGENDIAN=0
endif
ifeq ($(OS),Linux)
ifeq ($(PROC),x86_64)
CONFIG_CFLAGS += -fPIC
endif
endif
ifneq (0,$(USE_ICONV))
CONFIG_CFLAGS += -DHAVE_ICONV
ICONV_LIBS = -liconv