Milestone 5: deliver embedded RDP sessions and lifecycle hardening
This commit is contained in:
15
third_party/FreeRDP/docs/mingw-example/toolchain/cmake/aarch64-w64-mingw32-toolchain.cmake
vendored
Normal file
15
third_party/FreeRDP/docs/mingw-example/toolchain/cmake/aarch64-w64-mingw32-toolchain.cmake
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
set(CMAKE_C_COMPILER aarch64-w64-mingw32-gcc)
|
||||
set(CMAKE_CXX_COMPILER aarch64-w64-mingw32-g++)
|
||||
set(CMAKE_FIND_ROOT_PATH /usr/aarch64-w64-mingw32)
|
||||
|
||||
execute_process(COMMAND which aarch64-w64-mingw32-windres OUTPUT_VARIABLE TOOLCHAIN_RC_COMPILER)
|
||||
execute_process(COMMAND which aarch64-w64-mingw32-dlltool OUTPUT_VARIABLE TOOLCHAIN_DLLTOOL)
|
||||
|
||||
string(STRIP ${TOOLCHAIN_RC_COMPILER} TOOLCHAIN_RC_COMPILER)
|
||||
set(CMAKE_RC_COMPILER ${TOOLCHAIN_RC_COMPILER})
|
||||
|
||||
string(STRIP ${TOOLCHAIN_DLLTOOL} TOOLCHAIN_DLLTOOL)
|
||||
set(DLLTOOL ${TOOLCHAIN_DLLTOOL})
|
||||
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||
set(CMAKE_SYSTEM_NAME Windows)
|
||||
15
third_party/FreeRDP/docs/mingw-example/toolchain/cmake/i686-w64-mingw32-toolchain.cmake
vendored
Normal file
15
third_party/FreeRDP/docs/mingw-example/toolchain/cmake/i686-w64-mingw32-toolchain.cmake
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
set(CMAKE_C_COMPILER i686-w64-mingw32-gcc)
|
||||
set(CMAKE_CXX_COMPILER i686-w64-mingw32-g++)
|
||||
set(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32)
|
||||
|
||||
execute_process(COMMAND which i686-w64-mingw32-windres OUTPUT_VARIABLE TOOLCHAIN_RC_COMPILER)
|
||||
execute_process(COMMAND which i686-w64-mingw32-dlltool OUTPUT_VARIABLE TOOLCHAIN_DLLTOOL)
|
||||
|
||||
string(STRIP ${TOOLCHAIN_RC_COMPILER} TOOLCHAIN_RC_COMPILER)
|
||||
set(CMAKE_RC_COMPILER ${TOOLCHAIN_RC_COMPILER})
|
||||
|
||||
string(STRIP ${TOOLCHAIN_DLLTOOL} TOOLCHAIN_DLLTOOL)
|
||||
set(DLLTOOL ${TOOLCHAIN_DLLTOOL})
|
||||
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||
set(CMAKE_SYSTEM_NAME Windows)
|
||||
15
third_party/FreeRDP/docs/mingw-example/toolchain/cmake/x86_64-w64-mingw32-toolchain.cmake
vendored
Normal file
15
third_party/FreeRDP/docs/mingw-example/toolchain/cmake/x86_64-w64-mingw32-toolchain.cmake
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
|
||||
set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
|
||||
set(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32)
|
||||
|
||||
execute_process(COMMAND which x86_64-w64-mingw32-windres OUTPUT_VARIABLE TOOLCHAIN_RC_COMPILER)
|
||||
execute_process(COMMAND which x86_64-w64-mingw32-dlltool OUTPUT_VARIABLE TOOLCHAIN_DLLTOOL)
|
||||
|
||||
string(STRIP ${TOOLCHAIN_RC_COMPILER} TOOLCHAIN_RC_COMPILER)
|
||||
set(CMAKE_RC_COMPILER ${TOOLCHAIN_RC_COMPILER})
|
||||
|
||||
string(STRIP ${TOOLCHAIN_DLLTOOL} TOOLCHAIN_DLLTOOL)
|
||||
set(DLLTOOL ${TOOLCHAIN_DLLTOOL})
|
||||
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||
set(CMAKE_SYSTEM_NAME Windows)
|
||||
15
third_party/FreeRDP/docs/mingw-example/toolchain/meson/aarch64.txt
vendored
Normal file
15
third_party/FreeRDP/docs/mingw-example/toolchain/meson/aarch64.txt
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
[binaries]
|
||||
c = 'aarch64-w64-mingw32-gcc'
|
||||
cpp = 'aarch64-w64-mingw32-g++'
|
||||
ar = 'aarch64-w64-mingw32-ar'
|
||||
ld = 'aarch64-w64-mingw32-ld'
|
||||
strip = 'aarch64-w64-mingw32-strip'
|
||||
|
||||
[host_machine]
|
||||
system = 'windows'
|
||||
cpu_family = 'aarch64'
|
||||
cpu = 'native'
|
||||
endian = 'little'
|
||||
|
||||
[properties]
|
||||
platform = 'generic_aarch64'
|
||||
16
third_party/FreeRDP/docs/mingw-example/toolchain/meson/i686.txt
vendored
Normal file
16
third_party/FreeRDP/docs/mingw-example/toolchain/meson/i686.txt
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
[binaries]
|
||||
c = 'i686-w64-mingw32-gcc'
|
||||
cpp = 'i686-w64-mingw32-g++'
|
||||
ar = 'i686-w64-mingw32-ar'
|
||||
ld = 'i686-w64-mingw32-ld'
|
||||
strip = 'i686-w64-mingw32-strip'
|
||||
|
||||
[host_machine]
|
||||
system = 'windows'
|
||||
cpu_family = 'x86'
|
||||
cpu = 'native'
|
||||
endian = 'little'
|
||||
|
||||
[properties]
|
||||
c_args = '-mno-avx512f'
|
||||
cpp_args = '-mno-avx512f'
|
||||
16
third_party/FreeRDP/docs/mingw-example/toolchain/meson/x86_64.txt
vendored
Normal file
16
third_party/FreeRDP/docs/mingw-example/toolchain/meson/x86_64.txt
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
[binaries]
|
||||
c = 'x86_64-w64-mingw32-gcc'
|
||||
cpp = 'x86_64-w64-mingw32-g++'
|
||||
ar = 'x86_64-w64-mingw32-ar'
|
||||
ld = 'x86_64-w64-mingw32-ld'
|
||||
strip = 'x86_64-w64-mingw32-strip'
|
||||
|
||||
[host_machine]
|
||||
system = 'windows'
|
||||
cpu_family = 'x86_64'
|
||||
cpu = 'native'
|
||||
endian = 'little'
|
||||
|
||||
[properties]
|
||||
c_args = '-mno-avx512f'
|
||||
cpp_args = '-mno-avx512f'
|
||||
Reference in New Issue
Block a user