blob: 448557c0b9e2a7ca480cee0fd1dadb306ec8f4c9 [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
Stefan Reinauer14e22772010-04-27 06:56:47 +000030# let's not recurse.
Ronald G. Minnichb575d672009-02-15 23:32:57 +000031# This is a hack, I know, but it makes sure that really simple user errors
Stefan Reinauer14e22772010-04-27 06:56:47 +000032# don't fork-bomb your machine.
Ronald G. Minnichb575d672009-02-15 23:32:57 +000033b=`basename $CC`
34if [ "$b" = "lpgcc" ]; then
35CC=""
36fi
37
38
Jordan Crousec3e728f2008-04-09 23:05:59 +000039
Stefan Reinauerc3591242008-08-07 15:22:01 +000040if [ "$CC" != "" ]; then
41DEFAULT_CC=$CC
42else
Jordan Crousec3e728f2008-04-09 23:05:59 +000043DEFAULT_CC=gcc
Stefan Reinauerc3591242008-08-07 15:22:01 +000044fi
Jordan Crousec3e728f2008-04-09 23:05:59 +000045
46BASE=`dirname $0`
47
48# This will set the _LIBDIR and _INCDIR variables used below
49. $BASE/lp.functions
50
Stefan Reinauer5429e262009-05-26 18:01:53 +000051# include libpayload config
52. $BASE/../libpayload.config
53
Ulf Jordan6818a322009-02-10 21:12:35 +000054_LDSCRIPT="-Wl,-T,$_LIBDIR/libpayload.ldscript"
55
Jordan Crousec3e728f2008-04-09 23:05:59 +000056trygccoption() {
Stefan Reinauerc3591242008-08-07 15:22:01 +000057 $DEFAULT_CC $1 -S -xc /dev/null -o .$$.tmp &> /dev/null
58 RET=$?
Jordan Crousec3e728f2008-04-09 23:05:59 +000059 rm -f .$$.tmp
Stefan Reinauerc3591242008-08-07 15:22:01 +000060 return $RET
Jordan Crousec3e728f2008-04-09 23:05:59 +000061}
62
63DEBUGME=0
64DOLINK=1
65
66# This variable will contain the command line that the user wants to
67# pass to gas
68
69CMDLINE=
70
71# Process various flags that would change our behavior
72
73while [ $# -gt 0 ]; do
74 case $1 in
75 -m32|-fno-stack-protector)
76 shift
77 continue
78 ;;
79 -m64)
80 error "Invalid option --64 - only 32 bit architectures are supported"
81 ;;
82 -c)
83 DOLINK=0
84 ;;
85 -debug-wrapper)
86 DEBUGME=1
87 shift
88 continue
89 ;;
Ulf Jordan6818a322009-02-10 21:12:35 +000090 -Wl,-T,*)
91 _LDSCRIPT="$1"
92 shift
93 continue
94 ;;
Jordan Crousec3e728f2008-04-09 23:05:59 +000095 *)
96 ;;
97 esac
98
99 CMDLINE="$CMDLINE $1"
100 shift
101done
102
Stefan Reinauer5429e262009-05-26 18:01:53 +0000103if [ "$CONFIG_TARGET_I386" = "y" ]; then
104 _ARCHINCDIR=$_INCDIR/i386
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000105 _ARCHLIBDIR=$_LIBDIR/i386
Stefan Reinauer5429e262009-05-26 18:01:53 +0000106fi
107
108if [ "$CONFIG_TARGET_POWERPC" = "y" ]; then
109 _ARCHINCDIR=$_INCDIR/powerpc
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000110 _ARCHLIBDIR=$_LIBDIR/powerpc
Stefan Reinauer5429e262009-05-26 18:01:53 +0000111fi
112
113_CFLAGS="-m32 -nostdinc -nostdlib -I$_INCDIR -I$_ARCHINCDIR"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000114
115# Check for the -fno-stack-protector silliness
116
117trygccoption -fno-stack-protector
118[ $? -eq 0 ] && _CFLAGS="$_CFLAGS -fno-stack-protector"
119
120_CFLAGS="$_CFLAGS -I`$DEFAULT_CC -m32 -print-search-dirs | head -n 1 | cut -d' ' -f2`include"
121
Ulf Jordan6818a322009-02-10 21:12:35 +0000122_LDFLAGS="$_LDSCRIPT -static"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000123
124if [ $DOLINK -eq 0 ]; then
125 if [ $DEBUGME -eq 1 ]; then
126 echo "$DEFAULT_CC $_CFLAGS $CMDLINE"
127 fi
128
129 $DEFAULT_CC $_CFLAGS $CMDLINE
130else
131 _LIBGCC=`$DEFAULT_CC -m32 -print-libgcc-file-name`
132 if [ $DEBUGME -eq 1 ]; then
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000133 echo "$DEFAULT_CC $_CFLAGS $_LDFLAGS $_ARCHLIBDIR/head.o $CMDLINE $_LIBDIR/libpayload.a $_LIBGCC"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000134 fi
135
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000136 # Note: $_ARCHLIBDIR/head.o must be the first object being linked, because it
Robert Millan39ebf2f2008-11-11 23:36:12 +0000137 # contains a Multiboot header. The Multiboot standard requires this
138 # header to be placed below 0x2000 in the resulting image. See:
139 # http://www.gnu.org/software/grub/manual/multiboot/html_node/OS-image-format.html
140
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000141 $DEFAULT_CC $_CFLAGS $_LDFLAGS $_ARCHLIBDIR/head.o $CMDLINE $_LIBDIR/libpayload.a $_LIBGCC
Jordan Crousec3e728f2008-04-09 23:05:59 +0000142fi