Зачем удалять каталог «core» при выполнении «./configure» в Apache Ignite? - PullRequest
0 голосов
/ 19 января 2019

Я работаю над установкой apache-ignite C ++

Я выполнил руководство по установке, но ./configure не сработало.

Я думаю, что это ошибка

root@tellus-station:/root/tmp/apache-ignite-2.7.0-src/modules/platforms/cpp# ./configure
...

checking for ANSI C header files... rm: cannot remove 'core': Is a directory
no
checking for sys/types.h... rm: cannot remove 'core': Is a directory
yes
checking for sys/stat.h... rm: cannot remove 'core': Is a directory
yes
checking for stdlib.h... rm: cannot remove 'core': Is a directory
yes
checking for string.h... rm: cannot remove 'core': Is a directory
yes
checking for memory.h... rm: cannot remove 'core': Is a directory
yes
checking for strings.h... rm: cannot remove 'core': Is a directory
yes
checking for inttypes.h... rm: cannot remove 'core': Is a directory
yes
checking for stdint.h... rm: cannot remove 'core': Is a directory
yes
checking for unistd.h... rm: cannot remove 'core': Is a directory
yes
checking for dlfcn.h... rm: cannot remove 'core': Is a directory
yes
...
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
rm: cannot remove 'core': Is a directory

Детализация захвата

1 Ответ

0 голосов
/ 20 января 2019

Эти сообщения следует игнорировать. Цепочка инструментов Autoconf пытается удалить файл core (дамп памяти процесса, сгенерированного по сигналу, например SIGSEGV), но вместо этого у нас есть каталог core/ в Apache Ignite, который вызывает путаницу инструмента.

...