配置文件出错

时间:2013-09-08 14:57:35

标签: c linux compiler-errors configure

我尝试编译一个在配置文件中包含以下行的旧程序:

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; }'

如何解决此错误?

1 个答案:

答案 0 :(得分:0)

我发现有一个分号丢失:

4144  ac_cv_prog_hostcc_works=1;  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5