826e4989419d4c5139cf8893d70d9a5c596779b1
[coreboot.git] / payloads / libpayload / bin / lpgcc
1 #!/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
30 # let's not recurse.
31 # This is a hack, I know, but it makes sure that really simple user errors
32 # don't fork-bomb your machine.
33 echo "CC = $CC"
34
35 b=`basename $CC`
36 if [ "$b" = "lpgcc" ]; then
37 CC=""
38 fi
39
40
41
42 if [ "$CC" != "" ]; then
43 DEFAULT_CC=$CC
44 else
45 DEFAULT_CC=gcc
46 fi
47
48 BASE=`dirname $0`
49
50 # This will set the _LIBDIR and _INCDIR variables used below
51 . $BASE/lp.functions
52
53 # include libpayload config
54 . $BASE/../libpayload.config
55
56 _LDSCRIPT="-Wl,-T,$_LIBDIR/libpayload.ldscript"
57
58 trygccoption() {
59         $DEFAULT_CC $1 -S -xc /dev/null -o .$$.tmp &> /dev/null
60         RET=$?
61         rm -f .$$.tmp
62         return $RET
63 }
64
65 DEBUGME=0
66 DOLINK=1
67
68 # This variable will contain the command line that the user wants to
69 # pass to gas
70
71 CMDLINE=
72
73 # Process various flags that would change our behavior
74
75 while [ $# -gt 0 ]; do
76         case $1 in
77             -m32|-fno-stack-protector)
78                 shift
79                 continue
80                 ;;
81             -m64)
82                 error "Invalid option --64 - only 32 bit architectures are supported"
83                 ;;
84             -c)
85                 DOLINK=0
86                 ;;
87             -debug-wrapper)
88                 DEBUGME=1
89                 shift
90                 continue
91                 ;;
92             -Wl,-T,*)
93                 _LDSCRIPT="$1"
94                 shift
95                 continue
96                 ;;
97             *)
98                 ;;
99         esac
100
101         CMDLINE="$CMDLINE $1"
102         shift
103 done
104
105 if [ "$CONFIG_TARGET_I386" = "y" ]; then
106   _ARCHINCDIR=$_INCDIR/i386
107   _ARCHLIBDIR=$_LIBDIR/i386
108 fi
109
110 if [ "$CONFIG_TARGET_POWERPC" = "y" ]; then
111   _ARCHINCDIR=$_INCDIR/powerpc
112   _ARCHLIBDIR=$_LIBDIR/powerpc
113 fi
114
115 _CFLAGS="-m32 -nostdinc -nostdlib -I$_INCDIR -I$_ARCHINCDIR -D__LIBPAYLOAD__=1"
116
117 # Check for the -fno-stack-protector silliness
118
119 trygccoption -fno-stack-protector
120 [ $? -eq 0 ] && _CFLAGS="$_CFLAGS -fno-stack-protector"
121
122 _CFLAGS="$_CFLAGS -I`$DEFAULT_CC -m32 -print-search-dirs | head -n 1 | cut -d' ' -f2`include"
123
124 _LDFLAGS="$_LDSCRIPT -static"
125
126 if [ $DOLINK -eq 0 ]; then
127     if [ $DEBUGME -eq 1 ]; then
128         echo "$DEFAULT_CC $_CFLAGS $CMDLINE"
129     fi
130
131     $DEFAULT_CC $_CFLAGS $CMDLINE
132 else
133     _LIBGCC=`$DEFAULT_CC -m32 -print-libgcc-file-name`
134     if [ $DEBUGME -eq 1 ]; then
135         echo "$DEFAULT_CC $_CFLAGS $_LDFLAGS $_ARCHLIBDIR/head.o $CMDLINE $_LIBDIR/libpayload.a $_LIBGCC"
136     fi
137
138     # Note: $_ARCHLIBDIR/head.o must be the first object being linked, because it
139     # contains a Multiboot header.  The Multiboot standard requires this
140     # header to be placed below 0x2000 in the resulting image.  See:
141     # http://www.gnu.org/software/grub/manual/multiboot/html_node/OS-image-format.html
142
143     $DEFAULT_CC $_CFLAGS $_LDFLAGS $_ARCHLIBDIR/head.o  $CMDLINE $_LIBDIR/libpayload.a $_LIBGCC
144 fi