[COMMITTED] binutils_step_compile: Add all-gprof and all-gprofng

Message ID 20260502152257.2758088-1-mark@klomp.org
State New
Headers
Series [COMMITTED] binutils_step_compile: Add all-gprof and all-gprofng |

Commit Message

Mark Wielaard May 2, 2026, 3:22 p.m. UTC
  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(-)
  

Patch

diff --git a/builder/master.cfg b/builder/master.cfg
index ad3e097da15d..4dddf0a0c551 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -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)