X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=tests%2Frun-make%2Fnative-link-modifier-bundle%2FMakefile;h=e8a1121bfcd975c1023de411450ab6f200e0bc40;hb=480c4a18d524a2cddd194fcf9a1bfdd6b7610656;hp=7c78d7783e0b6dbe9e29c95f2c562299c7489c78;hpb=4887cb18dc2ef5b1bf3fc50ce6c267fde085032b;p=rust.git diff --git a/tests/run-make/native-link-modifier-bundle/Makefile b/tests/run-make/native-link-modifier-bundle/Makefile index 7c78d7783e0..e8a1121bfcd 100644 --- a/tests/run-make/native-link-modifier-bundle/Makefile +++ b/tests/run-make/native-link-modifier-bundle/Makefile @@ -5,7 +5,12 @@ include ../../run-make-fulldeps/tools.mk # We're using the llvm-nm instead of the system nm to ensure it is compatible # with the LLVM bitcode generated by rustc. +# Except on Windows where piping/IO redirection under MSYS2 is wonky with llvm-nm. +ifndef IS_WINDOWS NM = "$(LLVM_BIN_DIR)"/llvm-nm +else +NM = nm +endif all: $(call NATIVE_STATICLIB,native-staticlib) # Build a staticlib and a rlib, the `native_func` symbol will be bundled into them