aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/libdrm/cross-build-nm-path.patch
blob: 547ef0d096915ce5ea3aebc3781d42728d892fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
From 9e05fece7918edce9c6aa5a1f1ea375108e5b2be Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
Date: Fri, 2 Aug 2019 10:26:37 +0100
Subject: [PATCH] meson: support for custom nm path
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When cross-compiling target toolchains i.e. binutils are often
prefixed by its target architecture. This patch gives the user
to option to specify the nm used during the build process.

Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
---
 meson.build       | 2 +-
 meson_options.txt | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
--- meson.build.orig	2020-06-18 11:13:57.716321962 +0200
+++ meson.build	2020-06-18 11:19:50.456861311 +0200
@@ -45,7 +45,7 @@
 cc = meson.get_compiler('c')

 symbols_check = find_program('symbols-check.py')
-prog_nm = find_program('nm')
+prog_nm = find_program(get_option('nm-path'))

 # Check for atomics
 intel_atomics = false
diff --git a/meson_options.txt b/meson_options.txt
index 8af33f1c..b4f46a52 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -141,3 +141,9 @@ option(
   value : false,
   description : 'Enable support for using udev instead of mknod.',
 )
+option(
+  'nm-path',
+  type : 'string',
+  description : 'path to nm',
+  value : 'nm'
+)
-- 
2.22.0