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