We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86724bc commit 1d98eeaCopy full SHA for 1d98eea
build_scripts/desktop/package.sh
@@ -199,7 +199,11 @@ readonly rename_string=f_b_
199
200
readonly demangle_cmds=${tools_path}/c++filt,${tools_path}/demumble
201
readonly binutils_objcopy=${tools_path}/objcopy
202
-readonly binutils_nm=${tools_path}/nm
+if [[ -x ${tools_path}/nm-new ]] ;; then
203
+ readonly binutils_nm=${tools_path}/nm-new
204
+else
205
+ readonly binutils_nm=${tools_path}/nm
206
+fi
207
readonly binutils_ar=${tools_path}/ar
208
209
cache_file=/tmp/merge_libraries_cache.$$
0 commit comments