Commit 1f8d7070 authored by Max Kellermann's avatar Max Kellermann

python/build/meson.py: use toolchain.libs (for libc++)

parent 9b1f44e7
...@@ -65,9 +65,9 @@ endian = '%s' ...@@ -65,9 +65,9 @@ endian = '%s'
windres, windres,
toolchain.install_prefix, toolchain.install_prefix,
repr((toolchain.cppflags + ' ' + toolchain.cflags).split()), repr((toolchain.cppflags + ' ' + toolchain.cflags).split()),
repr(toolchain.ldflags.split()), repr(toolchain.ldflags.split() + toolchain.libs.split()),
repr((toolchain.cppflags + ' ' + toolchain.cxxflags).split()), repr((toolchain.cppflags + ' ' + toolchain.cxxflags).split()),
repr(toolchain.ldflags.split()), repr(toolchain.ldflags.split() + toolchain.libs.split()),
system, cpu_family, cpu, endian)) system, cpu_family, cpu, endian))
return path return path
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment