ERROR:

../libtool: eval: line 950: syntax error near unexpected token `|’

You can ignore the line number, it depends on which program you are compiling. After some debugging, I find out that it looks like this was being caused by NM not being defined. Appears that it was being concatenated with a number of other commands within Libtool. When NM evaluated to nothing, this resulted in the syntax error mentioned above.

To fix execute the following command:

export NM=nm

And then execute ./configure again.

=============================

http://rogeriomoraes.com/wp/?p=37

相关文章:

  • 2021-07-20
  • 2022-01-09
  • 2021-12-24
  • 2021-07-31
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-09-27
猜你喜欢
  • 2021-08-30
  • 2021-07-09
  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案