Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 650474 | Differences between
and this patch

Collapse All | Expand All

(-)a/config/compilers/Makefile (-1 / +1 lines)
Lines 41-47 COMPILERS = gcc.mak gcc27.mak gcc28.mak gcc295.mak \ Link Here
41
	egcs.mak gcc27emx.mak intel80.mak \
41
	egcs.mak gcc27emx.mak intel80.mak \
42
        suncc.mak suncc40.mak \
42
        suncc.mak suncc40.mak \
43
        jolt.mak jdk.mak jdk12.mak none.mak \
43
        jolt.mak jdk.mak jdk12.mak none.mak \
44
	jikes.mak gcc296.mak gcc30.mak gcc31.mak gcc32.mak
44
	jikes.mak gcc296.mak gcc30.mak gcc31.mak gcc32.mak gcc42.mak
45
45
46
FILES = Makefile $(COMPILERS) gcc_defaults.mak suncc_defaults.mak jdk_defaults.mak jikes_defaults.mak
46
FILES = Makefile $(COMPILERS) gcc_defaults.mak suncc_defaults.mak jdk_defaults.mak jikes_defaults.mak
47
47
(-)a/config/compilers/gcc42.mak (+62 lines)
Line 0 Link Here
1
 ###########################################################################
2
 ##                                                                       ##
3
 ##                Centre for Speech Technology Research                  ##
4
 ##                     University of Edinburgh, UK                       ##
5
 ##                         Copyright (c) 1999                            ##
6
 ##                        All Rights Reserved.                           ##
7
 ##                                                                       ##
8
 ##  Permission is hereby granted, free of charge, to use and distribute  ##
9
 ##  this software and its documentation without restriction, including   ##
10
 ##  without limitation the rights to use, copy, modify, merge, publish,  ##
11
 ##  distribute, sublicense, and/or sell copies of this work, and to      ##
12
 ##  permit persons to whom this work is furnished to do so, subject to   ##
13
 ##  the following conditions:                                            ##
14
 ##   1. The code must retain the above copyright notice, this list of    ##
15
 ##      conditions and the following disclaimer.                         ##
16
 ##   2. Any modifications must be clearly marked as such.                ##
17
 ##   3. Original authors' names are not deleted.                         ##
18
 ##   4. The authors' names are not used to endorse or promote products   ##
19
 ##      derived from this software without specific prior written        ##
20
 ##      permission.                                                      ##
21
 ##                                                                       ##
22
 ##  THE UNIVERSITY OF EDINBURGH AND THE CONTRIBUTORS TO THIS WORK        ##
23
 ##  DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING      ##
24
 ##  ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT   ##
25
 ##  SHALL THE UNIVERSITY OF EDINBURGH NOR THE CONTRIBUTORS BE LIABLE     ##
26
 ##  FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES    ##
27
 ##  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN   ##
28
 ##  AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,          ##
29
 ##  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF       ##
30
 ##  THIS SOFTWARE.                                                       ##
31
 ##                                                                       ##
32
 ###########################################################################
33
 ##                                                                       ##
34
 ##                 Author: William Hubbs (williamh@gentoo.org)                 ##
35
 ##                   Date: Sun Aug 25 2002                               ##
36
 ## --------------------------------------------------------------------  ##
37
 ## Settings for GCC-4.2                                                  ##
38
 ##                                                                       ##
39
 ###########################################################################
40
41
include $(EST)/config/compilers/gcc_defaults.mak
42
43
ifndef GCC42
44
    GCC42 = gcc
45
endif
46
47
CC= $(GCC42)
48
CXX = g++
49
50
COMPILER_DESC=gcc-4.[234]
51
52
SHARED_CCFLAGS  = -fPIC
53
SHARED_CXXFLAGS  = -fPIC
54
SHARED_LINKFLAGS =
55
56
 ifndef GCC_MAKE_SHARED_LIB
57
    MAKE_SHARED_LIB = $(CXX) -shared -o XXX -Wl,-soname,YYY
58
 else
59
     MAKE_SHARED_LIB = $(GCC_MAKE_SHARED_LIB)
60
 endif
61
62
STATIC_LINKFLAGS = -Dstatic

Return to bug 650474