无法使用 aarch64-poky-linux-cpp 进行 C++

问题描述 投票:0回答:1

当我尝试编译一个依赖于node-gyp的JS包时,我最终得到了这个:

root@tx8p-ml81:~/.node-red# npm install \@lz129/node-red-contrib-can
npm ERR! code 1
npm ERR! path /root/.node-red/node_modules/socketcan
npm ERR! command failed
npm ERR! command sh -c node-gyp rebuild
npm ERR! make: Entering directory '/root/.node-red/node_modules/socketcan/build'
npm ERR!   CXX(target) Release/obj.target/can/native/can.o
npm ERR! make: Leaving directory '/root/.node-red/node_modules/socketcan/build'
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | linux | arm64
npm ERR! gyp info find Python using Python version 3.11.2 found at "/usr/bin/python3"
npm ERR! gyp info spawn /usr/bin/python3
npm ERR! gyp info spawn args [
npm ERR! gyp info spawn args '/root/.node-red/node_modules/node-gyp/gyp/gyp_main.py',
npm ERR! gyp info spawn args 'binding.gyp',
npm ERR! gyp info spawn args '-f',
npm ERR! gyp info spawn args 'make',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/root/.node-red/node_modules/socketcan/build/config.gypi',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/root/.node-red/node_modules/node-gyp/addon.gypi',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/root/.cache/node-gyp/18.16.1/include/node/common.gypi',
npm ERR! gyp info spawn args '-Dlibrary=shared_library',
npm ERR! gyp info spawn args '-Dvisibility=default',
npm ERR! gyp info spawn args '-Dnode_root_dir=/root/.cache/node-gyp/18.16.1',
npm ERR! gyp info spawn args '-Dnode_gyp_dir=/root/.node-red/node_modules/node-gyp',
npm ERR! gyp info spawn args '-Dnode_lib_file=/root/.cache/node-gyp/18.16.1/<(target_arch)/node.lib',
npm ERR! gyp info spawn args '-Dmodule_root_dir=/root/.node-red/node_modules/socketcan',
npm ERR! gyp info spawn args '-Dnode_engine=v8',
npm ERR! gyp info spawn args '--depth=.',
npm ERR! gyp info spawn args '--no-parallel',
npm ERR! gyp info spawn args '--generator-output',
npm ERR! gyp info spawn args 'build',
npm ERR! gyp info spawn args '-Goutput_dir=.'
npm ERR! gyp info spawn args ]
npm ERR! gyp info spawn make
npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
npm ERR! aarch64-poky-linux-cpp: fatal error: '-c' is not a valid option to the preprocessor
npm ERR! compilation terminated.
npm ERR! make: *** [can.target.mk:107: Release/obj.target/can/native/can.o] Error 1
npm ERR! gyp ERR! build error 
npm ERR! gyp ERR! stack Error: `make` failed with exit code: 2
npm ERR! gyp ERR! stack at ChildProcess.<anonymous> (/root/.node-red/node_modules/node-gyp/lib/build.js:216:23)
npm ERR! gyp ERR! System Linux 6.1.36-karo+g559356621806
npm ERR! gyp ERR! command "/usr/bin/node" "/root/.node-red/node_modules/.bin/node-gyp" "rebuild"
npm ERR! gyp ERR! cwd /root/.node-red/node_modules/socketcan
npm ERR! gyp ERR! node -v v18.16.1
npm ERR! gyp ERR! node-gyp -v v10.2.0
npm ERR! gyp ERR! not ok

当我尝试编译基本的 hello world cpp 时,它似乎转储看起来像预处理器输出的内容,而不是实际的二进制文件。
使用 -c 标志给出与前面提到的错误相同的输出。
我觉得我缺少一些东西来安装我拥有的完整 cpp 编译器:

IMAGE_INSTALL:append = "systemd apt openssh vim networkmanager sudo \
 git curl wget rfkill gnupg openssl nodejs python3 node-red \
 nodejs-npm python3-pip make cmake gcc libgcc gcc-sanitizers \
 binutils libiio linux-imx-headers g++"

但肯定缺少一些东西,我尝试添加

gcc-runtime
但随后 bitbake 说没有可构建的提供程序,但它与 gcc 位于同一文件夹中。

有人知道我错过了什么吗?

yocto
1个回答
0
投票

我必须添加 libstdc++ 看来我现在已经:

IMAGE_INSTALL:append = "systemd apt openssh vim networkmanager sudo git curl \
wget rfkill gnupg openssl nodejs python3 node-red nodejs-npm python3-pip make \
cmake gcc libgcc gcc-sanitizers binutils libiio linux-imx-headers g++ \
libstdc++ libstdc++-dev libatomic libatomic-dev g++-symlinks \
gcc-symlinks gcc-dev"
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.