]> git.lizzy.rs Git - rust.git/blobdiff - tests/run-make/native-link-modifier-bundle/Makefile
Auto merge of #107443 - cjgillot:generator-less-query, r=compiler-errors
[rust.git] / tests / run-make / native-link-modifier-bundle / Makefile
index 7c78d7783e0b6dbe9e29c95f2c562299c7489c78..e8a1121bfcd975c1023de411450ab6f200e0bc40 100644 (file)
@@ -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