aboutsummaryrefslogtreecommitdiff
path: root/isa/Makefile
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2017-03-09 12:43:54 -0800
committerAndrew Waterman <andrew@sifive.com>2017-03-09 12:43:54 -0800
commitdb0b30ac92e3f5b639d0a9eda73e20cddc4e85a9 (patch)
treee1f5db1f4fae8935891f19ec88e4e2ddcfe4e483 /isa/Makefile
parentfa02d39baff17799670a15975388c8e563c1a780 (diff)
downloadriscv-tests-db0b30ac92e3f5b639d0a9eda73e20cddc4e85a9.zip
riscv-tests-db0b30ac92e3f5b639d0a9eda73e20cddc4e85a9.tar.gz
riscv-tests-db0b30ac92e3f5b639d0a9eda73e20cddc4e85a9.tar.bz2
Don't link ISA tests against libc
Diffstat (limited to 'isa/Makefile')
-rw-r--r--isa/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/isa/Makefile b/isa/Makefile
index 3ed1b60..89c2ef9 100644
--- a/isa/Makefile
+++ b/isa/Makefile
@@ -55,7 +55,7 @@ $$($(1)_p_tests): $(1)-p-%: $(1)/%.S
$(1)_tests += $$($(1)_p_tests)
$$($(1)_v_tests): $(1)-v-%: $(1)/%.S
- $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -DENTROPY=0x$$(shell echo \$$@ | md5sum | cut -c 1-7) -std=gnu99 -O2 -I$(src_dir)/../env/v -I$(src_dir)/macros/scalar -T$(src_dir)/../env/v/link.ld $(src_dir)/../env/v/entry.S $(src_dir)/../env/v/*.c $$< -lc -o $$@
+ $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -DENTROPY=0x$$(shell echo \$$@ | md5sum | cut -c 1-7) -std=gnu99 -O2 -I$(src_dir)/../env/v -I$(src_dir)/macros/scalar -T$(src_dir)/../env/v/link.ld $(src_dir)/../env/v/entry.S $(src_dir)/../env/v/*.c $$< -o $$@
$(1)_tests += $$($(1)_v_tests)
$(1)_tests_dump = $$(addsuffix .dump, $$($(1)_tests))