search for: dont_build_relink

Displaying 14 results from an estimated 14 matches for "dont_build_relink".

Did you mean: dont_build_relinked
2008 Apr 22
2
[LLVMdev] The source code Makefile (newbie with pass registering Problem)
...ADABLE_MODULE = 1 # USEDLIBS=ga.a # Tell the build system which LLVM libraries your pass needs. You'll probably # need at least LLVMSystem.a, LLVMSupport.a, LLVMCore.a but possibly several # others too. # LLVMLIBS = LLVMCore.a LLVMSupport.a LLVMSystem.a SHARED_LIBRARY = 1 # ARCHIVE_LIBRARY = 1 DONT_BUILD_RELINKED = 1 # KEEP_SYMBOLS = 1 # LINK_LIBS_IN_SHARED = 1 # Include the makefile implementation stuff include $(LEVEL)/Makefile.common Thanks for your help!! I'm waiting for your answer. cheers, Nicole _______________________________________________________________________ EINE FÜR ALLE: die ko...
2009 Jan 19
0
[LLVMdev] ocaml build system
...into "-cclib x -cclib y - cclib z", which instructs ocaml to pass "x y z" down to the linker when creating an executable. The UsedComponents variable originates in this case from bindings/ocaml/executionengine/Makefile: LEVEL := ../../.. LIBRARYNAME := llvm_executionengine DONT_BUILD_RELINKED := 1 UsedComponents := executionengine jit interpreter native UsedOcamlInterfaces := llvm llvm_target include ../Makefile.ocaml I don't see anything obviously wrong here; it seems that llvm-config - ldflags executionengine jit interpreter native should be invoked, which should give you t...
2005 Jan 14
6
[LLVMdev] Proposed Makefile Changes
...here should be no "default" directives because it prevents the use of a directive in the user's Makefile to document what will be built. Currently, the only such case is that we build a "relinked" object file by default for each library unless DONT_BUILD_RELINKED is specified. While this is common for LLVM, it isn't for projects which will want an archive or shared library. If a relinked library is needed, something link RELINKED_LIBRARY=1 should be specified so that it documents in the makefile what is getting built....
2009 Jan 19
2
[LLVMdev] ocaml build system
I have an issue with the OCaml build system and the ExecutionEngine. PR2128 has a patch to change the Interpreter to use libffi. This breaks test/Bindings/Ocaml/executionengine.ml because OCaml doesn't try to link with libffi, even though llvm-config knows that we should: $ Debug/bin/llvm-config --ldflags interpreter -L/home/nicholas/llvm-commit/Debug/lib -lpthread -lffi -ldl -lm
2005 Jan 16
0
[LLVMdev] Proposed Makefile Changes
...uot;default" directives because it prevents the > use of a directive in the user's Makefile to document what will > be built. Currently, the only such case is that we build a > "relinked" object file by default for each library unless > DONT_BUILD_RELINKED is specified. While this is common for LLVM, > it isn't for projects which will want an archive or shared > library. If a relinked library is needed, something link > RELINKED_LIBRARY=1 should be specified so that it documents in > the makefile what...
2005 Jan 16
0
[LLVMdev] Proposed Makefile Changes
...uot;default" directives because it prevents the > use of a directive in the user's Makefile to document what will > be built. Currently, the only such case is that we build a > "relinked" object file by default for each library unless > DONT_BUILD_RELINKED is specified. While this is common for LLVM, > it isn't for projects which will want an archive or shared > library. If a relinked library is needed, something link > RELINKED_LIBRARY=1 should be specified so that it documents in > the makefile what...
2005 Jan 16
1
[LLVMdev] Proposed Makefile Changes
...rectives because it prevents the > > use of a directive in the user's Makefile to document what will > > be built. Currently, the only such case is that we build a > > "relinked" object file by default for each library unless > > DONT_BUILD_RELINKED is specified. While this is common for LLVM, > > it isn't for projects which will want an archive or shared > > library. If a relinked library is needed, something link > > RELINKED_LIBRARY=1 should be specified so that it documents in > >...
2006 Sep 02
2
[LLVMdev] Adding register allocator to LLVM
On 9/2/06, Chris Lattner <sabre at nondot.org> wrote: > > Make sure to add it to Codegen/LinkAllCodegenComponents.h. I'm sure I did. I did so from the first time and I also needed to add my library .a file to the USEDLIBS variable within llc makefile to build llc. I wonder how lli links with all the rest LLVM as it seems to include no lib within its makefile. May be I need to
2006 Sep 02
0
[LLVMdev] Adding register allocator to LLVM
On Sat, 2 Sep 2006, Anton Vayvod wrote: > I'm sure I did. I did so from the first time and I also needed to add my > library .a file to the USEDLIBS variable within llc makefile to build llc. > I wonder how lli links with all the rest LLVM as it seems to include no lib > within its makefile. May be I need to include/link my lib somewhere else? Ah, that's probably it. Try
2004 Apr 30
0
[LLVMdev] LLVM benchmarks against GCC
...===================== RCS file: /home/vadve/shared/PublicCVS/llvm/runtime/libpng/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Makefile 20 Feb 2004 21:26:46 -0000 1.2 +++ Makefile 26 Mar 2004 17:04:53 -0000 1.3 @@ -11,6 +11,7 @@ BUILD_ARCHIVE=1 DONT_BUILD_RELINKED=1 LIBRARYNAME=png +CPPFLAGS += -I../zlib Source = png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \ pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \ This is fixed in CVS. You might consider upgrading to LLVM CVS, especially if you are interested in looking at per...
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
...> -# > -#--------------------------------------------------------- > -# Handle the LIBRARYNAME option - used when building libs... > -#--------------------------------------------------------- > -# > -# When libraries are built, they are allowed to optionally define the > -# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file > -# from being built for the library. This .o files may then be linked to by a > -# tool if the tool does not need (or want) the semantics a .a file provides > -# (linking in only object files that are "needed"). If a...
2004 Apr 30
2
[LLVMdev] LLVM benchmarks against GCC
> > yesterday I got new SuSE 9.1 DVD, so i am going to enter this > > river again. Perhaps, this time all will be fine. > > Sounds great, please let me know how it goes. SuSE 9.1 is running OK. after 30 minute of compilation i get first errors: ********************* make[2]: Leaving directory `/pool/tmp/llvm/runtime/libtrace' make[2]: Entering directory
2005 Jan 14
0
[LLVMdev] Proposed Makefile Changes
...o "default" directives because it prevents the > use of a directive in the user's Makefile to document what will > be built. Currently, the only such case is that we build a > "relinked" object file by default for each library unless > DONT_BUILD_RELINKED is specified. While this is common for LLVM, > it isn't for projects which will want an archive or shared > library. If a relinked library is needed, something link > RELINKED_LIBRARY=1 should be specified so that it documents in > the makefile what is...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid, I think it is the first time it is run that the errors occcur !? Not sure but that would seem logical. Aaron