Subversion Repositories HelenOS-historic

Rev

Rev 255 | Rev 501 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 255 Rev 260
Line 65... Line 65...
65
check_error $? "Error unpacking GCC."
65
check_error $? "Error unpacking GCC."
66
 
66
 
67
echo ">>> Compiling and installing binutils"
67
echo ">>> Compiling and installing binutils"
68
cd "${BINUTILSDIR}"
68
cd "${BINUTILSDIR}"
69
check_error $? "Change directory failed."
69
check_error $? "Change directory failed."
70
./configure "--host=${HOST}" "--target=${TARGET}" "--prefix=${PREFIX}" "--disable-nls"
70
./configure "--host=${HOST}" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" "--disable-nls"
71
check_error $? "Error configuring binutils."
71
check_error $? "Error configuring binutils."
72
make all install
72
make all install
73
check_error $? "Error compiling/installing binutils."
73
check_error $? "Error compiling/installing binutils."
74
 
74
 
75
echo ">>> Compiling and installing GCC"
75
echo ">>> Compiling and installing GCC"