diff options
author | Mike Frysinger <vapier@gentoo.org> | 2024-01-02 09:50:43 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2024-01-03 01:21:48 -0500 |
commit | 01c2a7aa695147ad6b9a46034056b2073119ca7b (patch) | |
tree | 9d6e71e5920006686ff66658ed0c526f17708bf6 /sim/configure | |
parent | e0e9cd645f3e421a39e67b0cc32d5f7551318b9e (diff) | |
download | binutils-01c2a7aa695147ad6b9a46034056b2073119ca7b.zip binutils-01c2a7aa695147ad6b9a46034056b2073119ca7b.tar.gz binutils-01c2a7aa695147ad6b9a46034056b2073119ca7b.tar.bz2 |
sim: ppc: move libsim.a creation to top-level
The objects are still compiled in the subdir, but the creation of the
archive itself is in the top-level. This is a required step before we
can move compilation itself up, and makes it easier to review.
The downside is that each object compile is a recursive make instead of
a single one. It adds some overhead, so it's not great, but it shouldn't
be a big deal. This will go away once compilation is hoisted up.
Diffstat (limited to 'sim/configure')
-rwxr-xr-x | sim/configure | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sim/configure b/sim/configure index 7a3a075..d7d92c2 100755 --- a/sim/configure +++ b/sim/configure @@ -15502,7 +15502,6 @@ fi as_fn_append SIM_ENABLED_ARCHES " ppc" ac_config_files="$ac_config_files ppc/Makefile" - subdirs="$subdirs ppc" ac_config_files="$ac_config_files ppc/.gdbinit:common/gdbinit.in" |