Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

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

Lines changed: 1 addition & 1 deletion
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)