We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551dded commit 7921843Copy full SHA for 7921843
rvv-intrinsic-generator/Makefile.api
@@ -13,6 +13,7 @@
13
# See the License for the specific language governing permissions and
14
# limitations under the License.
15
###############################################################################
16
+SHELL := /bin/bash
17
18
CFLAGS?=-O -Werror=implicit-function-declaration -menable-experimental-extensions
19
ARCH_FLAG?=-march=rv64gcv_zfh_zvbb_zvbc_zvfbfmin_zvfbfwma_zvfh_zvkng_zvksg_zvl512b
@@ -39,4 +40,6 @@ clean:
39
40
rm -f test_report.xml
41
42
%.log: $(BASE_DIR)/%.c
- -$(CC) $< -S -o /dev/null $(ARCH_FLAG) $(CFLAGS) $(EXTRA_CFLAGS) &> $@
43
+ @echo "Testing $<..."
44
+ -bash -c "$(CC) $< -S -o /dev/null $(ARCH_FLAG) $(CFLAGS) $(EXTRA_CFLAGS)" > $@ 2>&1
45
+ @echo "Completed testing $< (log size: $$(wc -c < $@))"
0 commit comments