aboutsummaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-12-02 12:25:31 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-12-02 12:25:31 +0100
commit73a83b969dbb6f4c419ebdcc663f463509b6d6e3 (patch)
tree259852cd3272f2f31a09d75ac24e31ec1aaa8d9e /runtime
parent3570ba2827908b280315c922ba7e43289f6d802a (diff)
parent035a1a9f4b636206acbae4506c5fc4ef322de0c1 (diff)
downloadcompcert-kvx-73a83b969dbb6f4c419ebdcc663f463509b6d6e3.tar.gz
compcert-kvx-73a83b969dbb6f4c419ebdcc663f463509b6d6e3.zip
Merge remote-tracking branch 'origin/kvx-work' into kvx-better2-cse3
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
index ea3c914f..6f70fa87 100644
--- a/runtime/Makefile
+++ b/runtime/Makefile
@@ -38,6 +38,8 @@ OBJS=i64_dtos.o i64_dtou.o i64_sar.o i64_sdiv.o i64_shl.o \
vararg.o
endif
+AR=ar
+
OBJS+=write_profiling_table.o
LIB=libcompcert.a
@@ -59,7 +61,7 @@ endif
$(LIB): $(OBJS)
rm -f $(LIB)
- ar rcs $(LIB) $(OBJS)
+ $(AR) rcs $(LIB) $(OBJS)
%.o: %.s
$(CASMRUNTIME) -o $@ $^