Automatic detection of the arm architecture does not work well. http://downloads.lede-project.org/snapshots/faillogs/arm_arm1176jzf-s_vfp/packages/node/compile.txt ``` ../deps/v8/src/arm/assembler-arm.cc:176:2: error: #error "CAN_USE_ARMV7_INSTRUCTIONS should match CAN_USE_VFP3_INSTRUCTIONS" #error "CAN_USE_ARMV7_INSTRUCTIONS should match CAN_USE_VFP3_INSTRUCTIONS" ^~~~~ ``` https://github.com/openwrt/packages/issues/5728 Explicitly set cpu arch optimization flag to the compiler option so that "configure" script correctly identifies "arm version". (Raspberry Pi Zero W) Raspbian: ``` raspberrypi:~ $ echo | gcc -dM -E - | grep ARM_ARCH ``` OpenWrt (cross-env): ``` ubuntu:~ $ echo | ./arm-openwrt-linux-muslgnueabi-gcc -dM -E - | grep ARM_ARCH ``` ``` ubuntu:~ $ echo | ./arm-openwrt-linux-muslgnueabi-gcc -mcpu=arm1176jzf-s -dM -E - | grep ARM_ARCH ``` Also specifying an option lines compactly. Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
128 lines
3.7 KiB
Makefile
128 lines
3.7 KiB
Makefile
#
|
|
# Copyright (C) 2006-2017 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=node
|
|
PKG_VERSION:=v8.10.0
|
|
PKG_RELEASE:=3
|
|
PKG_SOURCE:=node-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=http://nodejs.org/dist/${PKG_VERSION}
|
|
PKG_HASH:=b72d4e71618d6bcbd039b487b51fa7543631a4ac3331d7caf69bdf55b5b2901a
|
|
|
|
HOST_BUILD_DEPENDS:=python/host
|
|
PKG_BUILD_DEPENDS:=python/host
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_USE_MIPS16:=0
|
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>, Adrian Panella <ianchi74@outlook.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/node
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Node.js
|
|
TITLE:=Node.js is a platform built on Chrome's JavaScript runtime
|
|
URL:=http://nodejs.org/
|
|
DEPENDS:=@(HAS_FPU||KERNEL_MIPS_FPU_EMULATOR) +libstdcpp +libopenssl +zlib +USE_UCLIBC:libpthread +USE_UCLIBC:librt +NODEJS_ICU:icu
|
|
endef
|
|
|
|
define Package/node/description
|
|
Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses
|
|
an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js'
|
|
package ecosystem, npm, is the largest ecosystem of open source libraries in the world.
|
|
endef
|
|
|
|
define Package/node-npm
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Node.js
|
|
TITLE:=NPM stands for Node Package Manager
|
|
URL:=http://npmjs.com/
|
|
DEPENDS:=+node
|
|
endef
|
|
|
|
define Package/node-npm/description
|
|
NPM is the package manager for NodeJS
|
|
endef
|
|
|
|
define Package/node/config
|
|
menu "Module Selection"
|
|
|
|
config NODEJS_ICU
|
|
bool "enable i18n features"
|
|
default n
|
|
|
|
endmenu
|
|
endef
|
|
|
|
NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))
|
|
|
|
MAKE_VARS+= \
|
|
DESTCPU=$(NODEJS_CPU)
|
|
|
|
CONFIGURE_VARS:= \
|
|
CC="$(TARGET_CC) $(TARGET_OPTIMIZATION)" \
|
|
CXX="$(TARGET_CXX) $(TARGET_OPTIMIZATION)" \
|
|
CC_host="$(HOSTCC)" \
|
|
CXX_host="$(HOSTCXX)"
|
|
|
|
CONFIGURE_ARGS:= \
|
|
--dest-cpu=$(NODEJS_CPU) \
|
|
--dest-os=linux \
|
|
--without-snapshot \
|
|
--shared-zlib \
|
|
--shared-openssl \
|
|
--with-intl=$(if $(CONFIG_NODEJS_ICU),system-icu,none) \
|
|
$(if $(findstring mips,$(NODEJS_CPU)), \
|
|
$(if $(CONFIG_SOFT_FLOAT),--with-mips-float-abi=soft)) \
|
|
$(if $(findstring +neon,$(CONFIG_CPU_TYPE)),--with-arm-fpu=neon) \
|
|
$(if $(findstring +vfp",$(CONFIG_CPU_TYPE)),--with-arm-fpu=vfp) \
|
|
$(if $(findstring +vfpv3",$(CONFIG_CPU_TYPE)),--with-arm-fpu=vfpv3-d16) \
|
|
$(if $(findstring +vfpv4",$(CONFIG_CPU_TYPE)),--with-arm-fpu=vfpv3) \
|
|
--prefix=/usr
|
|
|
|
HOST_CONFIGURE_VARS:=
|
|
|
|
HOST_CONFIGURE_ARGS:= \
|
|
--dest-os=linux \
|
|
--without-snapshot \
|
|
--prefix=$(STAGING_DIR_HOSTPKG)
|
|
|
|
HOST_CONFIGURE_CMD:=python ./configure
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
endef
|
|
|
|
define Package/node/install
|
|
mkdir -p $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/node $(1)/usr/bin/
|
|
endef
|
|
|
|
define Package/node-npm/install
|
|
mkdir -p $(1)/usr/bin $(1)/usr/lib/node_modules/npm/{bin,lib,node_modules}
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/{npm,npx} $(1)/usr/bin/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/npm/{package.json,LICENSE} $(1)/usr/lib/node_modules/npm
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/npm/bin/npm-cli.js $(1)/usr/lib/node_modules/npm/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/npm/bin/npx-cli.js $(1)/usr/lib/node_modules/npm/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/npm/lib/* $(1)/usr/lib/node_modules/npm/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/npm/node_modules/* $(1)/usr/lib/node_modules/npm/node_modules/
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|
|
$(eval $(call BuildPackage,node))
|
|
$(eval $(call BuildPackage,node-npm))
|