Page MenuHomeFreeBSD

Update OptionalObsoleteFiles.inc after 021385aba562
ClosedPublic

Authored by arichardson on Sep 20 2021, 8:48 AM.
Tags
None
Referenced Files
Unknown Object (File)
Oct 4 2024, 11:59 PM
Unknown Object (File)
Oct 4 2024, 3:59 PM
Unknown Object (File)
Oct 2 2024, 12:26 PM
Unknown Object (File)
Oct 2 2024, 8:15 AM
Unknown Object (File)
Sep 30 2024, 7:56 PM
Unknown Object (File)
Sep 27 2024, 8:52 AM
Unknown Object (File)
Sep 22 2024, 11:32 PM
Unknown Object (File)
Sep 22 2024, 11:31 PM

Details

Summary

I forgot to update this file so make delete-old would incorrectly remove
the newly-installed LLVM binutils. While touching the file also update
for 8e1c989abbd1 since ObsoleteFiles.inc now inludes the tablegen binaries.

Reported by: Herbert J. Skuhra <herbert@gojira.at>

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

tools/build/mk/OptionalObsoleteFiles.inc
1222

Is && correct? If CLANG is on but LLVM_BINUTILS is not we want to remove them?

tools/build/mk/OptionalObsoleteFiles.inc
1222

If MK_CLANG==yes and MK_LLVM_BINUTILS==no we should keep the files (same for MK_CLANG==no and MK_LLVM_BINUTILS==yes), so this condition should be correct?
Right now they are deleted in the second case.

tools/build/mk/OptionalObsoleteFiles.inc
1222

Oh, right - I misremembered how LLVM_BINUTILS works.

This revision is now accepted and ready to land.Sep 20 2021, 2:04 PM