libpayload: Implement gcc wrappers for libpayload
[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 DEFAULT_PREFIX=/opt
32 DEFAULT_CC=gcc
33
34 BASE=`dirname $0`
35
36 # This will set the _LIBDIR and _INCDIR variables used below
37 . $BASE/lp.functions
38
39 trygccoption() {
40         $DEFAULT_CC $1 -S -xc /dev/null -o .$$.tmp > /dev/null
41         rm -f .$$.tmp
42         return $?
43 }
44
45 DEBUGME=0
46 DOLINK=1
47
48 # This variable will contain the command line that the user wants to
49 # pass to gas
50
51 CMDLINE=
52
53 # Process various flags that would change our behavior
54
55 while [ $# -gt 0 ]; do
56         case $1 in
57             -m32|-fno-stack-protector)
58                 shift
59                 continue
60                 ;;
61             -m64)
62                 error "Invalid option --64 - only 32 bit architectures are supported"
63                 ;;
64             -c)
65                 DOLINK=0
66                 ;;
67             -debug-wrapper)
68                 DEBUGME=1
69                 shift
70                 continue
71                 ;;
72             *)
73                 ;;
74         esac
75
76         CMDLINE="$CMDLINE $1"
77         shift
78 done
79
80 _CFLAGS="-m32 -nostdinc -nostdlib -I$_INCDIR"
81
82 # Check for the -fno-stack-protector silliness
83
84 trygccoption -fno-stack-protector
85 [ $? -eq 0 ] && _CFLAGS="$_CFLAGS -fno-stack-protector"
86
87 _CFLAGS="$_CFLAGS -I`$DEFAULT_CC -m32 -print-search-dirs | head -n 1 | cut -d' ' -f2`include"
88
89 _LDFLAGS="-Wl,-T,$_LIBDIR/libpayload.ldscript -static"
90
91 if [ $DOLINK -eq 0 ]; then
92     if [ $DEBUGME -eq 1 ]; then
93         echo "$DEFAULT_CC $_CFLAGS $CMDLINE"
94     fi
95
96     $DEFAULT_CC $_CFLAGS $CMDLINE
97 else
98     _LIBGCC=`$DEFAULT_CC -m32 -print-libgcc-file-name`
99     if [ $DEBUGME -eq 1 ]; then
100         echo "$DEFAULT_CC $_CFLAGS $_LDFLAGS $CMDLINE $_LIBDIR/i386/head.o $_LIBDIR/libpayload.a $_LIBGCC"
101     fi
102
103     $DEFAULT_CC $_CFLAGS $_LDFLAGS $CMDLINE $_LIBDIR/i386/head.o $_LIBDIR/libpayload.a $_LIBGCC
104 fi