don't use a *-tcc to compile *.S files for ARM*

A tcc for ARM* don't have an assembler. This is partial reverse of the commit
  build-libtcc1-by-tcc: use a new tcc to compile a libtcc1.c and alloca.S
master
seyko 2015-03-10 13:54:12 +03:00
parent 87ec08ecc8
commit 896a0c881a
1 changed files with 2 additions and 0 deletions

View File

@ -21,9 +21,11 @@ ifndef TARGET # native library
else
ifeq ($(ARCH),arm)
TARGET = arm
XCC = $(CC)
else
ifeq ($(ARCH),arm64)
TARGET = arm64
XCC = $(CC)
else
endif
endif