~angelsl/ubuntu/wily/gcc-5/mips-cross

« back to all changes in this revision

Viewing changes to debian/README.snapshot

  • Committer: angelsl
  • Date: 2015-10-30 03:30:35 UTC
  • Revision ID: angelsl-20151030033035-rmug41zm8hyjgisg
Original import

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.