diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-11-21 10:48:58 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2018-11-21 10:48:58 -0800 |
| commit | 1af471e00b32a849703b366962a594faf5e5d2b1 (patch) | |
| tree | 92e62768fac8836fbc50960527f6af8024faec04 /library/compiler-builtins/ci/run.sh | |
| parent | 9fdc957019b94922c303071945fac62c4ee50079 (diff) | |
| download | rust-1af471e00b32a849703b366962a594faf5e5d2b1.tar.gz rust-1af471e00b32a849703b366962a594faf5e5d2b1.zip | |
Use `nm` on OSX
Looks like it may be fixed now?
Diffstat (limited to 'library/compiler-builtins/ci/run.sh')
| -rwxr-xr-x | library/compiler-builtins/ci/run.sh | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/library/compiler-builtins/ci/run.sh b/library/compiler-builtins/ci/run.sh index 8c85038f97a..b77752288d9 100755 --- a/library/compiler-builtins/ci/run.sh +++ b/library/compiler-builtins/ci/run.sh @@ -64,18 +64,7 @@ case $1 in ;; esac -case "$TRAVIS_OS_NAME" in - osx) - # NOTE OSx's nm doesn't accept the `--defined-only` or provide an equivalent. - # Use GNU nm instead - NM=gnm - brew update - brew install binutils - ;; - *) - NM=nm - ;; -esac +NM=nm if [ -d /target ]; then path=/target/${1}/debug/deps/libcompiler_builtins-*.rlib |
