./configure 명령을 사용하여 구성을 시도합니다. 오류는 C++11 컴파일러가 지원되지 않는 것과 같습니다. 우리는 일부 블로그에 언급된 단계를 따르고 있습니다. 다른 구체적인 단계가 있는지 궁금합니다.
답변1
./autogen.sh
./configure
-disable-shared
CFLAGS='-fPIC'
CXXFLAGS='-fPIC'
--host=aarch64-unknown-nto-qnx7.0.0 # or x86_64-pc-nto-qnx7.0.0
CC=aarch64-unknown-nto-qnx7.0.0-gcc
CXX=aarch64-unknown-nto-qnx7.0.0-g++
--prefix='path-to-install/protobuf'
--with-protoc='path-to-local-installed/protobuf/bin/protoc'
CPPFLAGS='-D_XOPEN_SOURCE=500'
make
make install