search for: libtransform

Displaying 15 results from an estimated 15 matches for "libtransform".

2012 Mar 28
3
Compiling Omega 1.2.9 on Windows 7 64-Bit
...cast-qual - Wcast-align -Wno-long-long -Wformat-security -fno-gnu-keywords -Wundef -Wstrict- null-sentinel -Wshadow -Wstrict-overflow=1 -Winit-self -Wlogical-op -Wmissing-de clarations -fvisibility=hidden -I/xapian/xapian-core-1.2.9/include -g -O2 -MT li btransform_la-transform.lo -MD -MP -MF .deps/libtransform_la-transform.Tpo -c -o libtransform_la-transform.lo `test -f 'transform.cc' || echo './'`transform.cc libtool: compile: g++ -DHAVE_CONFIG_H -I. -I./common -I/usr/local/include -Wall -W -Wredundant-decls -Wpointer-arith -Wcast-qual -Wcast-align -Wno-long-long -W format-security -fno...
2011 Jul 06
1
Compiling on Mac OS X
.../xapian-core/include -g -O2 -o omega omega.o query.o cgiparam.o utils.o configfile.o date.o cdb_init.o cdb_find.o cdb_hash.o cdb_unpack.o loadfile.o utf8convert.o datematchdecider.o weight.o str.o unixperm.o urlencode.o /Users/samuel/Documents/Programming/Internet/xapian/xapian-core/libxapian.la libtransform.la -liconv libtool: link: g++ -Wall -W -Wredundant-decls -Wpointer-arith -Wcast-qual -Wcast-align -Wno-long-long -Wformat-security -fno-gnu-keywords -Wundef -Wshadow -Wstrict-null-sentinel -Wstrict-overflow=1 -fvisibility=hidden -Werror -I/Users/samuel/Documents/Programming/Internet/xapian/xapian-...
2010 Feb 23
2
[LLVMdev] Regarding a pass in LLVM
...; opt.cpp:(.text+0x1e89): undefined reference to `llvm::createMyAnaPass()' >> >> >> Am I missing out something. > Have you modified the Makefile in tools/opt to link in the library > containing your pass? Your pass doesn't appear to be placed in > libAnalysis or libTransform, so you'll need to modify the opt Makefile > to link in whatever your library's name is. > > -- John T. > >> Please help me. >> >> thanks and regards, >> Ambika >> >> _______________________________________________ >> LLVM Developers ma...
2010 Feb 22
0
[LLVMdev] Regarding a pass in LLVM
...opt.cpp': > opt.cpp:(.text+0x1e89): undefined reference to `llvm::createMyAnaPass()' > > > Am I missing out something. > Have you modified the Makefile in tools/opt to link in the library containing your pass? Your pass doesn't appear to be placed in libAnalysis or libTransform, so you'll need to modify the opt Makefile to link in whatever your library's name is. -- John T. > Please help me. > > thanks and regards, > Ambika > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu...
2010 Feb 22
2
[LLVMdev] Regarding a pass in LLVM
Hi, I am trying to add a pass inn LLVM, and I actually want to add it in source code, not just directly into object code. For that I included the lines in my file MyAna.cpp (llvm-2.6/lib/ana/MyAna.cpp) char MyAna::ID = 0; static RegisterPass<MyAna> X("my-aa","My Analysis"); static RegisterAnalysisGroup<AliasAnalysis> Y(X); ModulePass *llvm::createMyAnaPass() {
2010 Feb 23
0
[LLVMdev] Regarding a pass in LLVM
...9): undefined reference to `llvm::createMyAnaPass()' >>> >>> >>> Am I missing out something. >> Have you modified the Makefile in tools/opt to link in the library >> containing your pass? Your pass doesn't appear to be placed in >> libAnalysis or libTransform, so you'll need to modify the opt Makefile >> to link in whatever your library's name is. >> >> -- John T. >> >>> Please help me. >>> >>> thanks and regards, >>> Ambika >>> >>> ____________________________________...
2010 Feb 23
1
[LLVMdev] Regarding a pass in LLVM
...)' >>>> >>>> >>>> Am I missing out something. >>>> >>> Have you modified the Makefile in tools/opt to link in the library >>> containing your pass? Your pass doesn't appear to be placed in >>> libAnalysis or libTransform, so you'll need to modify the opt Makefile >>> to link in whatever your library's name is. >>> >>> -- John T. >>> >>> >>>> Please help me. >>>> >>>> thanks and regards, >>>> Ambika >>&g...
2006 Mar 22
0
[LLVMdev] Circular dependencies
...Analysis/CallGraph.h" Local.cpp:#include "llvm/Analysis/ConstantFolding.h" PromoteMemoryToRegister.cpp:#include "llvm/Analysis/Dominators.h" PromoteMemoryToRegister.cpp:#include "llvm/Analysis/AliasSetTracker.h" Am I right in assuming that the goal here is to get libTransformUtils to depend on nothing in libTransforms or libAnalysis? If so, its going to take some significant code rearrangement. Perhaps a lib/Analysis/Utils is in order? Please advise. Reid. On Wed, 2006-03-22 at 08:13 -0800, Reid Spencer wrote: > Okay, the problem with this cycle is LoopSimplify....
2006 Mar 22
2
[LLVMdev] Circular dependencies
Okay, the problem with this cycle is LoopSimplify. It is using AliasAnalysis which is where that _ZN4llvm11BasicAAStubEv symbol is coming from. It seems to me that LoopSimplify.cpp is in the wrong place. This file defines the LoopSimplify FunctionPass which doesn't seem to me to be a "transform util". I thought the purpose of "Transforms/Util" was to provide utilities
2004 Feb 27
0
[LLVMdev] ObjectFiles.html
On Thu, 26 Feb 2004, Reid Spencer wrote: > One of the things that I don't understand well about LLVM is what code > is in what object files or library archives. It would be very useful if > there was a map of the dependencies between the files (e.g. if you link > X.o you need Y.a and Z.o). Trying to figure out the link lines by trial > and error is a bit frustrating. No
2013 May 24
1
[LLVMdev] Infinite loop parsing opt command line options
Hi all, I am experiencing a problem managing the command line option of a set of passes in my LLVM project. Attached you find a toy project the triggers the problem. The project is made up of two passes: "AnalysisPass" and "TransformPass". "TransformPass" requires "AnalysisPass" and they both share a common integer command line option called
2004 Feb 27
2
[LLVMdev] ObjectFiles.html
On Fri, 27 Feb 2004, Chris Lattner wrote: > > Could someone please add this file to the LLVM docs directory so I can > > submit patches against it? BTW, here's some hints for it: libtransforms.a -> contains only the level raise pass libtarget.a -> contains code generator support for describing target architectures libanalysis.a -> intraprocedural analyses libipa.a -> interprocedural analyses libinstrument.a -> instrumentation (e.g. profiling) transformations libtr...
2004 Feb 27
3
[LLVMdev] ObjectFiles.html
One of the things that I don't understand well about LLVM is what code is in what object files or library archives. It would be very useful if there was a map of the dependencies between the files (e.g. if you link X.o you need Y.a and Z.o). Trying to figure out the link lines by trial and error is a bit frustrating. To assist myself with understanding this, I've started to write a
2016 Sep 22
2
issues compiling omega
All, I'm having some issues compiling omega. Here are the particulars I'm on win7, using cygwin 4.9.2 64 bit. Here's the relevant output from make: libtool: link: g++ -fshow-column -Wall -W -Wredundant-decls -Wpointer-arith -Wca st-qual -Wcast-align -Wno-long-long -Wformat-security -fno-gnu-keywords -Wundef -Woverloaded-virtual -Wstrict-null-sentinel -Wshadow -Wstrict-overflow=1
2016 Sep 22
2
issues compiling omega
...ile.o date.o cdb_init.o cdb_find.o cdb_h ash.o cdb_unpack.o jsonescape.o loadfile.o datevalue.o common/str.o sample.o url encode.o weight.o expand.o csvescape.o -Wl,--enable-runtime-pseudo-reloc /home/ John/xapian-omega-1.4.0/../xapian-core-1.4.0/.libs/libxapian.dll.a -lrpcrt4 -lz -lws2_32 ./.libs/libtransform.a -L/lib -lpcre -L/usr/local/lib datevalue.o: In function `DateRangeLimit::operator-(int)': /home/John/xapian-omega-1.4.0/datevalue.cc:87: undefined reference to `timegm(tm *)' datevalue.o: In function `DateRangeLimit::operator+(int)': /home/John/xapian-omega-1.4.0/datevalue.cc:92: unde...