mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
673b742751
Needed an update to the windows Dockerfile to: 1. Install the 'UniversalBuildTools' workload for Cerbero 2. Install ARM and ARM64 workloads for cross-uwp-universal in Cerbero 3. Install VS 2019 since we need that for ARM64 NEON support in Opus We can't test UWP in gstreamer.git because glib needs custom patches for that. It will be tested in Cerbero. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1570>
23 lines
610 B
Text
23 lines
610 B
Text
[constants]
|
|
vs_path = 'C:\BuildTools'
|
|
msvc_version = '14.29.30133'
|
|
msvc_version_dir = vs_path / 'VC\Tools\MSVC' / msvc_version
|
|
msvc_arm64_bindir = msvc_version_dir / 'bin\Hostx64\arm64'
|
|
msvc_arm64_libdir = msvc_version_dir / 'lib\arm64'
|
|
|
|
[host_machine]
|
|
system = 'windows'
|
|
cpu_family = 'aarch64'
|
|
cpu = 'aarch64'
|
|
endian = 'little'
|
|
|
|
[properties]
|
|
needs_exe_wrapper = true
|
|
|
|
[binaries]
|
|
lib = msvc_arm64_bindir / 'lib.exe'
|
|
c = msvc_arm64_bindir / 'cl.exe'
|
|
c_ld = msvc_arm64_bindir / 'link.exe'
|
|
cpp = msvc_arm64_bindir / 'cl.exe'
|
|
cpp_ld = msvc_arm64_bindir / 'link.exe'
|
|
pkgconfig = 'false'
|