51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
$NetBSD: patch-xpcom_reflect_xptcall_md_unix_Makefile.in,v 1.3 2016/06/16 12:08:21 ryoon Exp $
|
|
|
|
* Support NetBSD/sparc64
|
|
|
|
--- xpcom/reflect/xptcall/md/unix/Makefile.in.orig 2015-08-24 21:53:22.000000000 +0000
|
|
+++ xpcom/reflect/xptcall/md/unix/Makefile.in
|
|
@@ -42,6 +42,43 @@ ifeq ($(OS_ARCH),AIX)
|
|
CXXFLAGS := $(filter-out $(MOZ_OPTIMIZE_FLAGS), $(CXXFLAGS))
|
|
endif
|
|
|
|
+######################################################################
|
|
+# SPARC
|
|
+######################################################################
|
|
+#
|
|
+# Linux/SPARC
|
|
+#
|
|
+ifeq ($(OS_ARCH),Linux)
|
|
+ifneq (,$(findstring sparc,$(OS_TEST)))
|
|
+ASFILES := xptcinvoke_asm_sparc_linux_GCC3.s xptcstubs_asm_sparc_solaris.s
|
|
+endif
|
|
+endif
|
|
+#
|
|
+# NetBSD/SPARC
|
|
+#
|
|
+ifeq ($(OS_ARCH)$(OS_TEST),NetBSDsparc)
|
|
+ASFILES := xptcinvoke_asm_sparc_netbsd.s xptcstubs_asm_sparc_netbsd.s
|
|
+endif
|
|
+#
|
|
+# OpenBSD/SPARC
|
|
+#
|
|
+ifeq ($(OS_ARCH)$(OS_TEST),OpenBSDsparc)
|
|
+ASFILES := xptcinvoke_asm_sparc_openbsd.s xptcstubs_asm_sparc_openbsd.s
|
|
+endif
|
|
+#
|
|
+# OpenBSD/SPARC64
|
|
+#
|
|
+ifneq (,$(filter OpenBSDsparc64 FreeBSDsparc64,$(OS_ARCH)$(OS_TEST)))
|
|
+ASFILES := xptcinvoke_asm_sparc64_openbsd.s xptcstubs_asm_sparc64_openbsd.s
|
|
+endif
|
|
+#
|
|
+# NetBSD/SPARC64
|
|
+#
|
|
+ifeq ($(OS_ARCH)$(OS_TEST),NetBSDsparc64)
|
|
+CPPSRCS := xptcinvoke_sparc64_netbsd.cpp xptcstubs_sparc64_openbsd.cpp
|
|
+ASFILES := xptcinvoke_asm_sparc64_openbsd.s xptcstubs_asm_sparc64_netbsd.s
|
|
+endif
|
|
+
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
ifeq ($(OS_ARCH),Linux)
|