* Enabled compilation of the cpu unit for arm-android and x86_64-android.

git-svn-id: trunk@39971 -
This commit is contained in:
yury 2018-10-18 13:01:36 +00:00
parent aa6f6423b2
commit 9199d1935a
2 changed files with 8 additions and 2 deletions

View File

@ -343,8 +343,11 @@ UNITPREFIX=rtl
CPU_UNITS=
SYSINIT_UNITS=
LOADERS=prt0 dllprt0
ifeq ($(findstring $(ARCH),i386 x86_64 arm),$(ARCH))
CPU_UNITS=cpu
endif
ifeq ($(ARCH),i386)
CPU_UNITS=cpu mmx
CPU_UNITS+=mmx
endif
SYSTEMUNIT=system
ifdef RELEASE

View File

@ -65,8 +65,11 @@ SYSINIT_UNITS=
LOADERS=prt0 dllprt0
ifeq ($(findstring $(ARCH),i386 x86_64 arm),$(ARCH))
CPU_UNITS=cpu
endif
ifeq ($(ARCH),i386)
CPU_UNITS=cpu mmx
CPU_UNITS+=mmx
endif
SYSTEMUNIT=system