X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/1c12bde22c82d7ddaf9656785449999b2e994dd0..702e9dc04656bc50cbe7f7a31e519af1146c2013:/package/grub/Makefile?ds=sidebyside diff --git a/package/grub/Makefile b/package/grub/Makefile index f3dd17114..80b79f29e 100644 --- a/package/grub/Makefile +++ b/package/grub/Makefile @@ -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) @@ -100,7 +104,7 @@ ifeq ($(HOST_ARCH),x86_64) endif $(eval $(call Require,working-gcc-m32, \ - Please install 32 bits development files. (gcc-multilib on Debian/Ubuntu, gcc.i686 and libgcc.i686 on CentOS/Fedora/RHEL) \ + Please install 32 bit development files. (gcc-multilib on Debian/Ubuntu, gcc.i686, libgcc.i686, and glibc-devel.i686 on CentOS/Fedora/RHEL) \ )) $(eval $(call HostBuild))