mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
27 lines
1 KiB
INI
27 lines
1 KiB
INI
|
[constants]
|
||
|
# Forcibly link to x64 libs when using native linker, otherwise the LIB
|
||
|
# variable in the env will cause link.exe to pick up libs from the cross
|
||
|
# msvc libdir. A better fix might be to use a wrapper script that calls
|
||
|
# link.exe inside the correct VS environment for x64.
|
||
|
msvc_x64_libs = [msvc_x64_libdir / 'msvcrt.lib', msvc_x64_libdir / 'msvcrtd.lib', msvc_x64_libdir / 'vcruntime.lib', msvc_x64_libdir / 'oldnames.lib', wk_x64_crt_libdir / 'ucrt.lib']
|
||
|
|
||
|
[host_machine]
|
||
|
system = 'windows'
|
||
|
cpu_family = 'x86_64'
|
||
|
cpu = 'x86_64'
|
||
|
endian = 'little'
|
||
|
|
||
|
[built-in options]
|
||
|
# Ensure that x64 libs are used for linking even when we're inside, say, an
|
||
|
# arm64 VS environment
|
||
|
c_link_args = ['/LIBPATH:' + wk_x64_libdir] + msvc_x64_libs
|
||
|
cpp_link_args = ['/LIBPATH:' + wk_x64_libdir] + msvc_x64_libs
|
||
|
|
||
|
[binaries]
|
||
|
lib = msvc_x64_bindir / 'lib.exe'
|
||
|
c = msvc_x64_bindir / 'cl.exe'
|
||
|
c_ld = msvc_x64_bindir / 'link.exe'
|
||
|
cpp = msvc_x64_bindir / 'cl.exe'
|
||
|
cpp_ld = msvc_x64_bindir / 'link.exe'
|
||
|
pkgconfig = 'false'
|