Skip to content

Commit

Permalink
Clean up gcc_version
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Nov 17, 2020
1 parent 5e4f58b commit fb6fc3c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
6 changes: 1 addition & 5 deletions build/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,7 @@ install_linux_dependencies() {
configure_cargo() {
local prefix=$(gcc_prefix)
if [ -n "${prefix}" ]; then
local gcc_suffix=
# if [ -n "$GCC_VERSION" ]; then
# gcc_suffix="-$GCC_VERSION"
# fi
local gcc="${prefix}gcc${gcc_suffix}"
local gcc="${prefix}gcc"

# information about the cross compiler
"${gcc}" -v
Expand Down
2 changes: 0 additions & 2 deletions build/linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
parameters:
target: ''
gcc_version: ''
rust_version: 'stable'
repo: ''
tag: ''
Expand All @@ -19,7 +18,6 @@ steps:
env:
RUST_VERSION: ${{ parameters.rust_version }}
TARGET: ${{ parameters.target }}
GCC_VERSION: ${{ parameters.gcc_version }}
- script: |
sudo xcode-select -s /Applications/Xcode_12.2.app
displayName: Switch to Xcode 12
Expand Down
2 changes: 0 additions & 2 deletions build/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,13 @@ jobs:
- template: linux.yml
parameters:
target: arm-unknown-linux-gnueabihf
gcc_version: 4.8
- job: linux_aarch64
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: linux.yml
parameters:
target: aarch64-unknown-linux-gnu
gcc_version: 4.8
- job: macOS
pool:
vmImage: macOS-latest
Expand Down

0 comments on commit fb6fc3c

Please sign in to comment.