From 608762793a4e6f1a4152858dfeb372dc4c3f10a0 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sat, 30 May 2009 15:12:33 +0000 Subject: Many Kudos go to Segher Boessenkool and Patrick Georgi for figuring this one out. Fix the libgcc dependency on abort() due to nested functions. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4326 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/ppc/lib/Config.lb | 2 ++ src/arch/ppc/lib/abort.c | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 src/arch/ppc/lib/abort.c (limited to 'src/arch') diff --git a/src/arch/ppc/lib/Config.lb b/src/arch/ppc/lib/Config.lb index b174032..f5bce95 100644 --- a/src/arch/ppc/lib/Config.lb +++ b/src/arch/ppc/lib/Config.lb @@ -8,6 +8,7 @@ object ppc.o object timebase.S object floats.S object div64.S +object abort.o initobject pci_dev.o initobject printk_init.o initobject timebase.S @@ -15,3 +16,4 @@ initobject timer.o initobject floats.S initobject div64.S initobject ppc.o +initobject abort.o diff --git a/src/arch/ppc/lib/abort.c b/src/arch/ppc/lib/abort.c new file mode 100644 index 0000000..4fd3f0a --- /dev/null +++ b/src/arch/ppc/lib/abort.c @@ -0,0 +1,32 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2009 coresystems GmbH + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/* gcc produces calls to an abort function in their trampoline code on powerpc + * 32bit platforms. + * This trampoline code is emitted for example in nested functions. + */ + +void abort(void) +{ + /* We would want to call die() here, but it might not be available at + * this point, so for now we have to die silently. + */ + for (;;) ; +} + -- cgit v1.1