Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] Removing $(LLVM_SRC_ROOT)/autoconf dependensies in Stacker, llvm-java [PATCH]"
2005 Feb 15
0
[LLVMdev] Removing $(LLVM_SRC_ROOT)/autoconf dependensies in Stacker, llvm-java [PATCH]
Personally, I don't think LLVM projects should need much in the way of
autoconf stuff. They certainly don't need to replicate things like
install-sh and mkinstalldirs. I'd vote for taking these out of the
projects rather than making the makefiles deal with them. I think in
most cases these are just historical artifacts that have been with the
projects since long before the new
2005 Feb 15
3
[LLVMdev] Removing $(LLVM_SRC_ROOT)/autoconf dependensies in Stacker, llvm-java [PATCH]
On Mon, 14 Feb 2005, Reid Spencer wrote:
> Personally, I don't think LLVM projects should need much in the way of
> autoconf stuff. They certainly don't need to replicate things like
> install-sh and mkinstalldirs. I'd vote for taking these out of the
> projects rather than making the makefiles deal with them. I think in
> most cases these are just historical artifacts
2005 Feb 15
0
[LLVMdev] Removing $(LLVM_SRC_ROOT)/autoconf dependensies in Stacker, llvm-java [PATCH]
On Mon, 2005-02-14 at 20:53, Chris Lattner wrote:
> On Mon, 14 Feb 2005, Reid Spencer wrote:
>
> > Personally, I don't think LLVM projects should need much in the way of
> > autoconf stuff. They certainly don't need to replicate things like
> > install-sh and mkinstalldirs. I'd vote for taking these out of the
> > projects rather than making the makefiles
2005 Feb 15
2
[LLVMdev] Removing $(LLVM_SRC_ROOT)/autoconf dependensies in Stacker, llvm-java [PATCH]
On Mon, 14 Feb 2005, Reid Spencer wrote:
> isn't necessarily tied to LLVM. Anyway, lets cross that bridge when we
> get there.
Sounds good.
-Chris
--
http://nondot.org/sabre/
http://llvm.cs.uiuc.edu/
2010 Nov 05
0
[LLVMdev] llvm autoconf using LLVM_SRC_ROOT?
On Nov 4, 2010, at 7:35 PM, Shaun savage wrote:
> I am trying to create a new LLVM project that uses autoconf to configure it.
>
> the example requires me to define
>
> • LLVM_SRC_ROOT - The root of the LLVM source tree.
> • LLVM_OBJ_ROOT - The root of the LLVM object tree
> Is this required? Why? I just want to use the libraries that were installed using Ubuntu
2010 Nov 05
2
[LLVMdev] llvm autoconf using LLVM_SRC_ROOT?
Hi
I am trying to create a new LLVM project that uses autoconf to configure it.
the example requires me to define
* LLVM_SRC_ROOT - The root of the LLVM source tree.
* LLVM_OBJ_ROOT - The root of the LLVM object tree
Is this required? Why? I just want to use the libraries that were installed using Ubuntu 10.04.
I can compile programs using llvmc
$ llvmc --version
Low Level
2005 Jun 18
0
[LLVMdev] The configure script seems to strip some / from path
On Sat, 2005-06-18 at 10:32 +0200, Henrik Bach wrote:
> Hi LLVMers,
>
> The root of my SRC_DIR is: /home/hb/projects/src/llvm-1/llvm/
> and the root of my OBJ_DIR is: /home/hb/projects/build/FC1/llvm-1-1.
>
> However, the configure script seems to have stripped some of the / from the
> paths:
> Makefile.common:63: /home/hb/projects/buildFC1llvm-1-1/Makefile.config: No
2005 Feb 03
3
[LLVMdev] question about compile path [patch adding .cc support]
> Doing it this way
> allows you to re-use the LLVM build system, as opposed to building your
> own set of Makefiles.
I have pre-LLVM projects in C++ with often used at Unix C++ source file
extention .cc
I modify LLVM build system (original LLVM Makefile.rules already partly
support .cc extention,
for example, in Sources and FakeSources make vars setup code).
Is attached patch
2005 Feb 04
0
[LLVMdev] question about compile path [patch adding .cc support]
On Thu, 3 Feb 2005, Vladimir Merzliakov wrote:
>> Doing it this way
>> allows you to re-use the LLVM build system, as opposed to building your
>> own set of Makefiles.
> I have pre-LLVM projects in C++ with often used at Unix C++ source file
> extention .cc
> I modify LLVM build system (original LLVM Makefile.rules already partly
> support .cc extention,
> for
2008 Apr 12
2
[LLVMdev] Setting up new project
On Fri, Apr 11, 2008 at 3:24 PM, John Criswell <criswell at cs.uiuc.edu> wrote:
> Lane Schwartz wrote:
>
> > [snip]
> >
> > OK then. I didn't realize that having a newer version would be a problem.
> >
> > I compiled and installed autoconf 2.59. I still get the same problem:
> >
> > $ autoconf --version
> > autoconf (GNU Autoconf)
2008 Apr 12
3
[LLVMdev] Setting up new project
Try using the --with-llvmsrc and --with-llvmobj options to explicitly set the locations of your LLVM source tree and object tree, respectively. I faintly recall seeing this error and seem to recall using these options to work around it.
-- John T.
________________________________________
From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] On Behalf Of Lane Schwartz [dowobeha at
2013 Jan 22
2
[LLVMdev] Using 'llvm-build' for out-of-tree projects
Hi LLVM-folks,
is there a way to use the llvm-build tool for out-of-tree projects?
Makefile.rules supposes llvm-build to be located in PROJ_SRC_ROOT and this
does not hold for out-of-tree projects, the same applies to
Makefile.llvmbuild that is searched for in PROJ_OBJ_ROOT. I think
PROJ_SRC_ROOT should be replaced by LLVM_SRC_ROOT and PROJ_OBJ_ROOT should
be replaced by LLVM_OBJ_ROOT, right?
2008 Apr 13
0
[LLVMdev] Setting up new project
On Sat, Apr 12, 2008 at 3:52 PM, Criswell, John T <criswell at ad.uiuc.edu> wrote:
> Try using the --with-llvmsrc and --with-llvmobj options to explicitly set the locations of your LLVM source tree and object tree, respectively. I faintly recall seeing this error and seem to recall using these options to work around it.
OK. Here are the complete steps required to successfully build the
2008 Apr 12
0
[LLVMdev] Setting up new project
On Sat, Apr 12, 2008 at 1:26 PM, Lane Schwartz <dowobeha at gmail.com> wrote:
> John,
>
> Thanks for the advice. The script you sent gives me the same problem.
> I am now able to work around the issue by making the following change
> to the AutoRegen.sh script that comes with the sample project:
>
> 16,17c16,17
> < llvm_src_root=../../..
> <
2005 Feb 07
2
[LLVMdev] Add ability for external projects use for build installed version LLVM [PATCH]
>> Also I have in Makefile.rules (but not include in patch) some
>> modification for simplify used common Makefile.rules in LLVM projects and
>> non-LLVM project (guarding some LLVM specific parts by ifdef
>> LLVM_OBJ_ROOT/LLVM_SRC_ROOT vars).
>
> I'm not sure about this, perhaps Reid would like to comment?
>
Patch attached.
This patch with header
2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
Hello,
The attached patch adds the jcheck target equivalent to make check, but
that can run with a -j flag ($ make jcheck -jX).
It does not interfere with the regular check, but rather builds on top
of the check-one target: it first generates a list of tests to run using
RunLLVMTests, and then run those tests according to the supplied -j
flag, invoking the check-one target for each one of them.
2010 Nov 05
1
[LLVMdev] llvm autoconf using LLVM_SRC_ROOT?
Hi
I am trying to create a new LLVM project that uses autoconf to configure it.
the example requires me to define
* LLVM_SRC_ROOT - The root of the LLVM source tree.
* LLVM_OBJ_ROOT - The root of the LLVM object tree
Is this required? Why? I just want to use the libraries that were installed using Ubuntu 10.04.
I can compile programs using llvmc
$ llvmc --version
Low Level
2009 Apr 17
0
[LLVMdev] mingw build problems
Another observation: GettingStarted.html still gives these
instructions for cross-compiling LLVM:
1. Configure and build LLVM as a native compiler. You will need
just TableGen from that build.
* If you have $LLVM_OBJ_ROOT=$LLVM_SRC_ROOT just execute
make -C utils/TableGen after configuring.
* Otherwise you will need to monitor building process and
terminate it just after
2003 Dec 05
0
[LLVMdev] Re: Makefile.config&setenv
yue wrote:
> hi,
> about [LLVMdev] another question
>
> thanks
>
> yueqiang
One other thing you might want to try is to put your object tree in a
directory that is *not* inside of your source tree. Currently, we don't
support using separate object trees that are subdirectories of the
source tree.
In other words:
Will work:
==========
SRC_ROOT=/home/yue/llvm
2004 Apr 01
1
[LLVMdev] Makefile.config
Hi John,
I have attached my Makefile.config.
I noticed that I did'nt have SRC_ROOT and OBJ_ROOT variables
defined as such in my environment. But I noticed that this is defined in
the Makefile.config by default to the same values.
All the same, I tried defining both these variables in my .cshrc, but I
still get the same error.
The main directory for me is /home/llvm, and I have