Skip to content

Instantly share code, notes, and snippets.

@ttmarek
Created September 28, 2015 01:30
Show Gist options
  • Save ttmarek/f83b9e6dd224fc5b19e6 to your computer and use it in GitHub Desktop.
Save ttmarek/f83b9e6dd224fc5b19e6 to your computer and use it in GitHub Desktop.
Console output from running cmake on the Chromium Embedded Framework (cross compile Linux to Windows)
> cmake -G "Unix Makefiles" -D CMAKE_TOOLCHAIN_FILE=xcompile.cmake ..
-- The C compiler identification is GNU 4.8.2
-- The CXX compiler identification is GNU 4.8.2
-- Check for working C compiler: /usr/bin/i686-w64-mingw32-gcc
-- Check for working C compiler: /usr/bin/i686-w64-mingw32-gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/i686-w64-mingw32-g++
-- Check for working CXX compiler: /usr/bin/i686-w64-mingw32-g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
CMake Warning at CMakeLists.txt:164 (message):
No CMAKE_BUILD_TYPE value selected, using Release
-- *** CONFIGURATION SETTINGS ***
-- Generator: Unix Makefiles
-- Platform: Windows
-- Project architecture: x86
-- Build type: Release
-- CEF Windows sandbox: OFF
-- Visual Studio ATL support: OFF
-- Standard libraries: comctl32.lib;rpcrt4.lib;shlwapi.lib
-- Compiler definitions: __STDC_CONSTANT_MACROS;__STDC_FORMAT_MACROS;WIN32;_WIN32;_WINDOWS;UNICODE;_UNICODE;WINVER=0x0602;_WIN32_WINNT=0x602;NOMINMAX;WIN32_LEAN_AND_MEAN;_HAS_EXCEPTIONS=0
-- C_FLAGS: /MP /Gy /GR- /Zi /W4 /WX /wd"4100" /wd"4127" /wd"4244" /wd"4512" /wd"4701" /wd"4702" /wd"4996"
-- C_FLAGS_DEBUG: /MTd /RTC1 /Od
-- C_FLAGS_RELEASE: /MT /O2 /Ob2 /GF /D NDEBUG /D _NDEBUG
-- CXX_FLAGS: /MP /Gy /GR- /Zi /W4 /WX /wd"4100" /wd"4127" /wd"4244" /wd"4512" /wd"4701" /wd"4702" /wd"4996"
-- CXX_FLAGS_DEBUG: /MTd /RTC1 /Od
-- CXX_FLAGS_RELEASE: /MT /O2 /Ob2 /GF /D NDEBUG /D _NDEBUG
-- EXE_LINKER_FLAGS: /MANIFEST:NO
-- EXE_LINKER_FLAGS_DEBUG: /DEBUG
-- EXE_LINKER_FLAGS_RELEASE:
-- SHARED_LINKER_FLAGS:
-- SHARED_LINKER_FLAGS_DEBUG: /DEBUG
-- SHARED_LINKER_FLAGS_RELEASE:
-- CEF Binary files: d3dcompiler_43.dll;d3dcompiler_47.dll;libcef.dll;libEGL.dll;libGLESv2.dll;natives_blob.bin;snapshot_blob.bin;wow_helper.exe
-- CEF Resource files: cef.pak;cef_100_percent.pak;cef_200_percent.pak;cef_extensions.pak;devtools_resources.pak;icudtl.dat;locales
-- Configuring done
-- Generating done
-- Build files have been written to: /home/marek/Desktop/cef-win32/build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment