Displaying 6 results from an estimated 6 matches for "yourlibrary".
2005 Jan 25
2
[LLVMdev] llc -load....
hello...
I have finish my backend. But I dont know how to install my backend...
llc -load=???Load what??
Can anyone teach me?
thanx.
2005 Jan 25
0
[LLVMdev] llc -load....
...d the backend.
To dynamically load the back end, add these two lines to your target
makefile:
SHARED_LIBRARY = 1
LOADABLE_MODULE = 1
This should build a DSO for your target (which will end with .so if you're
on most unixy platforms). You can load this with:
llc --load ~/llvm/Debug/lib/yourlibrary.so -march=yourarch in.bc -o out.s
BTW, what architecture are you working with?
-Chris
--
http://nondot.org/sabre/
http://llvm.cs.uiuc.edu/
2002 Dec 13
1
Loading libraries: Nas introduced
Hi all,
I am trying to package a library in R 1.6.1 (Windoze XP).
I have read the document "Writing R extensions" and think I
have done things correctly (though apparently not). I have
searched the mail archives for help to no avail.
When I try to attach the library using, eg
> library( libname, lib.loc=path.to.library)
I get this message:
Warning message:
NAs introduced by
2005 Jan 25
2
[LLVMdev] llc -load....
...k end, add these two lines to your target
> makefile:
>
> SHARED_LIBRARY = 1
> LOADABLE_MODULE = 1
>
> This should build a DSO for your target (which will end with .so if you're
> on most unixy platforms). You can load this with:
>
> llc --load ~/llvm/Debug/lib/yourlibrary.so -march=yourarch in.bc -o out.s
>
> BTW, what architecture are you working with?
>
> -Chris
>
> --
> http://nondot.org/sabre/
> http://llvm.cs.uiuc.edu/
>
2010 Jan 27
1
adding / modifiying functions in a site-library package ????
I want to add just one more function to an already installed, locally
developed site-library package. Is there a good tutorial on this laying
about? From what I see the new function would touch several files and
directories in the existing package. Tools to automate that ?
2005 Jan 25
0
[LLVMdev] llc -load....
...r target
>> makefile:
>>
>> SHARED_LIBRARY = 1
>> LOADABLE_MODULE = 1
>>
>> This should build a DSO for your target (which will end with .so if you're
>> on most unixy platforms). You can load this with:
>>
>> llc --load ~/llvm/Debug/lib/yourlibrary.so -march=yourarch in.bc -o out.s
>>
>> BTW, what architecture are you working with?
>>
>> -Chris
>>
>> --
>> http://nondot.org/sabre/
>> http://llvm.cs.uiuc.edu/
>>
>
> _______________________________________________
> LLVM Developers...