svn commit: r280437 - head/contrib/gcc/config/aarch64

Andrew Turner andrew at FreeBSD.org
Tue Mar 24 14:23:00 UTC 2015


Author: andrew
Date: Tue Mar 24 14:22:58 2015
New Revision: 280437
URL: https://svnweb.freebsd.org/changeset/base/280437

Log:
  Adda minimal gcc config. This is just enough to build the bits of csu we
  get from gcc, and libgcc_eh.
  
  Sponsored by:	The FreeBSD Foundation

Added:
  head/contrib/gcc/config/aarch64/
  head/contrib/gcc/config/aarch64/aarch64.h   (contents, props changed)
  head/contrib/gcc/config/aarch64/freebsd.h   (contents, props changed)

Added: head/contrib/gcc/config/aarch64/aarch64.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/contrib/gcc/config/aarch64/aarch64.h	Tue Mar 24 14:22:58 2015	(r280437)
@@ -0,0 +1,3 @@
+/* $FreeBSD */
+
+#define FIRST_PSEUDO_REGISTER   67

Added: head/contrib/gcc/config/aarch64/freebsd.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/contrib/gcc/config/aarch64/freebsd.h	Tue Mar 24 14:22:58 2015	(r280437)
@@ -0,0 +1,6 @@
+/* $FreeBSD$ */
+
+#undef INIT_SECTION_ASM_OP
+#undef FINI_SECTION_ASM_OP
+#define INIT_ARRAY_SECTION_ASM_OP "\t.section\t.init_array,\"aw\",%init_array"
+#define FINI_ARRAY_SECTION_ASM_OP "\t.section\t.fini_array,\"aw\",%fini_array"


More information about the svn-src-head mailing list