Displaying 2 results from an estimated 2 matches for "dcmake_rc_compil".
Did you mean:
dcmake_rc_compiler
2016 Feb 10
4
Guidance on cross compiling LLVM with mingw-w64 and cmake
...Ubuntu, Cygwin, etc).
I'm trying to recreate this with cmake so we don't get stuck on 3.8
indefinitely. Here's what I've got so far:
cmake .. -DCMAKE_C_COMPILER=/usr/bin/i686-w64-mingw32-gcc \
-DCMAKE_CXX_COMPILER=/usr/bin/i686-w64-mingw32-g++ \
-DCMAKE_SYSTEM_NAME=Windows \
-DCMAKE_RC_COMPILER=/usr/bin/i686-w64-mingw32-windres
# (some older versions of cmake have issues if you don't
# specify an absolute path to windres)
When this gets to "Configuring NATIVE targets" it calls cmake again
trying to use the same mingw compilers, but without CMAKE_SYSTEM_NAME
set so it does...
2016 Feb 11
2
Guidance on cross compiling LLVM with mingw-w64 and cmake
...with cmake so we don't get stuck on 3.8
>> indefinitely. Here's what I've got so far:
>>
>> cmake .. -DCMAKE_C_COMPILER=/usr/bin/i686-w64-mingw32-gcc \
>> -DCMAKE_CXX_COMPILER=/usr/bin/i686-w64-mingw32-g++ \
>> -DCMAKE_SYSTEM_NAME=Windows \
>> -DCMAKE_RC_COMPILER=/usr/bin/i686-w64-mingw32-windres
>> # (some older versions of cmake have issues if you don't
>> # specify an absolute path to windres)
>>
>> When this gets to "Configuring NATIVE targets" it calls cmake again
>> trying to use the same mingw compilers,...