Displaying 16 results from an estimated 16 matches for "dllvm_use_crt_release".
2019 Oct 28
4
How to Switch to Static Runtime and Enable C++ Exceptions?
Hi Osman,
You can’t enable the static CRT through the command-line. You would need to apply this patch: https://reviews.llvm.org/D55056
(although it doesn’t work with lldb)
Alex.
________________________________
De : llvm-dev <llvm-dev-bounces at lists.llvm.org> de la part de Osman Zakir via llvm-dev <llvm-dev at lists.llvm.org>
Envoyé : 28 octobre 2019 07:47:43
À : llvm-dev at
2019 Mar 29
2
How to build only the necessary components with MSVC
I configure LLVM build with this command
cd llvm-8.0.0.src & md buildsys-x64-MT & cd buildsys-x64-MT & cmake -G "Ninja" -DLLVM_TARGETS_TO_BUILD=X86 -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_CRT_RELEASE=MT -DLLVM_ENABLE_RTTI=1 -DLLVM_ENABLE_TERMINFO=OFF -DCMAKE_INSTALL_PREFIX=../x64-MT ..
The number of build objects grew with every major release to 1660 for LLVM 7 and 1761 for LLVM 8.
I only need the components requested here
https://gitlab.freedesktop.org/mesa/mesa/blob/master/scons/llvm.py#L103...
2015 Feb 01
2
[LLVMdev] Building LLVM with static linking on Windows
I'm trying to build LLVM 3.5.1 on Windows, almost successfully; the
remaining stumbling block is getting static linking for release builds. The
problem is that the .vcxproj is interpreted by msbuild to compile with the
/MD option instead of /MT, as detailed in:
https://stackoverflow.com/questions/28262372/getting-msbuild-to-use-mt-staticrelease
Haven't got any answers on that question,
2019 Oct 30
2
Recent LLVM Build Attempt -- obj.ClangAST.vcxproj Failed to Build
I configured with this command:
"
cmake ../llvm -G"Visual Studio 16 2019" -A Win32 -Thost=x64 -DLLVM_ENABLE_EH=ON -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_CRT_RELEASE=MT -DLLVM_ENABLE_RTTI=ON -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld;libcxx;libcxxabi" -DCMAKE_CXX_FLAGS="/permissive- /D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS" -DCMAKE_CXX_STANDARD=17
"
and when building the target ALL_BUILD.vcxproj I redirected the output to a fi...
2015 Jul 23
1
[LLVMdev] DebugInfo/PDB/pdbdump-symbol-format.test fails with VS 2015
Ok just tried on Win 7 and the same problem occurs. I am building with :
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_CRT_RELEASE=MT
-DLLVM_ENABLE_TIMESTAMPS=ON -DLLVM_ENABLE_ASSERTIONS=ON
-DLLVM_INSTALL_TOOLCHAIN_ONLY=ON -DLLVM_TARGETS_TO_BUILD="ARM;X86"
-DPYTHON_EXECUTABLE=$python_exe -DLLVM_BUILD_TESTS=ON
-DLLVM_LIT_TOOLS_DIR=C:/cygwin64/bin
fwiw compiler-rt is also enabled.
Also if you can forward me the outp...
2015 Jul 17
3
[LLVMdev] Fail to build LLVM release_36 in MSVC 2013
Hi, All,
I follow the menu http://llvm.org/docs/GettingStartedVS.html , but still
failed to build LLVM debug version.
Here's error message:
7>C:\study\llvm\projects\compiler-rt\lib\asan\asan_win.cc(69): fatal error
C1189: #error : Please build the runtime with a non-debug CRT: /MD or /MT
Any idear?
--
Best Regards,
Amy
-------------- next part --------------
An HTML attachment was
2015 Oct 05
2
[cfe-dev] Orc Windows C++
...m.
Relevant information:
- llvm, clang and compiler-rt revision 249038 from trunk
- built with the command (where ../llvm is the llvm source root) cmake -G "Visual Studio 12 2013 Win64" -DLLVM_INCLUDE_EXAMPLES=OFF -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF -DLLVM_USE_CRT_DEBUG=MDd -DLLVM_USE_CRT_RELEASE=MD ../llvm
- VS2013 version 12.0.40629.00 Update 5
Running the same code without llvm-rtdyld.exe (i.e. non-JIT) does so without error.
Thanks very much for any response!
(Sorry for the slow reply, was trying to get something as minimal as possible for you to look at)
> On 2 Oct 2015, at 19:4...
2015 Oct 05
2
[cfe-dev] Orc Windows C++
...mation:
>> - llvm, clang and compiler-rt revision 249038 from trunk
>> - built with the command (where ../llvm is the llvm source root) cmake -G "Visual Studio 12 2013 Win64" -DLLVM_INCLUDE_EXAMPLES=OFF -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF -DLLVM_USE_CRT_DEBUG=MDd -DLLVM_USE_CRT_RELEASE=MD ../llvm
>> - VS2013 version 12.0.40629.00 Update 5
>>
>> Running the same code without llvm-rtdyld.exe (i.e. non-JIT) does so without error.
>>
>> Thanks very much for any response!
>>
>> (Sorry for the slow reply, was trying to get something as minim...
2016 Oct 24
2
RuntimeDyLdCOFF and RTTI on Windows
...s build. OS versions and CMake flags are:
>
> * OSX 10.10.6 with -DLLVM_ENABLE_RTTI=ON -DLLVM_ENABLE_EH=ON
> -DLLVM_TARGETS_TO_BUILD=X86
> * Windows 10 64bit OS Build 14393.222 with -DLLVM_ENABLE_RTTI=ON
> -DLLVM_ENABLE_EH=ON -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_USE_CRT_DEBUG=MDd
> -DLLVM_USE_CRT_RELEASE=MD
>
> Hope this helps nailing down the issue. Maybe I can help fixing it, if you
> can provide a few pointers where to start :) If you need any more info
> please let me know.
>
> Cheers
> Stefan
>
> Am 19.10.16 um 12:10 schrieb Stefan Gränitz:
>
> Hi Lang, thanks...
2015 Oct 14
4
[cfe-dev] Orc Windows C++
...ompiler-rt revision 249038 from trunk
>> >> - built with the command (where ../llvm is the llvm source root) cmake
>> -G "Visual Studio 12 2013 Win64" -DLLVM_INCLUDE_EXAMPLES=OFF
>> -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF -DLLVM_USE_CRT_DEBUG=MDd
>> -DLLVM_USE_CRT_RELEASE=MD ../llvm
>> >> - VS2013 version 12.0.40629.00 Update 5
>> >>
>> >> Running the same code without llvm-rtdyld.exe (i.e. non-JIT) does so
>> without error.
>> >>
>> >> Thanks very much for any response!
>> >>
>> >...
2016 Oct 07
3
RuntimeDyLdCOFF and RTTI on Windows
HI Stefan,
CC'ing Reid Kleckner, who might have some insight here, and llvm-dev as
this may be of interest to other windows JIT users.
I am facing the issue that C++ dynamic_cast doesn't work for types
> loaded from object files with RuntimeDyLd.
<snip>
Do you think it is possible that RuntimeDyLd misses type info data in
> the COFF file or doesn't wire it up
2015 Nov 17
12
3.7.1-rc1 has been tagged. Let's begin testing!
Hi,
I have just tagged 3.7.1-rc1, so it is ready for testing. As a
reminder, when doing regression testing, use the 3.7.0 release
as your baseline.
Thanks,
Tom
2015 Oct 02
2
[cfe-dev] Orc Windows C++
Thanks for the link!
There’s some code there that looks extremely relevant to say the least.
> On 1 Oct 2015, at 19:00, Hayden Livingston <halivingston at gmail.com> wrote:
>
> Maybe looking at their code might help:
>
> https://github.com/dotnet/llilc/blob/dd12743f9cdb5418f1c39b2cd756da1e8396a922/lib/Jit/LLILCJit.cpp#L299
>
> On Thu, Oct 1, 2015 at 10:45 AM, David
2015 Oct 19
2
[cfe-dev] Orc Windows C++
...gt;> - llvm, clang and compiler-rt revision 249038 from trunk
>> >> - built with the command (where ../llvm is the llvm source root) cmake -G "Visual Studio 12 2013 Win64" -DLLVM_INCLUDE_EXAMPLES=OFF -DLLVM_INCLUDE_TESTS=OFF -DLLVM_INCLUDE_DOCS=OFF -DLLVM_USE_CRT_DEBUG=MDd -DLLVM_USE_CRT_RELEASE=MD ../llvm
>> >> - VS2013 version 12.0.40629.00 Update 5
>> >>
>> >> Running the same code without llvm-rtdyld.exe (i.e. non-JIT) does so without error.
>> >>
>> >> Thanks very much for any response!
>> >>
>> >> (So...
2015 Jul 21
0
[LLVMdev] DebugInfo/PDB/pdbdump-symbol-format.test fails with VS 2015
FWIW, this test is passing for me on Windows 7 with Visual Studio 2015
(debug build).
59> Running all regression tests
59> -- Testing: 23734 tests, 32 threads --
59>
59> Testing Time: 634.19s
59> Expected Passes : 22821
59> Expected Failures : 160
59> Unsupported Tests : 753
59> lit.py: lit.cfg:195: note: using clang:
2015 Jul 21
4
[LLVMdev] DebugInfo/PDB/pdbdump-symbol-format.test fails with VS 2015
Hi,
This might be interesting since it seems to be the only LLVM test
failing with VS 2015:
FAIL: LLVM :: DebugInfo/PDB/pdbdump-symbol-format.test (7377 of 14212)
******************** TEST 'LLVM ::
DebugInfo/PDB/pdbdump-symbol-format.test' FAILED ********************
Script:
--
llvm-pdbdump -symbols
C:\cygwin64\home\ismail\src\llvm\test\DebugInfo\PDB/Inputs/symbolformat.pdb
|