Displaying 4 results from an estimated 4 matches for "archive_librari".
Did you mean:
archive_library
2005 May 27
0
[LLVMdev] Lightweight code loader
On Fri, 2005-05-27 at 18:10 -0400, Alexander Friedman wrote:
> On May 26, Reid Spencer wrote:
> > Alexander,
> >
> > Yes, a patch like that would be accepted. Fewer dependencies = good :)
> >
> > Some notes on doing this:
> >
> > (1) Please make sure you use the std c++ iostream libraries for doing
> > I/O. No native calls (we end up with
2008 Apr 22
2
[LLVMdev] The source code Makefile (newbie with pass registering Problem)
Hi!!
It's me again. I guess that there is a problem in the Makefile of my source code. But I don't know where. Could you please verify it?
The Makefile is written like this:
# Makefile for Genetic Algorithm Pass
CXXFLAGS = -Wall -I/iss/fpga3/nicole/galib247/
LDFLAGS= -L/iss/fpga3/nicole/galib247/ga/ -lga -Wl,-E
# Path to top level of LLVM heirarchy
LEVEL=../../../
# Name of the
2005 May 27
3
[LLVMdev] Lightweight code loader
On May 26, Reid Spencer wrote:
> Alexander,
>
> Yes, a patch like that would be accepted. Fewer dependencies = good :)
>
> Some notes on doing this:
>
> (1) Please make sure you use the std c++ iostream libraries for doing
> I/O. No native calls (we end up with portability problems). If you need
> something that must be ported, please add it to lib/System
Sure. What
2013 Jul 22
0
[LLVMdev] How to additionally compile the source files in subdirectories when using Makefile?
Hi guys,
I am writing a LLVM pass plugin, and just simply add a directory mypass into llvm/lib/Transforms. But since I don't hope this directory to contain too many source files, I add some subdirectories.
For instance, there are 2 files inside *mypass/sub: basic.h, basic.cpp. Here is the structure of the directory llvm/lib/Transforms/mypass
$tree mypass
mypass
├── Makefile
├──