blob: 57015d5f499a845318b14fdc23fb191d23e614fa [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.
Patrick Georgia4a022c2011-02-14 19:24:37 +000033# echo "CC = $CC"
Marc Jones36932662010-12-03 00:45:56 +000034
Patrick Georgia4a022c2011-02-14 19:24:37 +000035if [ -n "$CC" ]; then
Ronald G. Minnichb575d672009-02-15 23:32:57 +000036b=`basename $CC`
37if [ "$b" = "lpgcc" ]; then
38CC=""
39fi
Patrick Georgia4a022c2011-02-14 19:24:37 +000040fi
Ronald G. Minnichb575d672009-02-15 23:32:57 +000041
42
Jordan Crousec3e728f2008-04-09 23:05:59 +000043
Stefan Reinauerc3591242008-08-07 15:22:01 +000044if [ "$CC" != "" ]; then
45DEFAULT_CC=$CC
46else
Jordan Crousec3e728f2008-04-09 23:05:59 +000047DEFAULT_CC=gcc
Stefan Reinauerc3591242008-08-07 15:22:01 +000048fi
Jordan Crousec3e728f2008-04-09 23:05:59 +000049
50BASE=`dirname $0`
51
52# This will set the _LIBDIR and _INCDIR variables used below
53. $BASE/lp.functions
54
Stefan Reinauer5429e262009-05-26 18:01:53 +000055# include libpayload config
56. $BASE/../libpayload.config
57
Ulf Jordan6818a322009-02-10 21:12:35 +000058_LDSCRIPT="-Wl,-T,$_LIBDIR/libpayload.ldscript"
59
Jordan Crousec3e728f2008-04-09 23:05:59 +000060trygccoption() {
Stefan Reinauerc3591242008-08-07 15:22:01 +000061 $DEFAULT_CC $1 -S -xc /dev/null -o .$$.tmp &> /dev/null
62 RET=$?
Jordan Crousec3e728f2008-04-09 23:05:59 +000063 rm -f .$$.tmp
Stefan Reinauerc3591242008-08-07 15:22:01 +000064 return $RET
Jordan Crousec3e728f2008-04-09 23:05:59 +000065}
66
67DEBUGME=0
68DOLINK=1
69
70# This variable will contain the command line that the user wants to
71# pass to gas
72
73CMDLINE=
74
75# Process various flags that would change our behavior
76
77while [ $# -gt 0 ]; do
78 case $1 in
79 -m32|-fno-stack-protector)
80 shift
81 continue
82 ;;
83 -m64)
84 error "Invalid option --64 - only 32 bit architectures are supported"
85 ;;
86 -c)
87 DOLINK=0
88 ;;
89 -debug-wrapper)
90 DEBUGME=1
91 shift
92 continue
93 ;;
Ulf Jordan6818a322009-02-10 21:12:35 +000094 -Wl,-T,*)
95 _LDSCRIPT="$1"
96 shift
97 continue
98 ;;
Jordan Crousec3e728f2008-04-09 23:05:59 +000099 *)
100 ;;
101 esac
102
103 CMDLINE="$CMDLINE $1"
104 shift
105done
106
Stefan Reinauer5429e262009-05-26 18:01:53 +0000107if [ "$CONFIG_TARGET_I386" = "y" ]; then
108 _ARCHINCDIR=$_INCDIR/i386
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000109 _ARCHLIBDIR=$_LIBDIR/i386
Stefan Reinauer5429e262009-05-26 18:01:53 +0000110fi
111
112if [ "$CONFIG_TARGET_POWERPC" = "y" ]; then
113 _ARCHINCDIR=$_INCDIR/powerpc
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000114 _ARCHLIBDIR=$_LIBDIR/powerpc
Stefan Reinauer5429e262009-05-26 18:01:53 +0000115fi
116
Patrick Georgi43c970f2010-06-24 14:43:17 +0000117_CFLAGS="-m32 -nostdinc -nostdlib -I$_INCDIR -I$_ARCHINCDIR -D__LIBPAYLOAD__=1"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000118
119# Check for the -fno-stack-protector silliness
120
121trygccoption -fno-stack-protector
122[ $? -eq 0 ] && _CFLAGS="$_CFLAGS -fno-stack-protector"
123
124_CFLAGS="$_CFLAGS -I`$DEFAULT_CC -m32 -print-search-dirs | head -n 1 | cut -d' ' -f2`include"
125
Ulf Jordan6818a322009-02-10 21:12:35 +0000126_LDFLAGS="$_LDSCRIPT -static"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000127
128if [ $DOLINK -eq 0 ]; then
129 if [ $DEBUGME -eq 1 ]; then
130 echo "$DEFAULT_CC $_CFLAGS $CMDLINE"
131 fi
132
133 $DEFAULT_CC $_CFLAGS $CMDLINE
134else
135 _LIBGCC=`$DEFAULT_CC -m32 -print-libgcc-file-name`
136 if [ $DEBUGME -eq 1 ]; then
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000137 echo "$DEFAULT_CC $_CFLAGS $_LDFLAGS $_ARCHLIBDIR/head.o $CMDLINE $_LIBDIR/libpayload.a $_LIBGCC"
Jordan Crousec3e728f2008-04-09 23:05:59 +0000138 fi
139
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000140 # Note: $_ARCHLIBDIR/head.o must be the first object being linked, because it
Robert Millan39ebf2f2008-11-11 23:36:12 +0000141 # contains a Multiboot header. The Multiboot standard requires this
142 # header to be placed below 0x2000 in the resulting image. See:
143 # http://www.gnu.org/software/grub/manual/multiboot/html_node/OS-image-format.html
144
Stefan Reinauer7208f6e2010-03-25 18:54:43 +0000145 $DEFAULT_CC $_CFLAGS $_LDFLAGS $_ARCHLIBDIR/head.o $CMDLINE $_LIBDIR/libpayload.a $_LIBGCC
Jordan Crousec3e728f2008-04-09 23:05:59 +0000146fi