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 fda9784 commit c7c04f8Copy full SHA for c7c04f8
ci/env.sh
@@ -1,9 +1,13 @@
1
case $TRAVIS_OS_NAME in
2
linux)
3
export HOST=x86_64-unknown-linux-gnu
4
+ export NM=nm
5
+ export OBJDUMP=objdump
6
;;
7
osx)
8
export HOST=x86_64-apple-darwin
9
+ export NM=gnm
10
+ export OBJDUMP=gobjdump
11
12
esac
13
ci/script.sh
@@ -17,10 +17,10 @@ run_tests() {
17
}
18
19
inspect() {
20
- ${PREFIX}nm -g target/**/debug/*.rlib
+ $PREFIX$NM -g --defined-only target/**/debug/*.rlib
21
set +e
22
- ${PREFIX}objdump -Cd target/**/debug/*.rlib
23
- ${PREFIX}objdump -Cd target/**/release/*.rlib
+ $PREFIX$OBJDUMP -Cd target/**/debug/*.rlib
+ $PREFIX$OBJDUMP -Cd target/**/release/*.rlib
24
set -e
25
26
0 commit comments