Skip to content

Commit 590bfc6

Browse files
committed
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.
1 parent 39683d8 commit 590bfc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cargo.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ fi
2020
cmd=$1
2121
shift
2222

23-
RUSTDOCFLAGS="$RUSTFLAGS" cargo +${TOOLCHAIN} $cmd --target $TARGET_TRIPLE $@
23+
RUSTDOCFLAGS="$RUSTFLAGS" cargo +${TOOLCHAIN} $cmd $@

0 commit comments

Comments
 (0)