similar to: [LLVMdev] C API: Why do some functions require a string length arg

Displaying 20 results from an estimated 20000 matches similar to: "[LLVMdev] C API: Why do some functions require a string length arg"

2011 May 29
1
[LLVMdev] LLVMInitializeNativeTarget error
Hello All, I'm building an F# binding for LLVM and it seems to be working for the parts of Core and BitWriter that I've tested but I've hit problems with Target/ExecutionEngine. The following test code works with the initializeNativeTarget line commented out like so: <https://github.com/keithshep/llvm-fs/blob/b7050b841108dc703e58563a4cff8845603c950d/test/simpletest2.fs> ...
2012 Sep 01
2
[LLVMdev] building LLVM for raspberry pi
Hi All, I tried build a version of LLVM pulled from the git repo on my raspberry pi. I got close to the finish line then: llvm[2]: Building Debug+Asserts Archive Library libLLVMDebugInfo.a make[2]: Leaving directory `/home/pi/llvm-git/lib/DebugInfo' make[1]: Leaving directory `/home/pi/llvm-git/lib' make[1]: Entering directory `/home/pi/llvm-git/tools/llvm-shlib' llvm[1]: Linking
2012 Sep 01
0
[LLVMdev] building LLVM for raspberry pi
On 01.09.2012, at 15:02, Keith Sheppard <keithshep at gmail.com> wrote: > Hi All, > > I tried build a version of LLVM pulled from the git repo on my > raspberry pi. I got close to the finish line then: > > llvm[2]: Building Debug+Asserts Archive Library libLLVMDebugInfo.a > make[2]: Leaving directory `/home/pi/llvm-git/lib/DebugInfo' > make[1]: Leaving
2012 Oct 18
2
[LLVMdev] [cfe-dev] Announcement: Phabricator for code reviews
This looks great! One hitch though: it looks like I can monitor files by name but what I really want to watch is a whole directory "/llvm/trunk/include/llvm-c". I didn't see any way to do that. Do you have any idea if that is possible? I can add a rule for each file which is probably OK but then I'll miss any new files. Best, Keith On Wed, Oct 17, 2012 at 2:25 PM, Sean Silva
2012 Feb 27
2
[LLVMdev] Where is LLVM-3.0.dll
I'm trying to use LLVM on Windows for the first time. Keith Sheppard has published some F# bindings: https://github.com/keithshep/llvm-fs They require an LLVM-3.0.dll file. I'm not familiar with Windows but I think I've managed to build LLVM 3.0 using both VS2010 and Cygwin but neither build seems to have produced said file. The VS2010 build (made using CMake) seems to have made
2012 Oct 18
1
[LLVMdev] [cfe-dev] Announcement: Phabricator for code reviews
Yes, that was my (maybe wrong) assumption. -Keith On Thu, Oct 18, 2012 at 9:33 AM, Tim Northover <t.p.northover at gmail.com> wrote: > On Thu, Oct 18, 2012 at 2:09 PM, Keith Sheppard <keithshep at gmail.com> wrote: >> This looks great! One hitch though: it looks like I can monitor files >> by name but what I really want to watch is a whole directory >>
2012 Mar 18
4
[LLVMdev] a place for listing LLVM binding implementations?
Hello, I didn't see any section on this site for LLVM language bindings. There is http://llvm.org/ProjectsWithLLVM/ but that seems to be more about self-contained applications of LLVM. I think it would be useful to add a page (or section to an existing page) if you all agree. My binding is https://github.com/keithshep/llvm-fs and I know that there are many others. Best, Keith
2012 Feb 27
0
[LLVMdev] Where is LLVM-3.0.dll
> I'm trying to use LLVM on Windows for the first time. Keith Sheppard has > published some F# bindings: > >  https://github.com/keithshep/llvm-fs Keith specified the build instructions there, what were the problems of using them? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2012 Oct 18
0
[LLVMdev] [cfe-dev] Announcement: Phabricator for code reviews
On Thu, Oct 18, 2012 at 2:09 PM, Keith Sheppard <keithshep at gmail.com> wrote: > This looks great! One hitch though: it looks like I can monitor files > by name but what I really want to watch is a whole directory > "/llvm/trunk/include/llvm-c". I didn't see any way to do that. Do you > have any idea if that is possible? I can add a rule for each file > which is
2011 Aug 19
2
[LLVMdev] building LLVM for i386 under snow leopard
Hello, Does anyone know how to build LLVM for the i386 architecture with snow leopard (this seems to have been the default for leopard). I've tried building with: ./configure CFLAGS="-arch i386" CXXFLAGS="-arch i386" LDFLAGS="-arch i386" OBJCFLAGS="-arch i386" --prefix=/Users/keith/share/ --enable-shared --enable-jit && make but I still end up
2011 Aug 19
0
[LLVMdev] building LLVM for i386 under snow leopard
Hi Keith, > Hello, Does anyone know how to build LLVM for the i386 architecture > with snow leopard (this seems to have been the default for leopard). > I've tried building with: > > ./configure CFLAGS="-arch i386" CXXFLAGS="-arch i386" LDFLAGS="-arch > i386" OBJCFLAGS="-arch i386" --prefix=/Users/keith/share/ > --enable-shared
2011 Aug 02
0
[LLVMdev] llvm-fs 0.0.0
Hi All, I've created the first tagged version of my LLVM F# bindings (0.0.0) at https://github.com/keithshep/llvm-fs. I basically created this so that I can write an F# based CIL compiler but I hope it's useful to others. Comments and bug reports are welcome. BTW it was very useful to me that the C API was structured in a nice, consistent way. It allowed me to autogen most of the
2012 May 14
1
[LLVMdev] Adapting Kalaidoscope tutorial for use with LLVM.NET/LLVM-F#?
Hi, Does any documentation exist (or maybe could someone give an overview) on what kind of stuff we're missing out on by binding to the C API? I'd be really interested to know. Thank you, Keith On Mon, May 14, 2012 at 3:39 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi Mikael, > >>     2. LLVM.NET/LLVM-F# <http://LLVM.NET/LLVM-F#> uses the C API.  Are there
2012 Mar 04
1
[LLVMdev] LLVM from .NET
I've been struggling to get LLVM to work from .NET using the llvm-fs bindings for the past few weeks. I finally found an installation procedure that works and documented it here: http://fsharpnews.blogspot.com/2012/03/using-llvm-from-f-under-windows.html The good news is that I have that program compiling the Fibonacci function and executing it from F# all via LLVM. However, I still have a
2012 May 13
2
[LLVMdev] Adapting Kalaidoscope tutorial for use with LLVM.NET/LLVM-F#?
Hi, I have decided against coding my planned Braceless compiler in C++ and have instead opted for using the .NET bindings that Keith Shephard have made using F# (a .NET language). This leads to two questions: 1. Is it okay if I adapt the Kalaidoscope tutorial to C# and we include the adapted version in the LLVM.NET distro and on the LLVM.NET website? I have written very clearly that Chris
2012 May 14
0
[LLVMdev] Adapting Kalaidoscope tutorial for use with LLVM.NET/LLVM-F#?
Hi Mikael, > 2. LLVM.NET/LLVM-F# <http://LLVM.NET/LLVM-F#> uses the C API. Are there > anything important missing from this API, things that are only accessible > through the C API? there's lots missing from the C API because functionality is added when someone needs it. In the other direction, there's nothing the C binding can do that the C++ API can't as far as
2012 Oct 25
1
[LLVMdev] How to include IR parser and optimization passes in my project
Hi, I am a newbie in LLVM. I am very impressed with this forum and appreciate your help and time. I am trying to include llvm IR parser in my codebase, the way I wanna do is generate llvm's shared object (.so) file and use it in my project. So far I haven't been able to generate correct .so's. When I build a debug build with gmake (have llvm and clang in my sandbox), I get the
2012 Mar 19
0
[LLVMdev] a place for listing LLVM binding implementations?
Hello Everyone > bindings. There is http://llvm.org/ProjectsWithLLVM/ but that seems to > be more about self-contained applications of LLVM. I think it would be > useful to add a page (or section to an existing page) if you all > agree. My binding is https://github.com/keithshep/llvm-fs and I know > that there are many others. +1. Keith, if you'll create such page including
2010 Dec 01
2
Help with Samba4 running logon script
Hi! I am currently testing a Samba4 Alpha13 server with Windows Vista SPK2 and I am not able to run logon scripts. I am able to use both profiles and map Home folders without any problems. I do not see any DOS window opening with the script running and I have tested running this as both a user and administrator by hand by just clicking on the script .bat file which runs just fine. Therefore,
2012 Apr 08
0
[LLVMdev] Building LLVM as a shared library using Visual C++ 2010?
On Fri, Apr 6, 2012 at 6:15 PM, Alan Garny <agarny at hellix.com> wrote: > Hi, > > From what I have seen on this mailing list and elsewhere, it would seem that > it isn’t possible to build LLVM as a shared library using Visual C++. Still, > I would imagine that quite a few people are or would be interested in it, > so… is there any plan to support this any time soon? This,