OSDN Git Service

Document LTO behavior with incompatible declarations.
[pf3gnuchains/gcc-fork.git] / contrib / download_ecj
1 #! /bin/sh
2
3 #
4 # Download the ecj jar file needed by gcj.
5 # Run this from the top level of the gcc source tree and the libjava
6 # build will do the right thing.
7 #
8 # (C) 2006 Free Software Foundation
9 #
10 # This script is Free Software, and it can be copied, distributed and
11 # modified as defined in the GNU General Public License.  A copy of
12 # its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
13 #
14
15 ftp -n sourceware.org << EOF
16 verbose
17 hash
18 user ftp ''
19 cd /pub/java
20 binary
21 get ecj-latest.jar
22 EOF
23
24 mv ecj-latest.jar ecj.jar
25