Bug 963024 - AArch64 support for XPCOM. r=froydnj

This commit is contained in:
Marcin Juszkiewicz 2014-02-18 15:41:22 -05:00
parent 97afa6dc6b
commit 30a2f23580
2 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,9 @@ CXXFLAGS += -O2
endif
endif
ifeq ($(OS_TEST),aarch64)
ASFILES := xptcinvoke_asm_aarch64.s xptcstubs_asm_aarch64.s
endif
######################################################################
# HPPA
######################################################################

View File

@ -149,6 +149,11 @@ if CONFIG['OS_ARCH'] == 'NetBSD':
]
if CONFIG['OS_ARCH'] == 'Linux':
if CONFIG['OS_TEST'] == 'aarch64':
SOURCES += [
'xptcinvoke_aarch64.cpp',
'xptcstubs_aarch64.cpp',
]
if CONFIG['OS_TEST'] == 'm68k':
SOURCES += [
'xptcinvoke_linux_m68k.cpp',