1

Вот мой код:

    ubuntu@ubuntu:~/tpm2-tss$ ./configure --enable-unit
    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
    ./configure: line 3119: syntax error near unexpected token              `am__api_version='1.15''
    ./configure: line 3119: `am__api_version='1.15'' 

поэтому после выполнения make check я получаю (код ниже), что означает, что он не был создан, спасибо за помощь

    ubuntu@ubuntu:~/tpm2-tss$ make check
    make: *** No rule to make target 'check'.  Stop.

1 ответ1

0

Это сбой конфигурации autotools . Autotools генерирует сценарий ./configure с autoscan и на этом этапе возникла проблема. Подайте отчет об ошибке вверх по течению.

Предполагая, что они имеют один ко многим одинарные кавычки

am__api_version='1.15''

против,

am__api_version='1.15'

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .