Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simon Braß
jenkins-scripts
Commits
79ecb180
Commit
79ecb180
authored
Jan 03, 2017
by
Simon Brass
Browse files
[gcc-build] make lesser verboser
parent
d5c27eeb
Changes
1
Hide whitespace changes
Inline
Side-by-side
gcc-build.sh
View file @
79ecb180
...
...
@@ -19,18 +19,19 @@ export C_INCLUDE_PATH
CPLUS_INCLUDE_PATH
=
/usr/include/x86_64-linux-gnu
export
CPLUS_INCLUDE_PATH
tar
jx
v
f
$TAR_FILE
tar
jxf
$TAR_FILE
mv
$INST_DIR
$SRC
mkdir
$INST_DIR
cd
$INST_DIR
../
$SRC
/configure
--enable-languages
=
c,c++,fortran
--disable-multilib
-prefix
=
$PREFIX
../
$SRC
/configure
--enable-languages
=
c,c++,fortran
--disable-multilib
-prefix
=
$PREFIX
>
configure.log
exit_code
=
$?
if
[
$exit_code
-ne
0
]
;
then
exit
$exit_code
fi
make
$HOST_MAKE_FLAGS
-V
=
0
make
$HOST_MAKE_FLAGS
-s
V
=
0 2>&1 |
tee
make.log
exit_code
=
$?
if
[
$exit_code
-ne
0
]
;
then
exit
$exit_code
...
...
@@ -42,7 +43,7 @@ cd $DEST_DIR/$PREFIX
ln
-s
lib lib64
cd
$WORKSPACE
/
$INST_DIR
make
$HOST_MAKE_FLAGS
DESTDIR
=
$DEST_DIR
install
make
$HOST_MAKE_FLAGS
DESTDIR
=
$DEST_DIR
-s
V
=
0
install
2>&1 |
tee
make-install.log
exit_code
=
$?
if
[
$exit_code
-ne
0
]
then
exit
$exit_code
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment