Я пытаюсь выполнить кросс-компиляцию и сборку пакета debian
build - x86_64-linux-gnu (ubuntu - 18.04)
host - i686-unknown-linux-gnu (debian -8, with gcc version 4.1.2 )
Поместил мой SDK в /opt/xtools
. Сбой debuild при выполнении override_dh_auto_configure
sudo debuild --prepend-path=/opt/urtool-3.0/bin -eLDFLAGS="-W"
Вот так выглядит файл config.log
configure:3801: checking whether the C compiler works
configure:3823: i686-unknown-linux-gnu-gcc -g -O2 -fdebug-prefix-map=/home/ach/Downloads/gperftools/gperftools-2.6.90=. -fstack-protector-strong -Wformat -Werror=format-security -Wformat=1,-Wno-format-extra-args -Wdate-time -D_FORTIFY_SOURCE=2 -W conftest.c >&5
cc1: error: unrecognized command line option "-Werror=format-security"
cc1: error: unrecognized command line option "-Wdate-time"
cc1: error: unrecognized command line option "-fdebug-prefix-map=/home/ach/Downloads/gperftools/gperftools-2.6.90=."
cc1: error: unrecognized command line option "-fstack-protector-strong"
configure:3827: $? = 1
configure:3865: result: no
configure: failed program was:
Сбой из-за нераспознанных параметров командной строки для g cc (будучи g cc -4.1.2 очень старый). Как удалить / игнорировать эти нераспознанные параметры командной строки при выполнении debuild?
Спасибо