Displaying 20 results from an estimated 72 matches for "all_build".
2015 Aug 27
2
Windows build broken for me since r246156
...INSTALL_PREFIX=../llvm-install
-DLLVM_ENABLE_TERMINFO=OFF
-DLLVM_TARGETS_TO_BUILD=X86;ARM;NVPTX;AArch64;Mips
-DLLVM_ENABLE_ASSERTIONS=ON
-DLLVM_BUILD_32_BITS=OFF
-DCMAKE_BUILD_TYPE=Release../llvm/
-G 'Visual Studio 12 Win64'
MSBuild.exe /m /t:Build /p:Configuration="Debug" .\ALL_BUILD.vcxproj
MSBuild.exe /m /t:Build /p:Configuration="Release" .\ALL_BUILD.vcxproj
Suggestions appreciated. All other platforms and llvm versions are
currently green: http://104.154.46.123:8010/waterfall.
- Andrew
-------------- next part --------------
An HTML attachment was scrubbed...
UR...
2018 May 16
1
Windows build strangeness
...org> wrote:
> I have the git monorepo, and Visual Studio 2015. I am finding that
> running a build from the command line with msbuild (as a nightly job)
> invariably fails on the first try, and succeeds on a retry.
>
> The first msbuild command looks like this:
>
> msbuild ALL_BUILD.vcxproj /p:Configuration="RelWithDebInfo" /m:6 /t:Rebuild
>
> This appears to compile everything okay, but invariably fails with
> some set of link-time errors, reporting missing symbols. Then I run
> msbuild again, but without the /t:Rebuild (thus it's a dirty build the...
2018 May 16
0
Windows build strangeness
Here are a couple of representative errors. C:\Dev\upstream\gitmono is where I keep my clone.
"C:\Dev\upstream\gitmono\wbuild\ALL_BUILD.vcxproj" (Rebuild target) (1) ->
"C:\Dev\upstream\gitmono\wbuild\unittests\Support\DynamicLibrary\SecondLib.vcxproj" (default target) (170:2) ->
c1xx : fatal error C1083: Cannot open source file: 'C:\Dev\upstream\gitmono\llvm-project\llvm\unittests\Suppor...
2018 May 16
2
Windows build strangeness
...ing ninja or make, if those are options.
On Wed, May 16, 2018 at 12:59 PM via llvm-dev <llvm-dev at lists.llvm.org>
wrote:
> Here are a couple of representative errors. C:\Dev\upstream\gitmono is
> where I keep my clone.
>
>
>
> "C:\Dev\upstream\gitmono\wbuild\ALL_BUILD.vcxproj" (Rebuild target)
> (1) ->
>
>
> "C:\Dev\upstream\gitmono\wbuild\unittests\Support\DynamicLibrary\SecondLib.vcxproj"
> (default target) (170:2) ->
>
> c1xx : fatal error C1083: Cannot open source file:
> 'C:\Dev\upstream\gitmono\llv...
2015 Jun 10
2
[LLVMdev] Self-compiling clang on Windows
I'm trying to get clang 3.6.1 to compile itself on Windows, using this
command line:
msbuild /p:Configuration=Release /p:CLToolExe=clang-cl.exe
/p:CLToolPath=c:\llvm\build\Release\bin\ /p:TrackFileAccess=false
/p:Platform="x64" /fileLogger ALL_BUILD.vcxproj
It barfed on an occurrence of __try but that was only in a test file so I
commented it out and retried. Now it's getting an error I can't quite make
sense of:
In file included from C:\llvm2\lib\Support\TimeValue.cpp:55:
C:\llvm2\lib\Support/Windows/TimeValue.inc(48,7): warning :...
2018 May 16
2
Windows build strangeness
I have the git monorepo, and Visual Studio 2015. I am finding that
running a build from the command line with msbuild (as a nightly job)
invariably fails on the first try, and succeeds on a retry.
The first msbuild command looks like this:
msbuild ALL_BUILD.vcxproj /p:Configuration="RelWithDebInfo" /m:6 /t:Rebuild
This appears to compile everything okay, but invariably fails with
some set of link-time errors, reporting missing symbols. Then I run
msbuild again, but without the /t:Rebuild (thus it's a dirty build the
second time) and...
2018 May 16
0
Windows build strangeness
...> On Wed, May 16, 2018 at 12:59 PM via llvm-dev <llvm-dev at lists.llvm.org>
> wrote:
>>
>> Here are a couple of representative errors. C:\Dev\upstream\gitmono is
>> where I keep my clone.
>>
>>
>>
>> "C:\Dev\upstream\gitmono\wbuild\ALL_BUILD.vcxproj" (Rebuild target)
>> (1) ->
>>
>>
>> "C:\Dev\upstream\gitmono\wbuild\unittests\Support\DynamicLibrary\SecondLib.vcxproj"
>> (default target) (170:2) ->
>>
>> c1xx : fatal error C1083: Cannot open source file:
>> &...
2010 Oct 18
3
[LLVMdev] building only libs with cmake
Now I have -DLLVM_INCLUDE_EXAMPLES:BOOL=OFF
but Kaleidoscope is still there and selected for build
(-G "Visual Studio 9 2008")
-Jochen
2010 Oct 18
0
[LLVMdev] building only libs with cmake
...LVM example programs.
>> LLVM_BUILD_EXAMPLES:BOOL=OFF
>>
>> in the cmakecache.txt file but it also does not seem to
>> work.
>>
>
> What that means? LLVM_BUILD_EXAMPLES shall create build targets for the
> examples but do not build them when you build the ALL_BUILD target.
>
The targets are present (that's ok) but are selected for build in the
configuration manager.
2012 Jun 24
0
[LLVMdev] Problems building LLVM under Visual Studio
...Sun, Jun 24, 2012 at 1:11 PM, Mason Wheeler <masonwheeler at yahoo.com> wrote:
> Hi all,
>
> I'm trying to build LLVM, synced from SVN trunk yesterday.
>
> I ran CMake and it generated VS 2008 project files, so far so good. Then I
> tried to build them, by building the ALL_BUILD project.
>
> It got the first three all right, but choked on template issues in LLVMCore:
>
> 1>------ Build started: Project: LLVMCore, Configuration: Debug Win32 ------
> 1>Compiling...
> 1>Verifier.cpp
> 1>Instructions.cpp
> 1>F:\Documents and Settings\Maso...
2014 Oct 23
2
[LLVMdev] compiler-rt with MSVC 2013
...able
with MSVC 2013. I am currently getting:
Error 49 error LNK2005: _free already defined in asan_malloc_win.obj
E:\llvm\crt_build\lib\asan\MSVCRT.lib(MSVCR120.dll)
Which seems to be the only issue (aside from ~50 warnings, which I'll
happily work on cleaning up). I get this when I build the ALL_BUILD
project in the solution from cmake.
Thanks!
~Aaron
2013 Feb 08
2
[LLVMdev] check-all is failing on Windows: is it expected?
Hello,
I'm compiling llvm+clang (both are 3.2) on Windows using CMake + VS2010
(SP1). I have ALL_BUILD successfully passing, but "check-all" fails. Is it
expected to pass? Is it expected to pass on Windows with any other
toolchain?
-Dmitry
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130208/841ce...
2012 Dec 21
2
[LLVMdev] LLVM 3.2 on Xcode
...e ends up setting things up so that Xcode has 1
> warning after scanning the project having to do with hires images or some
> such… it takes a long time to fix that up in a project as large as this,
> but I'm not sure there's anything we can do about it.
> Second, a build of the ALL_BUILD target in Xcode produces 16 warnings
> about 8 functions declared noreturn, but without a expected
> __builtin_unreachable() before the end of the function. (The first attempt
> to build produced 2 errors, the first an unable to create directory error
> for
> runtime/libprofile/LLVM....
2018 May 16
2
Windows build strangeness
...Wed, May 16, 2018 at 12:59 PM via llvm-dev
> <llvm-dev at lists.llvm.org>
> wrote:
>>
>> Here are a couple of representative errors. C:\Dev\upstream\gitmono
>> is where I keep my clone.
>>
>>
>>
>> "C:\Dev\upstream\gitmono\wbuild\ALL_BUILD.vcxproj" (Rebuild
>> target)
>> (1) ->
>>
>>
>> "C:\Dev\upstream\gitmono\wbuild\unittests\Support\DynamicLibrary\SecondLib.vcxproj"
>> (default target) (170:2) ->
>>
>> c1xx : fatal error C1083: Cannot open source file:...
2012 Dec 21
0
[LLVMdev] LLVM 3.2 on Xcode
.../llvm/tot/xcode/projects/compiler-rt/lib/sanitizer_common/tests/Sanitizer-i386-Test] Error 1
Command /bin/sh failed with exit code 2
Additionally, there are still the 8 functions declared noreturn in asan_report.cc that clang expects to "not return". These generate 16 warnings during the ALL_BUILD build and 8 more warnings during the check-all build.
Richard
On Dec 21, 2012, at 12:13 AM, Alexey Samsonov <samsonov at google.com<mailto:samsonov at google.com>> wrote:
Hi Richard!
On Thu, Dec 20, 2012 at 12:48 AM, Nick Kledzik <kledzik at apple.com<mailto:kledzik at apple.c...
2012 Dec 19
2
[LLVMdev] LLVM 3.2 on Xcode
...irst, I believe CMake ends up setting things up so that Xcode has 1 warning after scanning the project having to do with hires images or some such… it takes a long time to fix that up in a project as large as this, but I'm not sure there's anything we can do about it.
Second, a build of the ALL_BUILD target in Xcode produces 16 warnings about 8 functions declared noreturn, but without a expected __builtin_unreachable() before the end of the function. (The first attempt to build produced 2 errors, the first an unable to create directory error for runtime/libprofile/LLVM.build/Debug/profile_rt-st...
2014 Oct 23
2
[LLVMdev] compiler-rt with MSVC 2013
...;
>> Error 49 error LNK2005: _free already defined in asan_malloc_win.obj
>> E:\llvm\crt_build\lib\asan\MSVCRT.lib(MSVCR120.dll)
>>
>> Which seems to be the only issue (aside from ~50 warnings, which I'll
>> happily work on cleaning up). I get this when I build the ALL_BUILD
>> project in the solution from cmake.
>>
>> Thanks!
>>
>> ~Aaron
>> _______________________________________________
>> LLVM Developers mailing list
>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
>> http://lists.cs.uiuc.edu/mailman/li...
2017 Jun 05
2
Build problems
...from here:
svn co http://llvm.org/svn/llvm-project/llvm/trunk llvmsvn co http://llvm.org/svn/llvm-project/cfe/trunk clang
and generated using cmake:
cmake -G "Visual Studio 15 2017" ../llvm
does not compile in Visual Studio?
I am using Batch Build in Visual Studio and I have selected only ALL_BUILD project to build as required in step 7 from here.
|
| |
Getting Started with the LLVM System using Microsoft Visual Studio — LLVM 5 documentation
| |
|
Thank you.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/l...
2014 Oct 08
2
[LLVMdev] [cfe-dev] [RFC] Raising LLVM minimum required MSVC version to 2013 for trunk
...(cl.exe 18.00.30723). Our automated testing over the weekend hasn't
> shown any correctness issues so we plan to continue using it now..
>
> From some of the stats I've collected it seems to be a worthwhile update.
> On my own machine, the time for a full rebuild from clean of ALL_BUILD (LLVM
> & Clang, Release + asserts + debug info, not using ninja) has improved by
> 20%. Doing a like-for-like build of various benchmarks and games using
> clang built by VS2012 and VS2013, the clang build speed of a typical -O2 -g
> build is somewhere between in the noise and 1%...
2013 Feb 08
2
[LLVMdev] check-all is failing on Windows: is it expected?
...er with cygwin, or mingw with a bash
> shell and utils.
>
>
> On Fri, Feb 8, 2013 at 11:29 AM, Dmitry Babokin <babokin at gmail.com> wrote:
>>
>> Hello,
>>
>> I'm compiling llvm+clang (both are 3.2) on Windows using CMake + VS2010
>> (SP1). I have ALL_BUILD successfully passing, but "check-all" fails. Is it
>> expected to pass? Is it expected to pass on Windows with any other
>> toolchain?
>>
>> -Dmitry
>>
>> _______________________________________________
>> LLVM Developers mailing list
>> LLV...