Displaying 2 results from an estimated 2 matches for "statbb".
Did you mean:
statba
2005 Feb 03
2
[LLVMdev] question about compile path
...nstalls llvm1.4 under /opt/llvm as root. However, when I create a project under my home directory, I cannot do Make correctly. It should be enviroment issue, but I cannot fix it.
The environment is as the following,
/opt/llvm : // llvm 1. 4
/home/qiuyu/ ://my home directory
/home/qiuyu/project/statBB ://my project directory
I create a simple pass to test it. The content of Makefile is
LEVEL = /opt/llvm
LIBRARYNAME = StatBB
SHARED_LIBRARY = 1
include $(LEVEL)/Makefile.common
Once I do make, I got a error like
"
/bin/sh: line 1: cd: /home/qiuyu/project/statBB//opt/llvm/: No such file or...
2005 Feb 03
0
[LLVMdev] question about compile path
...in
llvm/projects (such as llvm/projects/sample) and use its Makefiles and
configure script as a template for your project. Doing it this way
allows you to re-use the LLVM build system, as opposed to building your
own set of Makefiles.
So, in the top directory of your project (/home/qiuyu/project/statBB),
you should have a configure script, a Makefile.common.in, and a
Makefile. You should create subdirectories for your source code and
list those subdirectories in the DIR variable in the Makefile.
To use a project, you will need to know the location of the LLVM source
tree (the directory where yo...