From: Baruch Siach Date: Fri, 15 Mar 2019 09:22:04 +0000 (+0200) Subject: package/nodejs: requires gcc 4.9 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df1f0f6612bb9833a7a2338e52c378db4b44d682;p=buildroot.git package/nodejs: requires gcc 4.9 BUILDING.md lists gcc 4.9.4 or newer as build prerequisite. This is needed for full C++11 support. https://github.com/nodejs/node/commit/d13a65ad68c429884434cdcd94c52b79a6d69717 Cc: Daniel Price Reported-by: Boris-Ben Shapiro Signed-off-by: Baruch Siach Signed-off-by: Thomas Petazzoni --- diff --git a/package/nodejs/Config.in b/package/nodejs/Config.in index d2846f8d57..ed6225b08e 100644 --- a/package/nodejs/Config.in +++ b/package/nodejs/Config.in @@ -7,19 +7,19 @@ config BR2_PACKAGE_NODEJS_ARCH_SUPPORTS # libuv depends on BR2_TOOLCHAIN_HAS_SYNC_4 -comment "nodejs needs a toolchain w/ C++, dynamic library, NPTL, gcc >= 4.8, wchar" +comment "nodejs needs a toolchain w/ C++, dynamic library, NPTL, gcc >= 4.9, wchar" depends on BR2_USE_MMU depends on BR2_PACKAGE_NODEJS_ARCH_SUPPORTS depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \ - !BR2_HOST_GCC_AT_LEAST_4_8 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_USE_WCHAR + !BR2_HOST_GCC_AT_LEAST_4_9 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR config BR2_PACKAGE_NODEJS bool "nodejs" depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv depends on BR2_INSTALL_LIBSTDCPP depends on BR2_PACKAGE_NODEJS_ARCH_SUPPORTS - depends on BR2_HOST_GCC_AT_LEAST_4_8 - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 + depends on BR2_HOST_GCC_AT_LEAST_4_9 + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 depends on BR2_USE_WCHAR # uses fork() depends on BR2_USE_MMU