Displaying 5 results from an estimated 5 matches for "focmakefil".
Did you mean:
focmakefiles
2015 Feb 20
2
[LLVMdev] Building Compiler-RT on Windows
...MakeTmp
Run Build Command:"d:/llvm/ninja/ninja.exe" "cmTryCompileExec2171879632"
[1/2] Building C object
CMakeFiles\cmTryCompileExec2171879632.dir\testCCompiler.c.obj
FAILED: d:\llvm\build\Release\bin\clang.exe /nologo /D_DEBUG /MDd /Zi /Ob0
/Od /RTC1 /showIncludes
/FoCMakeFiles\cmTryCompileExec2171879632.dir\testCCompiler.c.obj
/FdCMakeFiles\cmTryCompileExec2171879632.dir\ -c testCCompiler.c
clang.exe: error: no such file or directory: '/nologo'
clang.exe: error: no such file or directory: '/D_DEBUG'
clang.exe: error: no such file or directory: &...
2015 Feb 20
3
[LLVMdev] Building Compiler-RT on Windows
...mpileExec2171879632"
>>> [1/2] Building C object
>>> CMakeFiles\cmTryCompileExec2171879632.dir\testCCompiler.c.obj
>>> FAILED: d:\llvm\build\Release\bin\clang.exe /nologo /D_DEBUG /MDd /Zi
>>> /Ob0
>>> /Od /RTC1 /showIncludes
>>> /FoCMakeFiles\cmTryCompileExec2171879632.dir\testCCompiler.c.obj
>>> /FdCMakeFiles\cmTryCompileExec2171879632.dir\ -c testCCompiler.c
>>> clang.exe: error: no such file or directory: '/nologo'
>>> clang.exe: error: no such file or directory: '/D_DEBUG'
>>&...
2015 Feb 26
0
[LLVMdev] Building Compiler-RT on Windows
...;
>>>> [1/2] Building C object
>>>> CMakeFiles\cmTryCompileExec2171879632.dir\testCCompiler.c.obj
>>>> FAILED: d:\llvm\build\Release\bin\clang.exe /nologo /D_DEBUG /MDd
>>>> /Zi /Ob0
>>>> /Od /RTC1 /showIncludes
>>>> /FoCMakeFiles\cmTryCompileExec2171879632.dir\testCCompiler.c.obj
>>>> /FdCMakeFiles\cmTryCompileExec2171879632.dir\ -c testCCompiler.c
>>>> clang.exe: error: no such file or directory: '/nologo'
>>>> clang.exe: error: no such file or directory: '/D_DEBUG...
2015 Feb 26
1
[LLVMdev] Building Compiler-RT on Windows
...[1/2] Building C object
>>>>> CMakeFiles\cmTryCompileExec2171879632.dir\testCCompiler.c.obj
>>>>> FAILED: d:\llvm\build\Release\bin\clang.exe /nologo /D_DEBUG /MDd
>>>>> /Zi /Ob0
>>>>> /Od /RTC1 /showIncludes
>>>>> /FoCMakeFiles\cmTryCompileExec2171879632.dir\testCCompiler.c.obj
>>>>> /FdCMakeFiles\cmTryCompileExec2171879632.dir\ -c testCCompiler.c
>>>>> clang.exe: error: no such file or directory: '/nologo'
>>>>> clang.exe: error: no such file or directory: '...
2018 Nov 06
3
Trying to cross-compile LLVM runtimes to Windows
.../CMake/commit/bd9bfc644954a48b1bf7ea18fc260a1231840671)
>
> I managed to workaround this issue by symlinking llvm-rc as rc.
> However, that's not sufficient because CMake uses following invocation
> (https://github.com/Kitware/CMake/blob/master/Source/cmcmd.cxx#L1815):
>
> rc /foCMakeFiles/cmTC_2c376.dir/manifest.res
> CMakeFiles/cmTC_2c376.dir/manifest.rc
>
> llvm-rc option parses requires /fo option argument to be separate.
> I've modified the flag to support both joined and separate value which
> helped getting past that error, but I immediately hit another er...