0

我尝试编译一个在配置文件中有这些行的旧程序:

4143 if ac_fn_c_try_compile "$LINENO"; then :
4144  ac_cv_prog_hostcc_works=1  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
4145 $as_echo "yes" >&6; }
     else
      as_fn_error $? "installation or configuration problem: host compiler $HOST_CC cannot create
      executables." "$LINENO" 5
     fi

这会导致以下错误:

./configure: line 4145: syntax error near unexpected token `}'
./configure: line 4145: `$as_echo "yes" >&6; }'

我该如何解决这个错误?

4

1 回答 1

0

我发现少了一个分号:

4144  ac_cv_prog_hostcc_works=1;  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
于 2013-09-08T16:59:15.367 回答