blob: c354ec3d0c52de8a5bfe8b03dd56e779ff1f3dde [file] [log] [blame]
Kevin O'Connor03f630e2009-03-26 20:45:36 -04001#!/bin/sh
Kevin O'Connor84452f12009-03-27 00:07:07 -04002# Script to test if gcc "-fwhole-program" works properly.
Kevin O'Connor03f630e2009-03-26 20:45:36 -04003
4mkdir -p out
5TMPFILE1=out/tmp_testcompile1.c
6TMPFILE1o=out/tmp_testcompile1.o
7TMPFILE2=out/tmp_testcompile2.c
8TMPFILE2o=out/tmp_testcompile2.o
9TMPFILE3o=out/tmp_testcompile3.o
10
11# Test for "-fwhole-program"
Kevin O'Connor27876802009-03-27 00:12:00 -040012$CC -fwhole-program -S -o /dev/null -xc /dev/null > /dev/null 2>&1
Kevin O'Connor03f630e2009-03-26 20:45:36 -040013if [ $? -ne 0 ]; then
14 echo "This version of gcc does not support -fwhole-program." > /dev/fd/2
15 echo "Please upgrade to gcc v4.1 or later" > /dev/fd/2
16 echo -1
Kevin O'Connorff82b242009-04-19 21:30:48 -040017 exit 1
Kevin O'Connor03f630e2009-03-26 20:45:36 -040018fi
19
Kevin O'Connor84452f12009-03-27 00:07:07 -040020# Test if "visible" variables are marked global.
21cat - > $TMPFILE1 <<EOF
22unsigned char t1 __attribute__((section(".data16.foo.19"))) __attribute__((externally_visible));
23EOF
24$CC -Os -c -fwhole-program $TMPFILE1 -o $TMPFILE1o > /dev/null 2>&1
25cat - > $TMPFILE2 <<EOF
26extern unsigned char t1;
27int __attribute__((externally_visible)) main() { return t1; }
28EOF
29$CC -Os -c -fwhole-program $TMPFILE2 -o $TMPFILE2o > /dev/null 2>&1
Kevin O'Connorff82b242009-04-19 21:30:48 -040030$CC -nostdlib -Os $TMPFILE1o $TMPFILE2o -o $TMPFILE3o > /dev/null 2>&1
Kevin O'Connor84452f12009-03-27 00:07:07 -040031if [ $? -ne 0 ]; then
32 echo "This version of gcc does not properly handle" > /dev/fd/2
33 echo " global variables in -fwhole-program mode." > /dev/fd/2
34 echo "Please upgrade to a newer gcc (eg, v4.3 or later)" > /dev/fd/2
35 echo -1
Kevin O'Connorff82b242009-04-19 21:30:48 -040036 exit 1
Kevin O'Connor84452f12009-03-27 00:07:07 -040037fi
38
Kevin O'Connor03f630e2009-03-26 20:45:36 -040039# Test if "visible" functions are marked global.
40cat - > $TMPFILE1 <<EOF
41void __attribute__((externally_visible)) t1() { }
42EOF
Kevin O'Connor84452f12009-03-27 00:07:07 -040043$CC -Os -c -fwhole-program $TMPFILE1 -o $TMPFILE1o > /dev/null 2>&1
Kevin O'Connor03f630e2009-03-26 20:45:36 -040044cat - > $TMPFILE2 <<EOF
45void t1();
46void __attribute__((externally_visible)) main() { t1(); }
47EOF
Kevin O'Connor84452f12009-03-27 00:07:07 -040048$CC -Os -c -fwhole-program $TMPFILE2 -o $TMPFILE2o > /dev/null 2>&1
Kevin O'Connorff82b242009-04-19 21:30:48 -040049$CC -nostdlib -Os $TMPFILE1o $TMPFILE2o -o $TMPFILE3o > /dev/null 2>&1
Kevin O'Connor03f630e2009-03-26 20:45:36 -040050if [ $? -ne 0 ]; then
51 echo " Working around non-global functions in -fwhole-program" > /dev/fd/2
52fi
53
54# Test if "-combine" works
55mkdir -p out
56cat - > $TMPFILE1 <<EOF
57struct ts { union { int u1; struct { int u2; }; }; };
58void t1(struct ts *r);
59EOF
60$CC -c -fwhole-program -combine $TMPFILE1 $TMPFILE1 -o $TMPFILE1o > /dev/null 2>&1
61if [ $? -eq 0 ]; then
62 #echo " Setting AVOIDCOMBINE=0" > /dev/fd/2
63 echo 0
64else
65 echo " Enabling AVOIDCOMBINE=1" > /dev/fd/2
66 echo 1
67fi
68
69rm -f $TMPFILE1 $TMPFILE1o $TMPFILE2 $TMPFILE2o $TMPFILE3o