скрипт "configure" для Autotools всегда немедленно использует всю мою 4 ГБ ОЗУ и зависает на компьютере - PullRequest
0 голосов
/ 03 февраля 2019

Каждый раз, когда я запускаю сценарий configure GNU-Autotools с помощью команды ./configure.Он очень быстро использует всю мою оперативную память (4 ГБ) в течение 5 секунд, а затем зависает мой компьютер.Я использую систему Linux и тестирую эту проблему с различными исходными пакетами GNU, и результат такой же.Вы можете увидеть пример выполнения configure ниже:

Я разбиваю процесс с помощью CTRL + C, когда процесс достигает «проверки для BSD- или MS-совместимого списка имен (nm) ...».

Мой config.log: http://ashavahishta.persiangig.com/document/Text/config.log

$ ./configure

checking for a BSD-compatible install... 
/usr/bin/install -c 
checking whether build environment is sane... yes 
checking for a thread-safe mkdir -p... 
/bin/mkdir -p checking for gawk... gawk 
checking whether make sets $(MAKE)... yes 
checking whether make supports nested variables... yes 
checking whether UID '1000' is supported by ustar format... yes 
checking whether GID '1000' is supported by ustar format... yes 
checking how to create a ustar tar archive... gnutar 
checking whether to enable maintainer-specific portions of Makefiles... yes 
checking whether make supports nested variables... (cached) yes 
checking for gcc... gcc checking whether the C compiler works... yes 
checking for C compiler default output file name... a.out 
checking for suffix of executables... 
checking whether we are cross compiling... no 
checking for suffix of object files... o 
checking whether we are using the GNU C compiler... yes 
checking whether gcc accepts -g... yes 
checking for gcc option to accept ISO C89... none needed 
checking whether gcc understands -c and -o together... yes 
checking for style of include used by make... GNU 
checking dependency style of gcc... gcc3 
checking whether make sets $(MAKE)... (cached) yes 
checking for special C compiler options needed for large files... no 
checking for _FILE_OFFSET_BITS value needed for large files... no 
checking for pkg-config... /usr/bin/pkg-config 
checking pkg-config is at least version 0.9.0... yes 
checking for gcc... gcc 
checking whether we are using the GNU Objective C compiler... yes 
checking whether gcc accepts -g... yes 
checking dependency style of gcc... gcc3 
checking build system type... x86_64-unknown-linux-gnu 
checking host system type... x86_64-unknown-linux-gnu 
checking how to print strings... printf 
checking for a sed that does not truncate output... /bin/sed 
checking for grep that handles long lines and -e... /bin/grep 
checking for egrep... /bin/grep -E 
checking for fgrep... /bin/grep -F 
checking for ld used by gcc... /usr/bin/ld 
checking if the linker (/usr/bin/ld) is GNU ld... yes 
checking for BSD- or MS-compatible name lister (nm)... 

В конце концов checking, память здесь завершена, и я прерываю процесс с помощью CTRL + C, чтобы спасти мой компьютер.

1 Ответ

0 голосов
/ 04 февраля 2019

Сначала я переустановил binutils, чтобы решить проблему с nm, но ничего не изменилось, затем я удалил binutils и его зависимости, и я установил его снова, и теперь все работает отлично.

Я не нашел, что произошло с nm, но я только что обнаружил, что это была проблема во время процесса настройки.

Я надеюсь, что этот ответ поможет и другим людям.

...