| Index: Makefile.standalone
|
| diff --git a/Makefile.standalone b/Makefile.standalone
|
| index 6c976e4f4b56c6eeaccffede1bdc760b73120bff..49ecc6bfde86a4c0c49260f2f7b8ee20879361b9 100644
|
| --- a/Makefile.standalone
|
| +++ b/Makefile.standalone
|
| @@ -367,10 +367,15 @@ $(OBJDIR)/unittest/AssemblerX8632: $(OBJDIR)/unittest
|
| $(OBJDIR)/unittest/AssemblerX8664: $(OBJDIR)/unittest
|
| @mkdir -p $@
|
|
|
| -RT_SRC := runtime/szrt.c runtime/szrt_ll.ll runtime/szrt_profiler.c
|
| +RT_SRC := runtime/szrt.c runtime/szrt_ll.ll runtime/szrt_profiler.c \
|
| + runtime/szrt_asm_x8632.s runtime/szrt_asm_x8664.s \
|
| + runtime/szrt_asm_arm32.s
|
| RT_OBJ := build/runtime/szrt_native_x8632.o build/runtime/szrt_sb_x8632.o \
|
| + build/runtime/szrt_nonsfi_x8632.o \
|
| build/runtime/szrt_native_x8664.o build/runtime/szrt_sb_x8664.o \
|
| - build/runtime/szrt_native_arm32.o build/runtime/szrt_sb_arm32.o
|
| + build/runtime/szrt_nonsfi_x8664.o \
|
| + build/runtime/szrt_native_arm32.o build/runtime/szrt_sb_arm32.o \
|
| + build/runtime/szrt_nonsfi_arm32.o
|
|
|
| runtime: $(RT_OBJ)
|
|
|
|
|