Skip to content
Snippets Groups Projects
Commit d86471cb authored by Alex Crichton's avatar Alex Crichton
Browse files

Only install gcc-multilib when necessary

parent d9962f4b
No related branches found
No related tags found
No related merge requests found
......@@ -34,10 +34,6 @@ matrix:
- os: linux
env: TARGET=aarch64-unknown-linux-gnu
rust: nightly-2015-09-08
addons:
apt:
packages:
- gcc-multilib
notifications:
email:
on_success: never
......
......@@ -57,6 +57,10 @@ else
# clang has better error messages and implements alignof more broadly
export CC=clang
if [ "$TARGET" = "i686-unknown-linux-gnu" ]; then
sudo apt-get install gcc-multilib
fi
fi
mkdir .cargo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment