similar to: [LLVMdev] Creating a dylib from llvm

Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] Creating a dylib from llvm"

2010 Jul 06
2
[LLVMdev] LLVM-C headers: create native library
Hi, Is it possible to create a .dll / .so / .dylib by only using the LLVM-C headers ? If so, I cannot find it. Filip
2010 Aug 31
4
[LLVMdev] LLVM-C tutorial
I am going to post my first chapter, just to see if it is acceptable. Any feedback is good feedback for me. Filip On 31 Aug 2010, at 17:25, Rajika Kumarasiri wrote: > Most of the documents (html) are generated using rst2html. So I think a patch to the rst file in llvm/tools/llvmc/doc should be fine. > > Rajika > > On Mon, Aug 30, 2010 at 7:59 PM, F van der Meeren
2010 Sep 01
0
[LLVMdev] LLVM-C tutorial
That was all I needed to hear :-) Because I am already at "chapter 3", which is regular expressions in C, but then made so that each regex becomes a real and true function. And doubt suddenly struck. What if my style isn't exactly what the LLVM community wants... On 01 Sep 2010, at 15:09, nessim wrote: > hey Filip, > > I'm afraid i can't give you technical
2010 Sep 01
0
[LLVMdev] LLVM-C tutorial
I think it'd be nice to have a ToC describing what you plan to cover in the "hello world" tutorial. I'll take a look at the tutorial in the week end and send feed back. Rajika On Wed, Sep 1, 2010 at 2:02 AM, F van der Meeren <llvm-dev at code2develop.com>wrote: > I am going to post my first chapter, just to see if it is acceptable. > Any feedback is good feedback
2010 Jul 07
0
[LLVMdev] LLVM-C headers: create native library
Aside from using the C API, you cannot create dynamic libraries with LLVM. For that you need a linker. LLVM generates assembly files (.s) and very soon it will generate object files natively (.o). The clang driver generally uses an installed gcc to do the assemble and link steps at the moment. Reid On Tue, Jul 6, 2010 at 7:51 AM, F van der Meeren <llvm-dev at code2develop.com> wrote:
2005 Jan 11
0
[Fwd: Re: [LLVMdev] Shared library building problems on Darwin]
Yep, it sounds like a good solution, and it works for me - thanks! -mike On Mon, 10 Jan 2005 20:40:34 -0800, Reid Spencer <reid at x10sys.com> wrote: > Michael, > > I've implemented a LOADABLE_MODULE feature in the makefiles: > > http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20050110/023147.html > > The approach taken is almost what you described
2005 Jan 11
2
[Fwd: Re: [LLVMdev] Shared library building problems on Darwin]
Michael, I've implemented a LOADABLE_MODULE feature in the makefiles: http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20050110/023147.html The approach taken is almost what you described below. However, I want to retain the distinction between a "regular" shared library and one that can be dlopened. So, if you specify SHARED_LIBRARY=1 you get a regular shared library
2010 Aug 30
2
[LLVMdev] LLVM-C tutorial
As I have stated before, I am creating a LLVM-C tutorial. Now I expect it to be in a final draft form within 2~3 weeks, but how do I have to deliver it to the community? - File format ? - Style ? - ... Thank you, Filip
2010 Sep 13
3
[LLVMdev] Emit C
I am still having some trouble finding my way in the C++ files. Could you give me a clearer direction? Filip On 13 Sep 2010, at 18:39, Charles Davis wrote: > On 9/13/10 10:32 AM, F van der Meeren wrote: >> Hello, >> >> I am trying to emit C code from the module I just created. And this from LLVM-C. >> If someone could give me a pointer on how to do this in llvm (with
2010 Aug 31
0
[LLVMdev] LLVM-C tutorial
Most of the documents (html) are generated using rst2html. So I think a patch to the rst file in llvm/tools/llvmc/doc should be fine. Rajika On Mon, Aug 30, 2010 at 7:59 PM, F van der Meeren <llvm-dev at code2develop.com > wrote: > As I have stated before, I am creating a LLVM-C tutorial. > Now I expect it to be in a final draft form within 2~3 weeks, but how do I > have to
2013 Dec 18
2
[LLVMdev] Trying to use patchpoint in MCJIT
Ok I see. Of course, at runtime, it's enough for dynamic linking or for deoptimization. However, wmkit acts both as a jit and as an aot. For the aot, it means that I can not use patchpoint and that I should have two different compilation strategy. It's not so difficult, but in this case, I can not use patchpoints to generate gc's stackmap for the aot (basically, I think that I could
2013 Dec 18
0
[LLVMdev] Trying to use patchpoint in MCJIT
patchpoint is intended to be used in VMs that do their own linking, and so you wouldn't expect the function parameter to be resolved by LLVM. Presumably, in VMKit, you could just plant a pointer constant to the function you wish to call initially? -Filip On Dec 17, 2013, at 2:42 PM, Gaƫl Thomas <gael.thomas00 at gmail.com> wrote: > Hi all, > > I'm trying to play with
2007 Apr 13
2
[LLVMdev] [llvm-commits] CVS: llvm/lib/Transforms/Hello/Makefile
And this brings back CommandLine Error: Arugment blah defined more than once! And without this, opt -load .../LLVMHello.dylib -hello does not work on Darwin because dyld is not able to find SlowerOperationInformer ;) thoughts ? - Devang On Apr 13, 2007, at 11:28 AM, Devang Patel wrote: > > > Changes in directory llvm/lib/Transforms/Hello: > > Makefile updated: 1.7 ->
2011 Jan 04
0
[LLVMdev] libLLVM-2.9svn.dylib on MaxOS is built with double lib in it: lib/lib/libLLVM-2.9svn.dylib
This started somewhere before rev.122456, resulting libLLVM-2.9svn.dylib is unusabkle since it has double 'lib' embedded in its path. otool -l /opt/local/llvm/svn-r122842/lib/libLLVM-2.9svn.dylib produces this line (among others): name /opt/local/llvm/svn-r122842/lib/lib/libLLVM-2.9svn.dylib (offset 24) The way how things are on Apple, all apps read this path during link phase, look
2010 Sep 13
0
[LLVMdev] Emit C
On Sep 13, 2010, at 10:40 AM, F van der Meeren wrote: > I am still having some trouble finding my way in the C++ files. > Could you give me a clearer direction? If you have llvm IR then you can use 'llc' to generate c code. Try $ llc <input_llvm_ir> -march=c -o /tmp/output.c This C backend is implemented in llvm/lib/Target/CBackend - Devang
2014 Sep 03
1
Library not loaded: /usr/local/lib/libquadmath.0.dylib
Hi all, I tried to load a package which includes a shared object on one of my Macs, and I got an error message below, which suggests that the file " libquadmath.0.dylib" is missing in the /usr/local/lib folder. On my other Mac however, I have no problem loading the package, and the file " libquadmath.0.dylib" is in the /usr/local/lib folder. I wonder where this
2005 May 07
1
Incorrect libxml2.2.dylib version on Tiger install
Hi all, I have just installed OSX Server 10.4 and R comes up with the incompatible libxml library message reported by Dan Kelley a few messages ago. Xcode 2 does not ship with Tiger Server. I installed the X-Windows code. I can report that the version of libxml2.2 that is installed in this case is the version 8.0.0 dylib. [6]sboker at munimula:/usr/lib % ls -l libxml2.2* -rwxr-xr-x 1
2008 Aug 25
0
[LLVMdev] libstdc++.dylib created for llvm-gcc4.2-2.3 front-end?
Hello, Bernardo > > My host OS is Ubunut 8.04. "make install" completed sucessfully, > but I do not see a file called libstdc++.dylib in the `pwd`/../ > install/lib/libstdc++.dylib area. In fact, I can't find any file > with an extension .dylib. > > Have I done something wrong or is this a known issue with a > workaround? You won't have any
2008 Aug 25
0
[LLVMdev] Equivalent setup of llvm-gcc-4.2-2.3 setup of *.dylib in README.LLVM for Ubuntu 8.04
Hi, I'm trying to setup the llvm-gcc-4.2-2.3 front end which I've built from source on Ubunutu 8.04. It has built successfuly. In the README.LLVM file, it says that the following must be done after the "make install" step: $ make install $ ln -sf /usr/lib/libstdc++.6.dylib `pwd`/../install/lib $ ln -sf /usr/lib/libstdc++.6.dylib `pwd`/../install/lib/libstdc++.dylib *.dylib
2010 Aug 17
1
Compiling static libFLAC.a still requires libogg.dylib
On Tue, Aug 17, 2010 at 3:12 PM, Paul Davis <paul at linuxaudiosystems.com> wrote: > On Mon, Aug 16, 2010 at 11:09 PM, Glenn McCord <glenn.mccord at gmail.com> wrote: > >> libtool: link: gcc -I/Users/glennm/libOGG-i386/include -O3 >> -funroll-loops -finline-functions -Wall -W -Winline -arch i386 -arch >> i386 -o flac analyze.o decode.o encode.o