I fetched Clang 3.4 with the recipe below. I'm hitting an error while
attempting to compile:
llvm-config.cpp:45:10: fatal error: 'LibraryDependencies.inc' file not found
#include "LibraryDependencies.inc"
Sure enough, its missing:
$ find . -iname LibraryDependencies.inc
$
I've run through the recipe three or four times in the past, so I know
it used to work.
Any ideas how to proceed?
Thanks in advance.
It works for me. The file in question is generated. With the in-tree
build like the one that your script does, it is located in
./tools/llvm-config/LibraryDependencies.inc.
Dmitri
I remember similar error message some time ago (in 3.3 or even earlier), for me it was fixed after adding right version of python into PATH.
OK, thanks.
I found I had to delete, re-unpack and then reconfigure after
switching to Python 2.7. It was not enough to switch interpreters.
Perhaps configure should just fail if it encounters a non-Python2 interpreter.
Thanks for the help.
Jeff