makefile missing separator on cygwin

半城伤御伤魂 提交于 2019-12-08 00:27:36

问题


I can't figure out why I'm getting the error

library.mak:95: *** missing separator.  Stop.

When I use make on cygwin. The code at that specific spot is

$(eval $(RULES))

$(EXAMPLES) $(TESTPROGS) $(TOOLS): $(THIS_LIB) $(DEP_LIBS)
$(TESTPROGS): $(SUBDIR)$(LIBNAME)

examples: $(EXAMPLES)

回答1:


Could you try to:

git config --global core.autocrlf false

And checkout again the repository?

I'm wondering if the \r\n isn't at fault here...



来源:https://stackoverflow.com/questions/11634318/makefile-missing-separator-on-cygwin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!