Commit 701a99af authored by Edward Wang's avatar Edward Wang Committed by Rafaël Carré

contrib: fix the FPU detection for cross-compiles

Previously, FPU detction was done before the variables for compiling (CC, CFLAGS, etc) were set. This broke on cross-compiles, because it was trying to use the default $(CC) to do the checks.

By doing the FPU detection after setting all the variables, FPU detection for cross-compiles works spectacularly.
Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 639ee4ab
...@@ -36,16 +36,7 @@ ifneq ($(HOST),$(BUILD)) ...@@ -36,16 +36,7 @@ ifneq ($(HOST),$(BUILD))
HAVE_CROSS_COMPILE = 1 HAVE_CROSS_COMPILE = 1
endif endif
ARCH := $(shell $(SRC)/get-arch.sh $(HOST)) ARCH := $(shell $(SRC)/get-arch.sh $(HOST))
ifneq ($(findstring $(ARCH),i386 sparc sparc64 ppc ppc64 x86_64),)
# This should be consistent with include/vlc_cpu.h
HAVE_FPU = 1
else ifneq ($(findstring $(ARCH),arm),)
ifneq ($(call cppcheck, __VFP_FP__)),)
ifeq ($(call cppcheck, __SOFTFP__),)
HAVE_FPU = 1
endif
endif
endif
ifeq ($(ARCH)-$(HAVE_WIN32),x86_64-1) ifeq ($(ARCH)-$(HAVE_WIN32),x86_64-1)
HAVE_WIN64 := 1 HAVE_WIN64 := 1
endif endif
...@@ -171,6 +162,18 @@ EXTRA_LDFLAGS += -L$(PREFIX)/lib ...@@ -171,6 +162,18 @@ EXTRA_LDFLAGS += -L$(PREFIX)/lib
LDFLAGS := $(LDFLAGS) $(EXTRA_LDFLAGS) LDFLAGS := $(LDFLAGS) $(EXTRA_LDFLAGS)
# Do not export those! Use HOSTVARS. # Do not export those! Use HOSTVARS.
# Do the FPU detection, after we have figured out our compilers and flags.
ifneq ($(findstring $(ARCH),i386 sparc sparc64 ppc ppc64 x86_64),)
# This should be consistent with include/vlc_cpu.h
HAVE_FPU = 1
else ifneq ($(findstring $(ARCH),arm),)
ifneq ($(call cppcheck, __VFP_FP__)),)
ifeq ($(call cppcheck, __SOFTFP__),)
HAVE_FPU = 1
endif
endif
endif
ACLOCAL_AMFLAGS += -I$(PREFIX)/share/aclocal ACLOCAL_AMFLAGS += -I$(PREFIX)/share/aclocal
export ACLOCAL_AMFLAGS export ACLOCAL_AMFLAGS
......
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