blob: 06b9021fbf30a97a2a105bb8f21fa5a260f94560 [file] [log] [blame]
Jordan Crousec3e728f2008-04-09 23:05:59 +00001#!/bin/sh
2## This file is part of the libpayload project.
3##
4## Copyright (C) 2008 Advanced Micro Devices, Inc.
5##
6## Redistribution and use in source and binary forms, with or without
7## modification, are permitted provided that the following conditions
8## are met:
9## 1. Redistributions of source code must retain the above copyright
10## notice, this list of conditions and the following disclaimer.
11## 2. Redistributions in binary form must reproduce the above copyright
12## notice, this list of conditions and the following disclaimer in the
13## documentation and/or other materials provided with the distribution.
14## 3. The name of the author may not be used to endorse or promote products
15## derived from this software without specific prior written permission.
16##
17## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27## SUCH DAMAGE.
28
29# GCC wrapper for libpayload
Marc Jonesbb9490a2012-11-30 16:22:51 -070030if [ -z "${V}" ] && [ "${V}" = 1 ]; then
31 DEBUGME=1
32else
33 DEBUGME=0
34fi
35
36if [ $DEBUGME -eq 1 ]; then
37 echo "CC = $CC"
38fi
39
Stefan Reinauer14e22772010-04-27 06:56:47 +000040# let's not recurse.
Ronald G. Minnichb575d672009-02-15 23:32:57 +000041# This is a hack, I know, but it makes sure that really simple user errors
Stefan Reinauer14e22772010-04-27 06:56:47 +000042# don't fork-bomb your machine.
Patrick Georgia4a022c2011-02-14 19:24:37 +000043if [ -n "$CC" ]; then
Marc Jonesbb9490a2012-11-30 16:22:51 -070044b=`basename "$CC"`
Ronald G. Minnichb575d672009-02-15 23:32:57 +000045if [ "$b" = "lpgcc" ]; then
46CC=""
47fi
Patrick Georgia4a022c2011-02-14 19:24:37 +000048fi
Ronald G. Minnichb575d672009-02-15 23:32:57 +000049
Stefan Reinauerc3591242008-08-07 15:22:01 +000050if [ "$CC" != "" ]; then
51DEFAULT_CC=$CC
52else
Jordan Crousec3e728f2008-04-09 23:05:59 +000053DEFAULT_CC=gcc
Stefan Reinauerc3591242008-08-07 15:22:01 +000054fi
Jordan Crousec3e728f2008-04-09 23:05:59 +000055
56BASE=`dirname $0`
57
58# This will set the _LIBDIR and _INCDIR variables used below
59. $BASE/lp.functions
60
Stefan Reinauer5429e262009-05-26 18:01:53 +000061# include libpayload config
62. $BASE/../libpayload.config
63
Ulf Jordan6818a322009-02-10 21:12:35 +000064_LDSCRIPT="-Wl,-T,$_LIBDIR/libpayload.ldscript"
65
Jordan Crousec3e728f2008-04-09 23:05:59 +000066trygccoption() {
Patrick Georgi82867d32012-09-26 15:26:05 +020067 $DEFAULT_CC $1 -S -xc /dev/null -o /dev/null &> /dev/null
68 return $?
Jordan Crousec3e728f2008-04-09 23:05:59 +000069}
70
Jordan Crousec3e728f2008-04-09 23:05:59 +000071DOLINK=1
72
73# This variable will contain the command line that the user wants to
74# pass to gas
75
76CMDLINE=
77
78# Process various flags that would change our behavior
79
80while [ $# -gt 0 ]; do
81 case $1 in
82 -m32|-fno-stack-protector)
83 shift
84 continue
85 ;;
86 -m64)
87 error "Invalid option --64 - only 32 bit architectures are supported"
88 ;;
89 -c)
90 DOLINK=0
91 ;;
92 -debug-wrapper)
93 DEBUGME=1
94 shift
95 continue
96 ;;
Ulf Jordan6818a322009-02-10 21:12:35 +000097 -Wl,-T,*)
98 _LDSCRIPT="$1"
99 shift
100 continue
101 ;;
Jordan Crousec3e728f2008-04-09 23:05:59 +0000102 *)
103 ;;
104 esac
105
106 CMDLINE="$CMDLINE $1"
107 shift
108done
109
Stefan Reinauer8af0d032012-12-14 13:05:21 -0800110if [ "$CONFIG_ARCH_ARMV7" = "y" ]; then
111 _ARCHINCDIR=$_INCDIR/armv7
112 _ARCHLIBDIR=$_LIBDIR/armv7
Ronald G. Minnich1a29c1e2013-02-14 15:26:09 -0800113 _ARCHEXTRA=""
Stefan Reinauer8af0d032012-12-14 13:05:21 -0800114fi
115
116if [ "$CONFIG_ARCH_POWERPC" = "y" ]; then
117 _ARCHINCDIR=$_INCDIR/powerpc
118 _ARCHLIBDIR=$_LIBDIR/powerpc
Ronald G. Minnich1a29c1e2013-02-14 15:26:09 -0800119 _ARCHEXTRA=""
Stefan Reinauer8af0d032012-12-14 13:05:21 -0800120fi
121
David Hendricks4b6be982012-11-30 13:56:31 -0800122if [ "$CONFIG_ARCH_X86" = "y" ]; then
Stefan Reinauerf6935a02012-12-14 11:42:57 -0800123 _ARCHINCDIR=$_INCDIR/x86
124 _ARCHLIBDIR=$_LIBDIR/x86
Ronald G. Minnich1a29c1e2013-02-14 15:26:09 -0800125 _ARCHEXTRA="-m32 "
Stefan Reinauer5429e262009-05-26 18:01:53 +0000126fi
127
Ronald G. Minnich1a29c1e2013-02-14 15:26:09 -0800128_CFLAGS="$_ARCHEXTRA -nostdinc -nostdlib -I$_INCDIR -I$_ARCHINCDIR -D__LIBPAYLOAD__=1"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000129
130# Check for the -fno-stack-protector silliness
131
132trygccoption -fno-stack-protector
133[ $? -eq 0 ] && _CFLAGS="$_CFLAGS -fno-stack-protector"
134
Ronald G. Minnich1a29c1e2013-02-14 15:26:09 -0800135_CFLAGS="$_CFLAGS -I`$DEFAULT_CC $_ARCHEXTRA -print-search-dirs | head -n 1 | cut -d' ' -f2`include"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000136
Patrick Georgib1eab142011-03-01 07:12:08 +0000137_LDFLAGS="-L$BASE/../lib $_LDSCRIPT -static"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000138
139if [ $DOLINK -eq 0 ]; then
140 if [ $DEBUGME -eq 1 ]; then
141 echo "$DEFAULT_CC $_CFLAGS $CMDLINE"
142 fi
143
144 $DEFAULT_CC $_CFLAGS $CMDLINE
145else
Ronald G. Minnich1a29c1e2013-02-14 15:26:09 -0800146 _LIBGCC=`$DEFAULT_CC $_ARCHEXTRA -print-libgcc-file-name`
Jordan Crousec3e728f2008-04-09 23:05:59 +0000147 if [ $DEBUGME -eq 1 ]; then
Patrick Georgib1eab142011-03-01 07:12:08 +0000148 echo "$DEFAULT_CC $_CFLAGS $_LDFLAGS $_ARCHLIBDIR/head.o $CMDLINE -lpayload $_LIBGCC"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000149 fi
150
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000151 # Note: $_ARCHLIBDIR/head.o must be the first object being linked, because it
Robert Millan39ebf2f2008-11-11 23:36:12 +0000152 # contains a Multiboot header. The Multiboot standard requires this
153 # header to be placed below 0x2000 in the resulting image. See:
154 # http://www.gnu.org/software/grub/manual/multiboot/html_node/OS-image-format.html
155
Patrick Georgib1eab142011-03-01 07:12:08 +0000156 $DEFAULT_CC $_CFLAGS $_LDFLAGS $_ARCHLIBDIR/head.o $CMDLINE -lpayload $_LIBGCC
Jordan Crousec3e728f2008-04-09 23:05:59 +0000157fi