search for: llvmsharp

Displaying 13 results from an estimated 13 matches for "llvmsharp".

2017 Mar 30
2
Shipping LLVM.dll for the C API with the Windows installer.
...he C API exported? LLVM currently ships with LTO.dll which has some C api functions exported, made from the export file tools/lto/lto.exports, so it would not be the first DLL LLVM shipped. Currently I (and the users of my project[1]) are building it ourselves using this script[2] derived from the LLVMSharp script[3]. Which adds a extra long step for all users of ours and other projects like LLVMSharp in order to use them. The resulting LLVM.dll exports 809 functions and weighs in at around 18mb, so it would make the installer larger. There is also the cost of maintaining a lists of export for the DL...
2015 Dec 23
2
r250501 adds dependancy to ole32.dll on MSVC
I'm building on Windows x64 using cmake, Ninja and VS 2013 express on Windows 7. So I have been using the LLVMSharp method on getting a usable loadable LLVM.dll[1][2]. This have worked out of the box before so it is a regression, I tracked it down to commit r250501. That commit breaks this commit, other users have also run into this specific problem[3][4]. I tried looking into the CMakeLists.txt for LLVMSuppor...
2017 Apr 05
2
Shipping LLVM.dll for the C API with the Windows installer.
...dll which has some C api > > functions exported, made from the export file tools/lto/lto.exports, > > so it would not be the first DLL LLVM shipped. > > > > Currently I (and the users of my project[1]) are building it ourselves > > using this script[2] derived from the LLVMSharp script[3]. Which adds > > a extra long step for all users of ours and other projects like > > LLVMSharp in order to use them. > > > > The resulting LLVM.dll exports 809 functions and weighs in at around > > 18mb, so it would make the installer larger. There is also the...
2015 Dec 23
2
r250501 adds dependancy to ole32.dll on MSVC
...lman <aaron at aaronballman.com> wrote: > On Wed, Dec 23, 2015 at 11:29 AM, Jakob Bornecrantz via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> I'm building on Windows x64 using cmake, Ninja and VS 2013 express on Windows 7. >> >> So I have been using the LLVMSharp method on getting a usable loadable >> LLVM.dll[1][2]. >> >> This have worked out of the box before so it is a regression, I >> tracked it down to commit r250501. > > Oh, interesting, CoTaskMemFree() is from OLE32. That's a typical MSVC > link library, so I'...
2017 Apr 06
2
Shipping LLVM.dll for the C API with the Windows installer.
...unctions exported, made from the export file tools/lto/lto.exports, > >> > so it would not be the first DLL LLVM shipped. > >> > > >> > Currently I (and the users of my project[1]) are building it ourselves > >> > using this script[2] derived from the LLVMSharp script[3]. Which adds > >> > a extra long step for all users of ours and other projects like > >> > LLVMSharp in order to use them. > >> > > >> > The resulting LLVM.dll exports 809 functions and weighs in at around > >> > 18mb, so it would...
2017 Jul 10
2
Shipping LLVM.dll for the C API with the Windows installer.
...; >> > so it would not be the first DLL LLVM shipped. > >>> >> > > >>> >> > Currently I (and the users of my project[1]) are building it > >>> >> > ourselves > >>> >> > using this script[2] derived from the LLVMSharp script[3]. Which > >>> >> > adds > >>> >> > a extra long step for all users of ours and other projects like > >>> >> > LLVMSharp in order to use them. > >>> >> > > >>> >> > The resulting LLVM.dl...
2017 Jul 06
0
Shipping LLVM.dll for the C API with the Windows installer.
...exports, >>> >> > so it would not be the first DLL LLVM shipped. >>> >> > >>> >> > Currently I (and the users of my project[1]) are building it >>> >> > ourselves >>> >> > using this script[2] derived from the LLVMSharp script[3]. Which >>> >> > adds >>> >> > a extra long step for all users of ours and other projects like >>> >> > LLVMSharp in order to use them. >>> >> > >>> >> > The resulting LLVM.dll exports 809 functions a...
2017 Jul 10
0
Shipping LLVM.dll for the C API with the Windows installer.
...so it would not be the first DLL LLVM shipped. >> >>> >> > >> >>> >> > Currently I (and the users of my project[1]) are building it >> >>> >> > ourselves >> >>> >> > using this script[2] derived from the LLVMSharp script[3]. Which >> >>> >> > adds >> >>> >> > a extra long step for all users of ours and other projects like >> >>> >> > LLVMSharp in order to use them. >> >>> >> > >> >>> >> > T...
2015 Apr 01
3
[LLVMdev] LLVM Shared DLL not supported reason
FWIW, I've got a powershell script that builds an exports.def file for recognizable C functions. You could adapt it to Python and make it part of the official build if the LLVM community thinks it will be beneficial to have libLLVM.dll The script is located here: https://github.com/mjsabby/LLVMSharp/blob/master/GenLLVMDLL.ps1 On Wed, Apr 1, 2015 at 9:03 AM, Reid Kleckner <rnk at google.com> wrote: > Windows DLLs generally require that you know what you want to export from > them. LLVM has no export annotations or export lists, so we don't support > building DLLs. If you ar...
2015 Dec 23
2
r250501 adds dependancy to ole32.dll on MSVC
...>> On Wed, Dec 23, 2015 at 11:29 AM, Jakob Bornecrantz via llvm-dev > >> <llvm-dev at lists.llvm.org> wrote: > >>> I'm building on Windows x64 using cmake, Ninja and VS 2013 express on > Windows 7. > >>> > >>> So I have been using the LLVMSharp method on getting a usable loadable > >>> LLVM.dll[1][2]. > One day, I would like to make it easier to make LLVM.dll... > > Further investigation show that for the MinGW build OLE32 is added to > > the dependencies for LLVMSupport.lib in the CMakeLists.txt file, there...
2015 Dec 24
2
r250501 adds dependancy to ole32.dll on MSVC
...necrantz via llvm-dev >>> >> <llvm-dev at lists.llvm.org> wrote: >>> >>> I'm building on Windows x64 using cmake, Ninja and VS 2013 express on >>> >>> Windows 7. >>> >>> >>> >>> So I have been using the LLVMSharp method on getting a usable loadable >>> >>> LLVM.dll[1][2]. >> >> >> One day, I would like to make it easier to make LLVM.dll... We (not I) have rewritten the powershell script into a python script[1] and where hoping that we could commit that to LLVM and have i...
2016 Jan 12
2
r250501 adds dependancy to ole32.dll on MSVC
...t; <llvm-dev at lists.llvm.org> wrote: > >>>> >>> I'm building on Windows x64 using cmake, Ninja and VS 2013 > express on > >>>> >>> Windows 7. > >>>> >>> > >>>> >>> So I have been using the LLVMSharp method on getting a usable > loadable > >>>> >>> LLVM.dll[1][2]. > >>> > >>> > >>> One day, I would like to make it easier to make LLVM.dll... > > > > We (not I) have rewritten the powershell script into a python > > s...
2015 Mar 31
2
[LLVMdev] LLVM Shared DLL not supported reason
Upon reading http://llvm.org/docs/GettingStarted.html it says I can build shared libs, but when going to the CMake doc ( http://llvm.org/docs/CMake.html) it says Shared libraries are not supported on Windows and not recommended for other OSes. Is there a reason why? At least for on Windows. -------------- next part -------------- An HTML attachment was scrubbed... URL: