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