gpt4 book ai didi

c++ - 在 Mac OS X 上使用 LLVM 安装和编译

转载 作者:行者123 更新时间:2023-11-30 05:29:01 45 4
gpt4 key购买 nike

我有一个项目(可行),我正尝试在我的 Mac 上编译它。它使用了多种东西,包括 LLVM,这是我唯一没有安装的东西。所以我按照这里的说明操作:http://www.isi.edu/~pedro/Teaching/CSCI565-Spring15/Projects/Project1-LLVM/LLVMInstructions-MacOSX10.9.pdf

这似乎可行,但我的 makefile 要求我安装 LLVM 3.3,而该教程适用于 LLVM 3.5。现在,在安装之前和之后,当我运行 make 时出现以下错误:

$ make
compiling cpp yacc file: expr-codegen.y
output file: expr-codegen
bison -b expr-codegen -d expr-codegen.y
/bin/mv -f expr-codegen.tab.c expr-codegen.tab.cc
flex -oexpr-codegen.lex.cc expr-codegen.lex
clang -g -c decaf-stdlib.c
clang++ -o ./expr-codegen expr-codegen.tab.cc expr-codegen.lex.cc decaf-stdlib.o `llvm-config-3.3 --cppflags --ldflags --libs core jit native` -ly -ll
/bin/sh: llvm-config-3.3: command not found
In file included from expr-codegen.y:6:
./decafdefs.h:5:10: fatal error: 'llvm/IR/DerivedTypes.h' file not found
#include "llvm/IR/DerivedTypes.h"
^
1 error generated.
In file included from expr-codegen.lex:2:
./decafdefs.h:5:10: fatal error: 'llvm/IR/DerivedTypes.h' file not found
#include "llvm/IR/DerivedTypes.h"
^
1 error generated.
make: *** [expr-codegen] Error 1

这是我的生成文件:

lexlib=l
yacclib=y
bindir=.
rm=/bin/rm -f
mv=/bin/mv -f
targets=
#cpptargets=type-inherit decaf-sym
#llvmtargets=factorial
#llvmcpp=sexpr2-codegen expr-codegen
#llvmfiles=rec_add
#llvmcpp=decaf-sym expr-codegen sexpr2-codegen
llvmcpp=expr-codegen

all: $(targets) $(cpptargets) $(llvmfiles) $(llvmcpp)

$(targets): %: %.y
@echo "compiling yacc file:" $<
@echo "output file:" $@
bison -o$@.tab.c -d $<
flex -o$@.lex.c $@.lex
clang -o $(bindir)/$@ $@.tab.c $@.lex.c -l$(yacclib) -l$(lexlib)
$(rm) $@.tab.c $@.tab.h $@.lex.c

$(cpptargets): %: %.y
@echo "compiling cpp yacc file:" $<
@echo "output file:" $@
bison -b $@ -d $<
$(mv) $@.tab.c $@.tab.cc
flex -o$@.lex.cc $@.lex
clang++ -o $(bindir)/$@ $@.tab.cc $@.lex.cc -l$(yacclib) -l$(lexlib)
$(rm) $@.tab.h $@.tab.cc $@.lex.cc

$(llvmcpp): %: %.y
@echo "compiling cpp yacc file:" $<
@echo "output file:" $@
bison -b $@ -d $<
$(mv) $@.tab.c $@.tab.cc
flex -o$@.lex.cc $@.lex
clang -g -c decaf-stdlib.c
clang++ -o $(bindir)/$@ $@.tab.cc $@.lex.cc decaf-stdlib.o `llvm-config-3.3 --cppflags --ldflags --libs core jit native` -l$(yacclib) -l$(lexlib)
$(rm) $@.tab.h $@.tab.cc $@.lex.cc

$(llvmtargets): %: %.ll
@echo "using llvm to compile file:" $<
llvm-as $<
`llvm-config-3.3 --bindir`/llc -disable-cfi $@.bc
clang $@.s ../decaf-stdlib.c -o $(bindir)/$@

$(llvmfiles): %: %.ll
@echo "using llvm to compile file:" $<
llvm-as $<
`llvm-config-3.3 --bindir`/llc -disable-cfi $@.bc
clang $@.s decaf-stdlib.c -o $(bindir)/$@

clean:
$(rm) $(targets) $(cpptargets) $(llvmtargets) $(llvmcpp) $(llvmfiles)
$(rm) *.tab.h *.tab.c *.lex.c
$(rm) *.bc *.s *.o
$(rm) -r *.dSYM

作为 LLVM 的新手,我不知道为什么我不能让编译器识别 LLVM 并使用它。任何帮助,将不胜感激。谢谢。

最佳答案

来自 llvm-config 文档:

    dzur:~/tmp> llvm-config
usage: llvm-config <OPTION>... [<COMPONENT>...]

Get various configuration information needed to compile programs which use
LLVM. Typically called from 'configure' scripts. Examples:
llvm-config --cxxflags
llvm-config --ldflags
llvm-config --libs engine bcreader scalaropts

这正是您所需要的:)

关于c++ - 在 Mac OS X 上使用 LLVM 安装和编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36580965/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com