Don't pass --target in cargo.sh
This was a workaround for compiling proc macros resulting in an abi incompatibility. By passing --target proc macros will be built by the llvm backend. This is no longer necessary as the abi incompatibility has since been fixed.
This commit is contained in:
parent
39683d8eb7
commit
590bfc670a
1 changed files with 1 additions and 1 deletions
2
cargo.sh
2
cargo.sh
|
@ -20,4 +20,4 @@ fi
|
|||
cmd=$1
|
||||
shift
|
||||
|
||||
RUSTDOCFLAGS="$RUSTFLAGS" cargo +${TOOLCHAIN} $cmd --target $TARGET_TRIPLE $@
|
||||
RUSTDOCFLAGS="$RUSTFLAGS" cargo +${TOOLCHAIN} $cmd $@
|
||||
|
|
Loading…
Add table
Reference in a new issue