mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:01:52 +02:00
package/grub: fix build issues under 64bit FreeBSD
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23162 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2cb9374bae
commit
4387ac55a1
@ -37,10 +37,6 @@ MY_CONFIGURE_ARGS += \
|
||||
--disable-hercules \
|
||||
--without-curses \
|
||||
|
||||
ifeq ($(HOST_OS),FreeBSD)
|
||||
MY_CONFIGURE_ARGS += --build=$(GNU_HOST_NAME) --host=$(GNU_TARGET_NAME) --target=$(GNU_TARGET_NAME)
|
||||
endif
|
||||
|
||||
MY_CONFIGURE_VARS += \
|
||||
grub_cv_prog_objcopy_absolute=yes \
|
||||
|
||||
@ -53,6 +49,14 @@ ifeq ($(HOST_OS),Darwin)
|
||||
HOST_CFLAGS += $(call host-cc-option,-fnested-functions)
|
||||
endif
|
||||
|
||||
ifeq ($(HOST_OS),FreeBSD)
|
||||
ifeq ($(HOST_ARCH),amd64)
|
||||
HOST_CFLAGS += $(call host-cc-option,-m32)
|
||||
HOST_CFLAGS += $(call host-cc-option,-B/usr/lib32)
|
||||
HOST_CFLAGS += $(call host-cc-option,-L/usr/lib32)
|
||||
endif
|
||||
endif
|
||||
|
||||
HOST_CFLAGS += $(call host-cc-option,-fno-stack-protector)
|
||||
HOST_CFLAGS += $(call host-cc-option,-U_FORTIFY_SOURCE)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user