[dpdk-dev] [PATCH 2/3] config/x86: don't use absolute paths for MinGW-w64 cross toolchain
Dmitry Kozlyuk
dmitry.kozliuk at gmail.com
Sun Jun 21 00:35:43 CEST 2020
Absolute paths in Meson cross-file impose unnecessary limitation
on build environment, remove them.
Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk at gmail.com>
---
config/x86/meson_mingw.txt | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/config/x86/meson_mingw.txt b/config/x86/meson_mingw.txt
index fac33cfcd..4c15a7fa2 100644
--- a/config/x86/meson_mingw.txt
+++ b/config/x86/meson_mingw.txt
@@ -1,10 +1,10 @@
[binaries]
-c = '/usr/bin/x86_64-w64-mingw32-gcc'
-cpp = '/usr/bin/x86_64-w64-mingw32-g++'
-ld = '/usr/bin/x86_64-w64-mingw32-ld'
-ar = '/usr/bin/x86_64-w64-mingw32-ar'
-strip = '/usr/bin/x86_64-w64-mingw32-strip'
-pkgconfig = '/usr/bin/x86_64-w64-mingw32-pkg-config'
+c = 'x86_64-w64-mingw32-gcc'
+cpp = 'x86_64-w64-mingw32-g++'
+ld = 'x86_64-w64-mingw32-ld'
+ar = 'x86_64-w64-mingw32-ar'
+strip = 'x86_64-w64-mingw32-strip'
+pkgconfig = 'x86_64-w64-mingw32-pkg-config'
[host_machine]
system = 'windows'
--
2.25.4
More information about the dev
mailing list