[llvm] 040f1c7 - [llvm] Update pgo collection script to reflect Mainainers file (#117197)

via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 21 10:54:35 PST 2024


Author: Paul Kirth
Date: 2024-11-21T10:54:32-08:00
New Revision: 040f1c78117f9ec90d951f7560198ec9b2fcaf65

URL: https://github.com/llvm/llvm-project/commit/040f1c78117f9ec90d951f7560198ec9b2fcaf65
DIFF: https://github.com/llvm/llvm-project/commit/040f1c78117f9ec90d951f7560198ec9b2fcaf65.diff

LOG: [llvm] Update pgo collection script to reflect Mainainers file (#117197)

The collect_and_build_with_pgo.py script used CODE_OWNERS.TXT as part of
its heuristic, but now that its gone, the script will fail to recognize
an LLVM checkout.

Added: 
    

Modified: 
    llvm/utils/collect_and_build_with_pgo.py

Removed: 
    


################################################################################
diff  --git a/llvm/utils/collect_and_build_with_pgo.py b/llvm/utils/collect_and_build_with_pgo.py
index 4c30dc876411ed..7d45dc88298497 100755
--- a/llvm/utils/collect_and_build_with_pgo.py
+++ b/llvm/utils/collect_and_build_with_pgo.py
@@ -425,7 +425,7 @@ def _looks_like_llvm_dir(directory):
 
     contents = set(os.listdir(directory))
     expected_contents = [
-        "CODE_OWNERS.TXT",
+        "Maintainers.md",
         "cmake",
         "docs",
         "include",


        


More information about the llvm-commits mailing list