diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2023-12-15 14:49:19 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2023-12-21 12:23:24 +0100 |
commit | fc1de24f9378ca1e9c6e0f12a6abe65d48314d65 (patch) | |
tree | b72e3e118f1023874dab7ea7ae38c44af37fc73a /etc/patches/gcc-4.7.4 | |
parent | ec7770c855cc4582fe1dcf27eb7defafa5c8c01d (diff) | |
download | bootstrappable-toolchain-fc1de24f9378ca1e9c6e0f12a6abe65d48314d65.tar.gz |
gcc: Fix GCC patches
Diffstat (limited to 'etc/patches/gcc-4.7.4')
-rw-r--r-- | etc/patches/gcc-4.7.4/reproducibility/0002-compute-reproducible-checksums.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/patches/gcc-4.7.4/reproducibility/0002-compute-reproducible-checksums.patch b/etc/patches/gcc-4.7.4/reproducibility/0002-compute-reproducible-checksums.patch index 7db6c92..c4f3e2b 100644 --- a/etc/patches/gcc-4.7.4/reproducibility/0002-compute-reproducible-checksums.patch +++ b/etc/patches/gcc-4.7.4/reproducibility/0002-compute-reproducible-checksums.patch @@ -31,7 +31,7 @@ index f3cc49fdb..7fb30a13f 100644 + rm -rf stripped_c_checksum_inputs; \ + mkdir stripped_c_checksum_inputs; \ + cp $(C_OBJS) $(BACKEND) $(LIBDEPS) stripped_c_checksum_inputs/; \ -+ strip -g stripped_c_checksum_inputs/*; \ ++ $(STRIP_FOR_TARGET) -g stripped_c_checksum_inputs/*; \ + build/genchecksum$(build_exeext) $$(ls stripped_c_checksum_inputs/* | LC_ALL=C sort) \ checksum-options > cc1-checksum.c.tmp && \ $(srcdir)/../move-if-change cc1-checksum.c.tmp cc1-checksum.c @@ -48,7 +48,7 @@ index 0ce01ac49..0fc43d305 100644 + rm -rf stripped_cp_checksum_inputs; \ + mkdir stripped_cp_checksum_inputs; \ + cp $(CXX_OBJS) $(BACKEND) $(CODYLIB) $(LIBDEPS) stripped_cp_checksum_inputs; \ -+ strip -g stripped_cp_checksum_inputs/*; \ ++ $(STRIP_FOR_TARGET) -g stripped_cp_checksum_inputs/*; \ + build/genchecksum$(build_exeext) $$(ls stripped_cp_checksum_inputs/* | LC_ALL=C sort) \ checksum-options > cc1plus-checksum.c.tmp && \ $(srcdir)/../move-if-change cc1plus-checksum.c.tmp cc1plus-checksum.c |