diff options
| author | Peter Collingbourne <pcc@google.com> | 2023-04-21 18:32:17 -0700 |
|---|---|---|
| committer | Peter Collingbourne <pcc@google.com> | 2023-04-21 18:38:17 -0700 |
| commit | fa3515679b9554b4ab2820ca50eacc0bd8a30ed3 (patch) | |
| tree | 678418978c165afdb9df45e9911ce90f44b5444c | |
| parent | fa4cc63a6bd6f32903269e52b8f59b284d0e76c4 (diff) | |
| download | rust-fa3515679b9554b4ab2820ca50eacc0bd8a30ed3.tar.gz rust-fa3515679b9554b4ab2820ca50eacc0bd8a30ed3.zip | |
pointer-auth-link-with-c: Fix cross compilation.
| -rw-r--r-- | tests/run-make/pointer-auth-link-with-c/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-make/pointer-auth-link-with-c/Makefile b/tests/run-make/pointer-auth-link-with-c/Makefile index 7acea03802c..dffbd303582 100644 --- a/tests/run-make/pointer-auth-link-with-c/Makefile +++ b/tests/run-make/pointer-auth-link-with-c/Makefile @@ -5,10 +5,10 @@ include ../tools.mk all: $(COMPILE_OBJ) $(TMPDIR)/test.o test.c $(AR) rcs $(TMPDIR)/libtest.a $(TMPDIR)/test.o - $(RUSTC) -Z branch-protection=bti,pac-ret,leaf test.rs + $(RUSTC) --target $(TARGET) -Z branch-protection=bti,pac-ret,leaf test.rs $(call RUN,test) $(COMPILE_OBJ) $(TMPDIR)/test.o test.c -mbranch-protection=bti+pac-ret+leaf $(AR) rcs $(TMPDIR)/libtest.a $(TMPDIR)/test.o - $(RUSTC) -Z branch-protection=bti,pac-ret,leaf test.rs + $(RUSTC) --target $(TARGET) -Z branch-protection=bti,pac-ret,leaf test.rs $(call RUN,test) |
