Make error: missing separator

后端 未结 12 2289
说谎
说谎 2020-11-22 08:07

I am getting the following error running make:

Makefile:168: *** missing separator.  Stop.

What is causing this?

12条回答
  •  独厮守ぢ
    2020-11-22 08:52

    Just for grins, and in case somebody else runs into a similar error:

    I got the infamous "missing separator" error because I had invoked a rule defining a function as

    ($eval $(call function,args))
    

    rather than

    $(eval $(call function,args))
    

    i.e. ($ rather than $(.

提交回复
热议问题