1
Fork 0

Fix run-make/simd-ffi to work with parallel make check.

This commit is contained in:
Ryan Prichard 2015-04-17 04:58:47 -07:00
parent b7ab2aeebd
commit d57fc92949

View file

@ -27,7 +27,8 @@ define MK_TARGETS
# on some platforms, but LLVM just prints a warning so that's fine for
# now.
$(1): simd.rs
$$(RUSTC) --target=$(1) --emit=llvm-ir,asm simd.rs -C target-feature='+neon,+sse2'
$$(RUSTC) --target=$(1) --emit=llvm-ir,asm simd.rs \
-C target-feature='+neon,+sse2' -C extra-filename=-$(1)
endef
$(foreach targetxxx,$(TARGETS),$(eval $(call MK_TARGETS,$(targetxxx))))