2016-08-19 15:49:09 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2018-06-28 23:28:02 +00:00
|
|
|
PKG_NAME:=nasm
|
|
|
|
PKG_VERSION:=2.13.03
|
2016-08-19 15:49:09 +00:00
|
|
|
|
2018-06-28 23:28:02 +00:00
|
|
|
PKG_SOURCE_URL:=https://www.nasm.us/pub/nasm/releasebuilds/$(PKG_VERSION)/
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2016-08-19 15:49:09 +00:00
|
|
|
|
2018-06-28 23:28:02 +00:00
|
|
|
PKG_HASH:=812ecfb0dcbc5bd409aaa8f61c7de94c5b8752a7b00c632883d15b2ed6452573
|
2016-08-19 15:49:09 +00:00
|
|
|
|
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/toolchain-build.mk
|
|
|
|
|
2018-06-28 23:28:02 +00:00
|
|
|
HOST_CONFIGURE_ARGS+= \
|
2016-08-19 15:49:09 +00:00
|
|
|
--target=$(REAL_GNU_TARGET_NAME) \
|
|
|
|
--with-sysroot=$(TOOLCHAIN_DIR) \
|
2018-06-28 23:28:02 +00:00
|
|
|
--enable-lto \
|
2016-08-19 15:49:09 +00:00
|
|
|
--disable-werror \
|
|
|
|
--disable-gdb \
|
|
|
|
$(SOFT_FLOAT_CONFIG_OPTION) \
|
|
|
|
|
|
|
|
define Host/Prepare
|
|
|
|
$(call Host/Prepare/Default)
|
|
|
|
ln -snf $(notdir $(HOST_BUILD_DIR)) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
|
|
|
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Configure
|
|
|
|
(cd $(HOST_BUILD_DIR); \
|
2018-06-28 23:28:02 +00:00
|
|
|
./autogen.sh \
|
2016-08-19 15:49:09 +00:00
|
|
|
);
|
2018-06-28 23:28:02 +00:00
|
|
|
$(call Host/Configure/Default)
|
2016-08-19 15:49:09 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Compile
|
|
|
|
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Install
|
|
|
|
$(MAKE) -C $(HOST_BUILD_DIR) \
|
|
|
|
prefix=$(TOOLCHAIN_DIR) \
|
|
|
|
install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Clean
|
|
|
|
rm -rf \
|
|
|
|
$(HOST_BUILD_DIR) \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|