search for: gettingstartedvs

Displaying 20 results from an estimated 48 matches for "gettingstartedvs".

2007 Sep 20
3
[LLVMdev] Building with Microsoft Visual Studio
...proprietary VM. Thus far development has been under Linux and Cygwin. Cygwin licensing would appear to require that LLVM built under Cygwin would have to be released under the GPL, so alternatives are being investigated. Using MS Visual Studio and following the instructions at http://llvm.org/docs/GettingStartedVS.html (Getting Started with the LLVM System using Microsoft Visual Studio Overview) has not been successful. >From the instructions: With anonymous Subversion access: cd where-you-want-llvm-to-live svn co http://llvm.org/svn/llvm-project/llvm-top/trunk llvm-top make checkout MODULE=llvm cd...
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 -------...
2019 Jul 16
2
Usage of chmod 400 in lld lit tests causes failures when run by root user
Hi, There are 3 lld tests[1] that run the command `chmod 400` or `chmod u-w` and then check that lld generates a permission denied error when trying to write to the files. These tests fail when run as root, because `chmod 400` is not enough to prevent root from writing to files. Is there some other way we can tests this, or should we just not support running tests as root? A related question I
2008 May 14
2
[LLVMdev] patch for building llvm on Windows with MSVC 2008
I verified the patch and it compiles all the targets, both in Debug and Release modes. If there is no someone else to keep the MSVC projects files updated, I will try from time to time to update them and to add the new targets. Maybe a note must be put in "docs/GettingStartedVS.html" at the Requirements section that llvm needs now MSVC (Express) 2008 to compile. Razvan ----- Original Message ----- From: "Chris Lattner" <sabre at nondot.org> To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu> Sent: Wednesday, May 14, 2008 12...
2012 Jun 16
9
[LLVMdev] Fwd: RFC: "Building with MinGW on Windows" (DOC, NEW)
...1\?) - LLVM_LIT_TOOLS_DIR, to use gnuwin32 dedicated to testing llvm and clang. - LLVM_EXTERNAL_CLANG_SOURCE_DIR, to check out clang outside from llvm source tree - PYTHON_EXECUTABLE, if %PATH% does not contain python. - Consider to introduce ninja? Anyway, this could be integrated to "GettingStartedVS.html" ;) ...Takumi ps. feel free to visit and ask me on the irc, oftc#llvm.
2008 Sep 17
1
[LLVMdev] bc file not for Windows? Is this feature planed?
Hi! question about: http://llvm.org/docs/GettingStartedVS.html#tutorial "Note: while you cannot do this step on Windows, you can do it on a Unix system and transfer hello.bc to Windows. Important: transfer as a binary file!" Is this feature also planed for Windows? Regards, -mr
2009 Oct 30
1
[LLVMdev] Building on windows
Hi all I cant find a clear answer to this anywhere in the release notes or the mailing list. Sorry, if it is mentioned somewhere and I have missed it. Can someone clarify as to if for LLVM 2.6, cmake is optional. http://llvm.org/docs/GettingStartedVS.html The page says - "This step is currently optional as LLVM does still come with a normal Visual Studio solution file, but it is not always kept up-to-date and will soon be deprecated in favor of the multi-platform generator CMake." thanks Sumesh
2010 Jan 18
2
[LLVMdev] Any detailed instructions for building LLVM on Win XP?
I need to build LLVM on Win XP VM. Are there any detailed instructions for that? Thank you -Shad Ahmad | Release Manager, Adobe AIR | Adobe Systems, Inc | sahmad at adobe.com | 408.536.4101
2011 Apr 09
1
[LLVMdev] Clarification suggestion for the documention of LLVM
Hello, The documentation on http://llvm.org/docs/GettingStartedVS.html states that > You can run LLVM tests to build the project "check". This phrase seems a bit confusing, I think it would be clearer if formulated something like this: > You can run LLVM tests by merely building the project "check". The > test results will be shown...
2007 Sep 20
0
[LLVMdev] Building with Microsoft Visual Studio
...development has been under Linux and Cygwin. Cygwin licensing would appear > to require that LLVM built under Cygwin would have to be released under the > GPL, so alternatives are being investigated. > > Using MS Visual Studio and following the instructions at > http://llvm.org/docs/GettingStartedVS.html (Getting Started with the LLVM > System using Microsoft Visual Studio Overview) has not been successful. Have you tried MinGW? Coming from a *nix background, I find MinGW far easier to use than the microsoft tools. Erik -- ----------------------------------------------------------------...
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
...39;m actually not using C bindings; I'm using the C++ API directly. I > have no idea why I have to link that object file. Would either of you be willing to prepare a patch for this document once you've settled on the proper way to get JIT to work on Visual Studio? http://llvm.org/docs/GettingStartedVS.html -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20081230/2379742d/attachment.html>
2005 Mar 10
0
[LLVMdev] VC++ 2003
...want the most current version of LLVM, please use CVS: http://llvm.cs.uiuc.edu/docs/GettingStarted.html#checkout > Where can I find more information? In particular: > Can the LLVM be compiled using VC++ 2003? > Does it generate bytecode and executable code? http://llvm.cs.uiuc.edu/docs/GettingStartedVS.html -- Misha Brukman :: http://misha.brukman.net :: http://llvm.cs.uiuc.edu
2005 Mar 10
2
[LLVMdev] VC++ 2003
Hi, I was trying to know if LLVM 1.5 works better with VC++ 2003 and to what extent. This link: http://llvm.cs.uiuc.edu/releases/1.5/ Referred to in : http://llvm.cs.uiuc.edu/docs/ReleaseNotes.html Is broken Where can I find more information? In particular: Can the LLVM be compiled using VC++ 2003? Does it generate bytecode and executable code? Thanks
2011 Sep 29
1
[LLVMdev] Beginner Question on Linking
I am following along in http://llvm.org/docs/GettingStartedVS.html with a Hello World bitcode file. I can run the file using the command `lli HelloWorld.bc`, but now I want to link it into an executable file (on windows). The next thing the document says to run is `llc -filetype=obj HelloWorld.bc` which runs fine and now I have a `HelloWorld.obj` file. It'...
2018 Mar 04
1
[GSOC 2018] Improve code generation testing
Hi Matthias, I am a fourth year undergraduate student with some knowledge working on code generation, but with the java backend (committer at an Apache project) and have C++ as my primary language. What I've done so far? ----- 1. I've created an account on bugzilla 2. studying LLVM ProgrammersManual 3. studying LLVM CodingStandards Help ---- 1. trying to setup `llvm-core` and `clang`
2013 Jul 04
4
[LLVMdev] llvm (hence Clang) not compiling with Visual Studio 2008
...the predicate (here "_Pred") to accept as arguments both (_Ty1, _Ty2) and (_Ty2, _Ty1), which does not seem consistent with the specifications mentioned above. Solutions here: 1. consider that the implementation if effectively wrong, and modify the documentation at http://llvm.org/docs/GettingStartedVS.html, requiring Visual Studio 2010, i.e. replacing: "You will need Visual Studio 2008 or higher." by: "You will need Visual Studio 2010 or higher." Same comments on the respect of the standard apply 2. investigate whether there exists a way to disable the aforem...
2013 Jul 04
0
[LLVMdev] [cfe-dev] llvm (hence Clang) not compiling with Visual Studio 2008
...quot;) to accept as arguments > both (_Ty1, _Ty2) and (_Ty2, _Ty1), which does not seem consistent with the > specifications mentioned above. > > Solutions here: > > 1. consider that the implementation if effectively wrong, and modify the > documentation at http://llvm.org/docs/GettingStartedVS.html, requiring > Visual Studio 2010, i.e. replacing: > > "You will need Visual Studio 2008 or higher." > > by: > > "You will need Visual Studio 2010 or higher." > > Same comments on the respect of the standard apply > > 2. investigat...
2012 Jun 17
0
[LLVMdev] Fwd: RFC: "Building with MinGW on Windows" (DOC, NEW)
...use gnuwin32 dedicated to testing llvm and clang. > - LLVM_EXTERNAL_CLANG_SOURCE_DIR, to check out clang outside from > llvm source tree > - PYTHON_EXECUTABLE, if %PATH% does not contain python. > > - Consider to introduce ninja? > > Anyway, this could be integrated to "GettingStartedVS.html" ;) > > ...Takumi > > ps. feel free to visit and ask me on the irc, oftc#llvm. > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120617/00d141cd/attachment.html>
2012 Jun 17
0
[LLVMdev] Fwd: RFC: "Building with MinGW on Windows" (DOC, NEW)
...use gnuwin32 dedicated to testing llvm and clang. > - LLVM_EXTERNAL_CLANG_SOURCE_DIR, to check out clang outside from > llvm source tree > - PYTHON_EXECUTABLE, if %PATH% does not contain python. > > - Consider to introduce ninja? > > Anyway, this could be integrated to "GettingStartedVS.html" ;) > > ...Takumi > > ps. feel free to visit and ask me on the irc, oftc#llvm. > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120617/a66ea0d5/attachment.html>
2012 Jun 16
0
[LLVMdev] Fwd: RFC: "Building with MinGW on Windows" (DOC, NEW)
...use gnuwin32 dedicated to testing llvm and clang. > - LLVM_EXTERNAL_CLANG_SOURCE_DIR, to check out clang outside from > llvm source tree > - PYTHON_EXECUTABLE, if %PATH% does not contain python. > > - Consider to introduce ninja? > > Anyway, this could be integrated to "GettingStartedVS.html" ;) > > ...Takumi > > ps. feel free to visit and ask me on the irc, oftc#llvm. > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120616/20b2533b/attachment.html>