[COMMITTED] binutils_step_compile: Add all-gprof and all-gprofng
Commit Message
make check-gprof was added to binutils_step_check, but only build for
binutils_step_compile_minimal. While binutils_step_check_minimal does
check gprof. Switch things around so that binutils_step_compile does
also build gprog so binutils_step_check doesn't fail because gprof
isn't build.
---
builder/master.cfg | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
@@ -3060,6 +3060,8 @@ binutils_step_compile = steps.Compile(
'all-gas',
'all-ld',
'all-binutils',
+ 'all-gprof',
+ 'all-gprofng', # no-op on non-linux
'all-gold',
'all-libctf']),
name='make',
@@ -3071,8 +3073,6 @@ binutils_step_compile_minimal = steps.Compile(
'all-gas',
'all-ld',
'all-binutils',
- 'all-gprof',
- 'all-gprofng', # no-op on non-linux
'all-libctf']),
name='make',
haltOnFailure=True)