万花筒教程找不到header`ExecutorProcessControl.h`
Kaleidoscope tutorial cannot find header `ExecutorProcessControl.h`
关注Kaleidoscope tutorial part 4, I downloaded the header file KaleidoscopeJIT.h。但是一旦我包含它,我就会收到以下错误
$ clang++ -g main.cpp kaleidoscope.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core orcjit native` -O3 -o kaleidoscope
In file included from kaleidoscope.cpp:18:
././include/KaleidoscopeJIT.h:21:10: fatal error: 'llvm/ExecutionEngine/Orc/ExecutorProcessControl.h' file not found
#include "llvm/ExecutionEngine/Orc/ExecutorProcessControl.h"
我可以在 documentation page 找到最接近它的信息,但没有关于如何成功编译它的信息。关于如何解决 header 依赖性的任何建议?
这是我的配置选项,
$ llvm-config --cxxflags --ldflags --system-libs --libs core orcjit native
-I/usr/lib/llvm-10/include -std=c++14 -fno-exceptions -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
-L/usr/lib/llvm-10/lib
-lLLVM-10
确保您拉取了正确的文件。您正在使用 llvm-10,因此您需要使用 version.
中的万花筒教程
关注Kaleidoscope tutorial part 4, I downloaded the header file KaleidoscopeJIT.h。但是一旦我包含它,我就会收到以下错误
$ clang++ -g main.cpp kaleidoscope.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core orcjit native` -O3 -o kaleidoscope
In file included from kaleidoscope.cpp:18:
././include/KaleidoscopeJIT.h:21:10: fatal error: 'llvm/ExecutionEngine/Orc/ExecutorProcessControl.h' file not found
#include "llvm/ExecutionEngine/Orc/ExecutorProcessControl.h"
我可以在 documentation page 找到最接近它的信息,但没有关于如何成功编译它的信息。关于如何解决 header 依赖性的任何建议?
这是我的配置选项,
$ llvm-config --cxxflags --ldflags --system-libs --libs core orcjit native
-I/usr/lib/llvm-10/include -std=c++14 -fno-exceptions -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
-L/usr/lib/llvm-10/lib
-lLLVM-10
确保您拉取了正确的文件。您正在使用 llvm-10,因此您需要使用 version.
中的万花筒教程