Revert "host-nodejs: use g++ as linker"

This reverts commit ea737fb100785b3b5756dad320db04062261fd04, which in
the end didn't fix the autobuilder problem. Since then,
fb80d283412b610fc0f5e4baf1c5bcdf093dadc2 ('nodejs: add a patch forcing
link command to use CXX') was added, and was successfully tested.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2014-04-20 19:35:47 +02:00
parent dd5e620ac8
commit f565796fbb

View File

@ -40,17 +40,11 @@ define HOST_NODEJS_CONFIGURE_CMDS
endef endef
define HOST_NODEJS_BUILD_CMDS define HOST_NODEJS_BUILD_CMDS
$(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/usr/bin/python2 \ $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/usr/bin/python2 $(MAKE) -C $(@D)
$(MAKE) -C $(@D) \
$(HOST_CONFIGURE_OPTS) \
LD="$(HOSTCXX)"
endef endef
define HOST_NODEJS_INSTALL_CMDS define HOST_NODEJS_INSTALL_CMDS
$(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/usr/bin/python2 \ $(HOST_MAKE_ENV) PYTHON=$(HOST_DIR)/usr/bin/python2 $(MAKE) -C $(@D) install
$(MAKE) -C $(@D) install \
$(HOST_CONFIGURE_OPTS) \
LD="$(HOSTCXX)"
endef endef
ifeq ($(BR2_i386),y) ifeq ($(BR2_i386),y)