~ubuntu-branches/debian/sid/gcc-4.8/sid

« back to all changes in this revision

Viewing changes to .svn/pristine/2d/2ddf3f15c5126d0d46a2819e3e23b200f111f713.svn-base

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-12-19 19:48:34 UTC
  • Revision ID: package-import@ubuntu.com-20141219194834-4dz1q7rrn5pad823
Tags: 4.8.4-1
* GCC 4.8.4 release.
  - Fix PR target/61407 (darwin), PR middle-end/58624 (ice),
    PR sanitizer/64265 (wrong code).
* Require recent binutils to pass go test failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Debian gcc-snapshot package
 
2
===========================
 
3
 
 
4
This package contains  a recent development SNAPSHOT of all files
 
5
contained in the GNU Compiler Collection (GCC).
 
6
 
 
7
DO NOT USE THIS SNAPSHOT FOR BUILDING DEBIAN PACKAGES!
 
8
 
 
9
This package will NEVER hit the testing distribution. It's used for
 
10
tracking gcc bugs submitted to the Debian BTS in recent development
 
11
versions of gcc.
 
12
 
 
13
To use this snapshot, you should set the following environment variables:
 
14
 
 
15
        LD_LIBRARY_PATH=/usr/lib/gcc-snapshot/lib:$LD_LIBRARY_PATH
 
16
        PATH=/usr/lib/gcc-snapshot/bin:$PATH
 
17
 
 
18
You might also like to use a shell script to wrap up this 
 
19
funcationality, e.g. 
 
20
 
 
21
place in /usr/local/bin/gcc-snapshot and chmod +x it 
 
22
 
 
23
----------- snip ----------
 
24
#! /bin/sh
 
25
LD_LIBRARY_PATH=/usr/lib/gcc-snapshot/lib:$LD_LIBRARY_PATH
 
26
PATH=/usr/lib/gcc-snapshot/bin:$PATH
 
27
gcc "$@"
 
28
----------- snip ----------
 
29
 
 
30
Make the same for g++, g77, gij, gcj, cpp, ...
 
31
 
 
32
Don't forget the quotes around the $@ or gcc will not parse it's 
 
33
command line correctly! 
 
34
 
 
35
Unset these variables before building Debian packages destined for an
 
36
upload to ftp-master.debian.org.