X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=tests%2Frun-make%2Fnative-link-modifier-bundle%2FMakefile;h=e8a1121bfcd975c1023de411450ab6f200e0bc40;hb=dc3e59cb3fe05ebd752d3a2269f501c00327be22;hp=7c78d7783e0b6dbe9e29c95f2c562299c7489c78;hpb=db8301b7f873114ab95ce27bd8e9c4ab476cb458;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