search for: genllvmdll

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

2017 Mar 30
2
Shipping LLVM.dll for the C API with the Windows installer.
...add new exports gets detected early. Now for the bike-shed questions, do we call it LLVM-c.dll or just LLVM.dll? Annotate all functions with a LLVM_EXPORT define or use a llvm-c.exports file? Thoughts and feedback welcome. Cheers, Jakob. [1] http://volt-lang.org [2] https://github.com/VoltLang/GenLLVMDLLPy/blob/master/GenLLVMDLL.py [3] https://github.com/Microsoft/LLVMSharp/blob/master/tools/GenLLVMDLL.ps1
2017 Apr 05
2
Shipping LLVM.dll for the C API with the Windows installer.
...LVM-c.dll or just > > LLVM.dll? Annotate all functions with a LLVM_EXPORT define or use a > > llvm-c.exports file? > > > > Thoughts and feedback welcome. > > > > Cheers, Jakob. > > > > [1] http://volt-lang.org > > [2] https://github.com/VoltLang/GenLLVMDLLPy/blob/master/GenLLVMDLL.py > > [3] > https://github.com/Microsoft/LLVMSharp/blob/master/tools/GenLLVMDLL.ps1 > > Ping? Any thoughts? > > What would be the best way to proceed? My cmake-fu is very weak so any > pointers here from those knowledgeable and stakeholders in the...
2015 Apr 01
3
[LLVMdev] LLVM Shared DLL not supported reason
...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 are using mingw, then ld...
2015 Dec 23
2
r250501 adds dependancy to ole32.dll on MSVC
...rgument. Carrying around a hack to add ole32.lib to the discrepancies will work for me but that will just mean more users will run into it. Any advice on how to proceed is greatly welcome, thanks. Cheers, Jakob. [1] http://www.llvmsharp.org/ [2] https://github.com/mjsabby/LLVMSharp/blob/master/GenLLVMDLL.ps1 [3] http://stackoverflow.com/questions/33685644/missing-cotaskmemfree-when-building-llvm-example-on-windows [4] https://groups.google.com/forum/m/#!topic/llvm-dev/Y3DYH0htGW4
2017 Jul 06
0
Shipping LLVM.dll for the C API with the Windows installer.
...t; > >>> >> > Thoughts and feedback welcome. >>> >> > >>> >> > Cheers, Jakob. >>> >> > >>> >> > [1] http://volt-lang.org >>> >> > [2] >>> >> > https://github.com/VoltLang/GenLLVMDLLPy/blob/master/GenLLVMDLL.py >>> >> > [3] >>> >> >>> >> https://github.com/Microsoft/LLVMSharp/blob/master/tools/GenLLVMDLL.ps1 >>> >> >>> >> Ping? Any thoughts? >>> >> >>> >> What would be th...
2017 Feb 21
2
tooling libraries missing in Windows download
I was looking to write a cross platform utility that worked with ELF/DWARF files. I need the utility to run on OS X, Linux and Windows. I figured I could use clang/llvm to build this tool. I've made good progress on OS X. Before I got too far, though. I decided to verify that I can build the code on Windows. I downloaded the 3.8.0 Windows installer from the llvm downwloads page, ran the
2017 Apr 06
2
Shipping LLVM.dll for the C API with the Windows installer.
..._EXPORT define or use a > >> > llvm-c.exports file? > >> > > >> > Thoughts and feedback welcome. > >> > > >> > Cheers, Jakob. > >> > > >> > [1] http://volt-lang.org > >> > [2] https://github.com/VoltLang/GenLLVMDLLPy/blob/master/ > GenLLVMDLL.py > >> > [3] > >> https://github.com/Microsoft/LLVMSharp/blob/master/tools/GenLLVMDLL.ps1 > >> > >> Ping? Any thoughts? > >> > >> What would be the best way to proceed? My cmake-fu is very weak so any > >...
2015 Dec 24
2
r250501 adds dependancy to ole32.dll on MSVC
...as a basis for which pragmas we should add in. I can't experiment right now but user32, kernel32 and friends seems be included by default by link.exe or they are pragmas in the MSVC headers that the LLVM build picks. Thanks again for your time. Cheers, Jakob. [1] https://github.com/VoltLang/GenLLVMDLLPy/blob/master/GenLLVMDLL.py [2] http://llvm.org/builds/ [3] https://cmake.org/gitweb?p=cmake.git;a=blob;f=Modules/Platform/Windows-MSVC.cmake
2015 Dec 23
2
r250501 adds dependancy to ole32.dll on MSVC
...ork >> for me but that will just mean more users will run into it. >> >> Any advice on how to proceed is greatly welcome, thanks. >> >> Cheers, Jakob. >> >> >> [1] http://www.llvmsharp.org/ >> [2] https://github.com/mjsabby/LLVMSharp/blob/master/GenLLVMDLL.ps1 >> [3] http://stackoverflow.com/questions/33685644/missing-cotaskmemfree-when-building-llvm-example-on-windows >> [4] https://groups.google.com/forum/m/#!topic/llvm-dev/Y3DYH0htGW4 >> _______________________________________________ >> LLVM Developers mailing list >&gt...
2016 Jan 12
2
r250501 adds dependancy to ole32.dll on MSVC
...r32, kernel32 and friends seems be > > included by default by link.exe or they are pragmas in the MSVC > > headers that the LLVM build picks. > > > > Thanks again for your time. > > Ping? > > Cheers, Jakob. > > > > > [1] https://github.com/VoltLang/GenLLVMDLLPy/blob/master/GenLLVMDLL.py > > [2] http://llvm.org/builds/ > > [3] > https://cmake.org/gitweb?p=cmake.git;a=blob;f=Modules/Platform/Windows-MSVC.cmake > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/at...
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:
2017 Jul 10
2
Shipping LLVM.dll for the C API with the Windows installer.
...> Thoughts and feedback welcome. > >>> >> > > >>> >> > Cheers, Jakob. > >>> >> > > >>> >> > [1] http://volt-lang.org > >>> >> > [2] > >>> >> > https://github.com/VoltLang/GenLLVMDLLPy/blob/master/ > GenLLVMDLL.py > >>> >> > [3] > >>> >> > >>> >> https://github.com/Microsoft/LLVMSharp/blob/master/tools/ > GenLLVMDLL.ps1 > >>> >> > >>> >> Ping? Any thoughts? > >>> >&...
2015 Dec 23
2
r250501 adds dependancy to ole32.dll on MSVC
On Wed, Dec 23, 2015 at 11:25 AM, Aaron Ballman via llvm-dev < llvm-dev at lists.llvm.org> wrote: > On Wed, Dec 23, 2015 at 1:55 PM, Jakob Bornecrantz <wallbraker at gmail.com> > wrote: > > On Wed, Dec 23, 2015 at 5:49 PM, Aaron Ballman <aaron at aaronballman.com> > wrote: > >> On Wed, Dec 23, 2015 at 11:29 AM, Jakob Bornecrantz via llvm-dev > >>