Skip to content

[CMake] Do not set CMP0116 explicitly to old #90385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Apr 26, 2025

Conversation

boomanaiden154
Copy link
Contributor

CMP0116 was originally set to old to get rid of warnings. However, this behavior is now set to new by default with the minimum CMake version that LLVM requires so does not produce any warnings, and setting it explicitly to old does produce a warning in newer CMake versions. Due to these reasons, remove this check for now.

Splitting off from removing the CMP0114 check just in case something breaks.

Partially fixes #83727.

@llvmbot llvmbot added the cmake Build system in general and CMake in particular label Apr 28, 2024
@zero9178
Copy link
Member

Last I checked, setting this to new causes issues with cmake consuming TableGens dep files. I don't fully remember the sympton but I think it'd either claim that a TableGen command is always out of date or it would not capture all dependencies and therefore not rereun a TableGen command if an included file changed.

There was a PR that would address this here #72333. Is this still needed/the case?

@boomanaiden154
Copy link
Contributor Author

Last I checked, setting this to new causes issues with cmake consuming TableGens dep files. I don't fully remember the sympton but I think it'd either claim that a TableGen command is always out of date or it would not capture all dependencies and therefore not rereun a TableGen command if an included file changed.

There was a PR that would address this here #72333. Is this still needed/the case?

Looks like it's still needed. I didn't realize this was an issue. Thanks for bringing this up! I'll make sure that gets fixed before we merge this/merge this as part of the fix.

CMP0116 was originally set to old to get rid of warnings. However, this
behavior is now set to new by default with the minimum CMake version that LLVM
requires so does not produce any warnings, and setting it explicitly to old
does produce a warning in newer CMake versions. Due to these reasons, remove
this check for now.

Splitting off from removing the CMP0114 check just in case something breaks.

This also removes two instances of a workaround related to the old
behavior of CMP0116.

Partially fixes llvm#83727.
@boomanaiden154
Copy link
Contributor Author

Updated to fix the issues based on the patch in #72333.

@llvmbot
Copy link
Member

llvmbot commented Oct 19, 2024

@llvm/pr-subscribers-mlir

Author: Aiden Grossman (boomanaiden154)

Changes

CMP0116 was originally set to old to get rid of warnings. However, this behavior is now set to new by default with the minimum CMake version that LLVM requires so does not produce any warnings, and setting it explicitly to old does produce a warning in newer CMake versions. Due to these reasons, remove this check for now.

Splitting off from removing the CMP0114 check just in case something breaks.

Partially fixes #83727.


Full diff: https://github.com/llvm/llvm-project/pull/90385.diff

3 Files Affected:

  • (modified) cmake/Modules/CMakePolicy.cmake (-6)
  • (modified) llvm/cmake/modules/TableGen.cmake (+5-10)
  • (modified) mlir/cmake/modules/AddMLIR.cmake (+5-8)
diff --git a/cmake/Modules/CMakePolicy.cmake b/cmake/Modules/CMakePolicy.cmake
index f19dfd71657171..f6ecc40d8f1279 100644
--- a/cmake/Modules/CMakePolicy.cmake
+++ b/cmake/Modules/CMakePolicy.cmake
@@ -1,11 +1,5 @@
 # CMake policy settings shared between LLVM projects
 
-# CMP0116: Ninja generators transform `DEPFILE`s from `add_custom_command()`
-# New in CMake 3.20. https://cmake.org/cmake/help/latest/policy/CMP0116.html
-if(POLICY CMP0116)
-  cmake_policy(SET CMP0116 OLD)
-endif()
-
 # MSVC debug information format flags are selected via
 # CMAKE_MSVC_DEBUG_INFORMATION_FORMAT, instead of
 # embedding flags in e.g. CMAKE_CXX_FLAGS_RELEASE.
diff --git a/llvm/cmake/modules/TableGen.cmake b/llvm/cmake/modules/TableGen.cmake
index ffcc718b47775f..d2ff1cfa553b39 100644
--- a/llvm/cmake/modules/TableGen.cmake
+++ b/llvm/cmake/modules/TableGen.cmake
@@ -23,18 +23,13 @@ function(tablegen project ofn)
 
   # Use depfile instead of globbing arbitrary *.td(s) for Ninja.
   if(CMAKE_GENERATOR MATCHES "Ninja")
-    # Make output path relative to build.ninja, assuming located on
-    # ${CMAKE_BINARY_DIR}.
     # CMake emits build targets as relative paths but Ninja doesn't identify
-    # absolute path (in *.d) as relative path (in build.ninja)
-    # Note that tblgen is executed on ${CMAKE_BINARY_DIR} as working directory.
-    file(RELATIVE_PATH ofn_rel
-      ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/${ofn})
+    # absolute path (in *.d) as relative path (in build.ninja). Post CMP0116,
+    # CMake handles this discrepancy for us.
     set(additional_cmdline
-      -o ${ofn_rel}
-      -d ${ofn_rel}.d
-      WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
-      DEPFILE ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.d
+      -o ${ofn}
+      -d ${ofn}.d
+      DEPFILE ${ofn}.d
       )
     set(local_tds)
     set(global_tds)
diff --git a/mlir/cmake/modules/AddMLIR.cmake b/mlir/cmake/modules/AddMLIR.cmake
index a3324705c525ce..bbe5976d7a3e76 100644
--- a/mlir/cmake/modules/AddMLIR.cmake
+++ b/mlir/cmake/modules/AddMLIR.cmake
@@ -47,15 +47,12 @@ function(_pdll_tablegen project ofn)
     # Make output path relative to build.ninja, assuming located on
     # ${CMAKE_BINARY_DIR}.
     # CMake emits build targets as relative paths but Ninja doesn't identify
-    # absolute path (in *.d) as relative path (in build.ninja)
-    # Note that tblgen is executed on ${CMAKE_BINARY_DIR} as working directory.
-    file(RELATIVE_PATH ofn_rel
-      ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/${ofn})
+    # absolute path (in *.d) as relative path (in build.ninja). Post CMP0116,
+    # CMake handles this discrepancy for us.
     set(additional_cmdline
-      -o ${ofn_rel}
-      -d ${ofn_rel}.d
-      WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
-      DEPFILE ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.d
+      -o ${ofn}
+      -d ${ofn}.d
+      DEPFILE ${ofn}.d
       )
     set(local_tds)
     set(global_tds)

Copy link
Contributor

@chapuni chapuni left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me reconfirm later. apparently looks good.

Note, when I introduced it, CMake didn't have CMP0116 NEW behavior.

@boomanaiden154
Copy link
Contributor Author

@chapuni Are you able to take another look at this when you get a chance? Thanks.

Copy link
Contributor

@chapuni chapuni left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@boomanaiden154 Sorry for delay. I was busy the last week.
I just wanted to reconfirm in my local tree, but it'd be fine now!

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder polly-x86_64-linux-shared running on polly-x86_64-gce2 while building cmake,llvm,mlir at step 5 "build".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/97/builds/6310

Here is the relevant piece of the build log for the reference
Step 5 (build) failure: 'ninja' (failure)
...
[198/4390] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/RISCVTargetDefEmitter.cpp.o
[199/4390] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/IntrinsicEmitter.cpp.o
[200/4390] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/SDNodeProperties.cpp.o
[201/4390] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/VTEmitter.cpp.o
[202/4390] Generating VCSRevision.h
[203/4390] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/TableGen.cpp.o
[204/4390] Linking CXX executable bin/llvm-min-tblgen
[205/4390] Building CXX object lib/Bitstream/Reader/CMakeFiles/LLVMBitstreamReader.dir/BitstreamReader.cpp.o
[206/4390] Building CXX object lib/FileCheck/CMakeFiles/LLVMFileCheck.dir/FileCheck.cpp.o
[207/4390] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen && /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/bin/llvm-min-tblgen -gen-vt -I /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc.d /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/CMakeFiles/d/cc4f53ddd2d1ea066d47d9a972fd88698c5baf66014dab62507dbca345ee9875.d
[208/4390] Linking CXX shared library lib/libLLVMTableGenBasic.so.21.0git
[209/4390] Building IntrinsicEnums.inc...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder openmp-offload-amdgpu-runtime-2 running on rocm-worker-hw-02 while building cmake,llvm,mlir at step 5 "compile-openmp".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/10/builds/4193

Here is the relevant piece of the build log for the reference
Step 5 (compile-openmp) failure: build (failure)
...
0.385 [3956/6/657] Linking CXX shared library lib/libLLVMDebugInfoCodeView.so.21.0git
0.390 [3955/6/658] Creating library symlink lib/libllvm_gtest.so
0.393 [3954/6/659] Creating library symlink lib/libLLVMDebugInfoCodeView.so
0.423 [3954/5/660] Linking CXX executable bin/FileCheck
0.440 [3954/4/661] Linking CXX shared library lib/libllvm_gtest_main.so.21.0git
0.441 [3953/4/662] Linking CXX shared library lib/libLLVMTableGenBasic.so.21.0git
0.442 [3952/4/663] Linking CXX executable bin/llvm-min-tblgen
0.449 [3925/30/664] Creating library symlink lib/libllvm_gtest_main.so
0.450 [3925/29/665] Creating library symlink lib/libLLVMTableGenBasic.so
0.455 [3925/28/666] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include/llvm/IR/Attributes.inc 
cd /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include/llvm/IR && /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/llvm-min-tblgen -gen-attrs -I /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/include/llvm/IR -I/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include -I/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/include /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/include/llvm/IR /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include/llvm/IR /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include/llvm/IR/Attributes.inc.d /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/CMakeFiles/d/5cc6f05cce00778e63901dae742e3e98bc97b19208cf8b7399176b22b049bec5.d
0.455 [3925/27/667] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include/llvm/CodeGen/GenVT.inc 
cd /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include/llvm/CodeGen && /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/llvm-min-tblgen -gen-vt -I /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/include/llvm/CodeGen -I/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include -I/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/include /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/include/llvm/CodeGen /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include/llvm/CodeGen /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/include/llvm/CodeGen/GenVT.inc.d /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/CMakeFiles/d/f563bd63ee3130c07518c37cc6063f51b737f3ccd4f71a676f6a8090ae31aa9a.d
0.458 [3925/26/668] Building ACC.h.inc...
0.460 [3925/25/669] Building OMP.h.inc...
0.463 [3925/24/670] Building OMP.inc...
0.465 [3925/23/671] Building ACC.inc...
0.478 [3925/22/672] Linking CXX executable bin/clang-tblgen
0.696 [3925/21/673] Building IntrinsicsAArch64.h...
0.701 [3925/20/674] Building IntrinsicsARM.h...
0.702 [3925/19/675] Building IntrinsicsR600.h...
0.702 [3925/18/676] Building IntrinsicsSPIRV.h...
0.702 [3925/17/677] Building IntrinsicsBPF.h...
0.702 [3925/16/678] Building IntrinsicsNVPTX.h...
0.703 [3925/15/679] Building IntrinsicsVE.h...
0.703 [3925/14/680] Building IntrinsicsPowerPC.h...
0.705 [3925/13/681] Building IntrinsicsDirectX.h...
0.705 [3925/12/682] Building IntrinsicsAMDGPU.h...
0.705 [3925/11/683] Building IntrinsicsWebAssembly.h...
0.707 [3925/10/684] Building IntrinsicsMips.h...
0.707 [3925/9/685] Building IntrinsicEnums.inc...
0.707 [3925/8/686] Building IntrinsicsXCore.h...
0.708 [3925/7/687] Building IntrinsicsS390.h...
0.708 [3925/6/688] Building IntrinsicsHexagon.h...
0.709 [3925/5/689] Building IntrinsicsRISCV.h...
0.710 [3925/4/690] Building IntrinsicsX86.h...
0.710 [3925/3/691] Building IntrinsicsLoongArch.h...
0.739 [3925/2/692] Building IntrinsicImpl.inc...
0.888 [3925/1/693] Building ARMTargetParserDef.inc...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder openmp-s390x-linux running on systemz-1 while building cmake,llvm,mlir at step 5 "compile-openmp".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/88/builds/10933

Here is the relevant piece of the build log for the reference
Step 5 (compile-openmp) failure: build (failure)
...
1.220 [5145/4/224] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugInlineeLinesSubsection.cpp.o
1.225 [5144/4/225] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugLinesSubsection.cpp.o
1.231 [5143/4/226] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugStringTableSubsection.cpp.o
1.237 [5142/4/227] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSubsection.cpp.o
1.243 [5141/4/228] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSubsectionRecord.cpp.o
1.249 [5140/4/229] Linking CXX executable bin/llvm-min-tblgen
1.252 [5139/4/230] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSubsectionVisitor.cpp.o
1.259 [5138/4/231] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSymbolRVASubsection.cpp.o
1.262 [5137/4/232] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSymbolsSubsection.cpp.o
1.276 [5136/4/233] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include/llvm/CodeGen/GenVT.inc 
cd /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include/llvm/CodeGen && /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/bin/llvm-min-tblgen -gen-vt -I /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm/include/llvm/CodeGen -I/home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include -I/home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm/include /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm/include/llvm/CodeGen /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include/llvm/CodeGen /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include/llvm/CodeGen/GenVT.inc.d /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/CMakeFiles/d/4e0fd495e838f08cb3ca771a8c1565369ddbfa857fa5c03566fb14de7745d21c.d
1.278 [5136/3/234] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include/llvm/IR/Attributes.inc 
cd /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include/llvm/IR && /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/bin/llvm-min-tblgen -gen-attrs -I /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm/include/llvm/IR -I/home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include -I/home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm/include /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.src/llvm/include/llvm/IR /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include/llvm/IR /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/include/llvm/IR/Attributes.inc.d /home/uweigand/sandbox/buildbot/openmp-s390x-linux/llvm.build/CMakeFiles/d/ce07451edc1189f0214213ae3bbb6e7c58da9675a54281a538d5281e675881e9.d
1.664 [5136/2/235] Building IntrinsicsMips.h...
1.686 [5136/1/236] Building IntrinsicsR600.h...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder amdgpu-offload-ubuntu-22-cmake-build-only running on rocm-docker-ubu-22 while building cmake,llvm,mlir at step 4 "annotate".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/203/builds/8765

Here is the relevant piece of the build log for the reference
Step 4 (annotate) failure: '../llvm-zorg/zorg/buildbot/builders/annotated/amdgpu-offload-cmake.py --jobs=32' (failure)
...
[684/7781] Linking CXX shared library lib/libLLVMDebugInfoCodeView.so.21.0git
[685/7781] Creating library symlink lib/libLLVMDebugInfoCodeView.so
[686/7781] Building CXX object tools/flang/unittests/Evaluate/CMakeFiles/bit-population-count.test.dir/bit-population-count.cpp.o
[687/7781] Linking CXX executable bin/FileCheck
[688/7781] Linking CXX shared library lib/libllvm_gtest_main.so.21.0git
[689/7781] Linking CXX shared library lib/libLLVMTableGenBasic.so.21.0git
[690/7781] Creating library symlink lib/libllvm_gtest_main.so
[691/7781] Linking CXX executable bin/llvm-min-tblgen
[692/7781] Creating library symlink lib/libLLVMTableGenBasic.so
[693/7781] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include/llvm/IR/Attributes.inc 
cd /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include/llvm/IR && /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/bin/llvm-min-tblgen -gen-attrs -I /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm/include/llvm/IR -I/home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include -I/home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm/include /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm/include/llvm/IR /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include/llvm/IR /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include/llvm/IR/Attributes.inc.d /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/CMakeFiles/d/3f07c9674bdc16709e244b1997df7e5eea41e118b046900e1bbdb6cdc2c23a78.d
[694/7781] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include/llvm/CodeGen/GenVT.inc 
cd /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include/llvm/CodeGen && /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/bin/llvm-min-tblgen -gen-vt -I /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm/include/llvm/CodeGen -I/home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include -I/home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm/include /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/llvm-project/llvm/include/llvm/CodeGen /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include/llvm/CodeGen /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/include/llvm/CodeGen/GenVT.inc.d /home/botworker/bbot/amdgpu-offload-ubuntu-22-cmake-build-only/build/CMakeFiles/d/21930eadfa03faa5f9167c6041eef63b9088e107f95a260a598f5c41c6e63c6f.d
[695/7781] Building ACC.inc...
[696/7781] Building ACC.h.inc...
[697/7781] Building OMP.inc...
[698/7781] Building OMP.h.inc...
[699/7781] Linking CXX executable bin/clang-tblgen
[700/7781] Building CXX object tools/flang/unittests/Decimal/CMakeFiles/quick-sanity-test.test.dir/quick-sanity-test.cpp.o
[701/7781] Building CXX object tools/flang/lib/Testing/CMakeFiles/NonGTestTesting.dir/fp-testing.cpp.o
[702/7781] Building CXX object tools/flang/lib/Testing/CMakeFiles/NonGTestTesting.dir/testing.cpp.o
[703/7781] Building CXX object tools/flang/unittests/Evaluate/CMakeFiles/uint128.test.dir/uint128.cpp.o
[704/7781] Building CXX object tools/flang/unittests/Decimal/CMakeFiles/thorough-test.slow.dir/thorough-test.cpp.o
[705/7781] Building IntrinsicsRISCV.h...
[706/7781] Building IntrinsicsSPIRV.h...
[707/7781] Building IntrinsicsVE.h...
[708/7781] Building IntrinsicEnums.inc...
[709/7781] Building IntrinsicsAMDGPU.h...
[710/7781] Building IntrinsicsNVPTX.h...
[711/7781] Building IntrinsicsARM.h...
[712/7781] Building IntrinsicsHexagon.h...
[713/7781] Building IntrinsicsAArch64.h...
[714/7781] Building IntrinsicsPowerPC.h...
[715/7781] Building IntrinsicsDirectX.h...
[716/7781] Building IntrinsicsBPF.h...
[717/7781] Building IntrinsicsLoongArch.h...
[718/7781] Building IntrinsicsWebAssembly.h...
[719/7781] Building IntrinsicsMips.h...
[720/7781] Building IntrinsicsXCore.h...
[721/7781] Building IntrinsicsS390.h...
[722/7781] Building IntrinsicsX86.h...
[723/7781] Building IntrinsicsR600.h...
[724/7781] Building IntrinsicImpl.inc...
[725/7781] Building CXX object tools/flang/lib/Decimal/CMakeFiles/FortranDecimal.dir/decimal-to-binary.cpp.o
[726/7781] Building CXX object tools/flang/lib/Decimal/CMakeFiles/FortranDecimal.dir/binary-to-decimal.cpp.o
ninja: build stopped: subcommand failed.
['ninja'] exited with return code 1.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder polly-x86_64-linux-shlib running on polly-x86_64-gce2 while building cmake,llvm,mlir at step 5 "build".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/99/builds/6185

Here is the relevant piece of the build log for the reference
Step 5 (build) failure: 'ninja' (failure)
...
[198/4237] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/VTEmitter.cpp.o
[199/4237] Linking CXX static library lib/libLLVMTableGen.a
[200/4237] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/IntrinsicEmitter.cpp.o
[201/4237] Generating VCSRevision.h
[202/4237] Linking CXX static library lib/libLLVMTableGenBasic.a
[203/4237] Building CXX object lib/FileCheck/CMakeFiles/LLVMFileCheck.dir/FileCheck.cpp.o
[204/4237] Linking CXX executable bin/llvm-min-tblgen
[205/4237] Linking CXX static library lib/libLLVMFileCheck.a
[206/4237] Building CXX object lib/Option/CMakeFiles/LLVMOption.dir/Arg.cpp.o
[207/4237] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen && /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/bin/llvm-min-tblgen -gen-vt -I /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc.d /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/CMakeFiles/d/cc4f53ddd2d1ea066d47d9a972fd88698c5baf66014dab62507dbca345ee9875.d
[208/4237] Building IntrinsicsBPF.h...
[209/4237] Building IntrinsicsR600.h...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder mlir-s390x-linux running on systemz-1 while building cmake,llvm,mlir at step 5 "build-unified-tree".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/117/builds/9091

Here is the relevant piece of the build log for the reference
Step 5 (build-unified-tree) failure: build (failure)
...
1.325 [4596/4/229] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSubsectionRecord.cpp.o
1.330 [4595/4/230] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSubsectionVisitor.cpp.o
1.333 [4594/4/231] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSymbolRVASubsection.cpp.o
1.338 [4593/4/232] Linking CXX executable bin/llvm-min-tblgen
1.344 [4592/4/233] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSymbolsSubsection.cpp.o
1.351 [4591/4/234] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/Formatters.cpp.o
1.356 [4590/4/235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/EnumTables.cpp.o
1.364 [4589/4/236] Building ACC.inc...
1.366 [4588/4/237] Building ACC.h.inc...
1.375 [4587/4/238] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include/llvm/CodeGen/GenVT.inc 
cd /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include/llvm/CodeGen && /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/bin/llvm-min-tblgen -gen-vt -I /home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm/include/llvm/CodeGen -I/home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include -I/home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm/include /home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm /home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm/include/llvm/CodeGen /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include/llvm/CodeGen /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include/llvm/CodeGen/GenVT.inc.d /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/CMakeFiles/d/2badade81cedeea1ec8f53d83a76d46d2ef9bb168183611404d157a3ddad2336.d
1.384 [4587/3/239] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include/llvm/IR/Attributes.inc 
cd /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include/llvm/IR && /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/bin/llvm-min-tblgen -gen-attrs -I /home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm/include/llvm/IR -I/home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include -I/home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm/include /home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm /home/uweigand/sandbox/buildbot/mlir-s390x-linux/llvm-project/llvm/include/llvm/IR /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include/llvm/IR /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/include/llvm/IR/Attributes.inc.d /home/uweigand/sandbox/buildbot/mlir-s390x-linux/build/CMakeFiles/d/63f824050d2a9873f5f3dc444c7bd08560cc932939d64de0a5f2be9445c78762.d
1.760 [4587/2/240] Building IntrinsicsPowerPC.h...
1.828 [4587/1/241] Building IntrinsicImpl.inc...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder openmp-offload-sles-build-only running on rocm-worker-hw-04-sles while building cmake,llvm,mlir at step 5 "compile-openmp".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/140/builds/22004

Here is the relevant piece of the build log for the reference
Step 5 (compile-openmp) failure: build (failure)
...
0.598 [6481/21/659] Building CXX object third-party/benchmark/src/CMakeFiles/benchmark.dir/perf_counters.cc.o
0.598 [6481/20/660] Building CXX object third-party/benchmark/src/CMakeFiles/benchmark.dir/reporter.cc.o
0.602 [6481/19/661] Building CXX object third-party/benchmark/src/CMakeFiles/benchmark.dir/statistics.cc.o
0.604 [6481/18/662] Building CXX object third-party/benchmark/src/CMakeFiles/benchmark.dir/string_util.cc.o
0.608 [6481/17/663] Building CXX object third-party/benchmark/src/CMakeFiles/benchmark.dir/timers.cc.o
0.609 [6481/16/664] Building CXX object third-party/benchmark/src/CMakeFiles/benchmark.dir/sysinfo.cc.o
0.611 [6480/16/665] Linking CXX executable bin/llvm-min-tblgen
0.617 [6463/32/666] Linking CXX shared module unittests/Support/DynamicLibrary/PipSqueak.so
0.620 [6462/32/667] Linking CXX shared module unittests/Support/DynamicLibrary/SecondLib.so
0.623 [6461/32/668] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc 
cd /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/include/llvm/IR && /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/llvm-min-tblgen -gen-attrs -I /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/include/llvm/IR -I/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/include -I/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/include /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/include/llvm/IR /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/include/llvm/IR /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/include/llvm/IR/Attributes.inc.d /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/CMakeFiles/d/b5c7e63db2e1f10bfda808bb4afc7873cac49424c353a344f9d1b277a6c95800.d
0.624 [6461/31/669] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc 
cd /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/include/llvm/CodeGen && /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/llvm-min-tblgen -gen-vt -I /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/include/llvm/CodeGen -I/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/include -I/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/include /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/include/llvm/CodeGen /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/include/llvm/CodeGen /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/include/llvm/CodeGen/GenVT.inc.d /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/CMakeFiles/d/0554a064cc3ee1833331216f56525ab726b75b6021fb6a1373511d9a22b0a4a9.d
0.632 [6461/30/670] Linking CXX static library lib/libbenchmark.a
0.664 [6461/29/671] Linking CXX executable bin/reduce-chunk-list
0.674 [6461/28/672] Linking CXX executable bin/llvm-undname
0.698 [6461/27/673] Linking CXX executable bin/clang-tblgen
0.787 [6461/26/674] Building CXX object tools/flang/unittests/Evaluate/CMakeFiles/leading-zero-bit-count.test.dir/leading-zero-bit-count.cpp.o
0.812 [6461/25/675] Building CXX object tools/flang/unittests/Evaluate/CMakeFiles/bit-population-count.test.dir/bit-population-count.cpp.o
0.860 [6461/24/676] Building IntrinsicsDirectX.h...
0.863 [6461/23/677] Building IntrinsicEnums.inc...
0.865 [6461/22/678] Building IntrinsicsAMDGPU.h...
0.865 [6461/21/679] Building IntrinsicsMips.h...
0.869 [6461/20/680] Building IntrinsicsS390.h...
0.869 [6461/19/681] Building IntrinsicsAArch64.h...
0.870 [6461/18/682] Building IntrinsicsLoongArch.h...
0.872 [6461/17/683] Building IntrinsicsNVPTX.h...
0.873 [6461/16/684] Building IntrinsicsARM.h...
0.873 [6461/15/685] Building IntrinsicsPowerPC.h...
0.873 [6461/14/686] Building IntrinsicsHexagon.h...
0.874 [6461/13/687] Building IntrinsicsR600.h...
0.874 [6461/12/688] Building IntrinsicsBPF.h...
0.875 [6461/11/689] Building IntrinsicsRISCV.h...
0.875 [6461/10/690] Building IntrinsicsSPIRV.h...
0.877 [6461/9/691] Building IntrinsicsVE.h...
0.907 [6461/8/692] Building IntrinsicImpl.inc...
0.927 [6461/7/693] Building CXX object tools/flang/lib/Testing/CMakeFiles/NonGTestTesting.dir/fp-testing.cpp.o
0.977 [6461/6/694] Building CXX object tools/flang/lib/Testing/CMakeFiles/NonGTestTesting.dir/testing.cpp.o
1.040 [6461/5/695] Building CXX object tools/flang/unittests/Decimal/CMakeFiles/thorough-test.slow.dir/thorough-test.cpp.o
1.046 [6461/4/696] Building CXX object tools/flang/unittests/Decimal/CMakeFiles/quick-sanity-test.test.dir/quick-sanity-test.cpp.o
1.104 [6461/3/697] Building CXX object tools/flang/unittests/Evaluate/CMakeFiles/uint128.test.dir/uint128.cpp.o
1.440 [6461/2/698] Building CXX object tools/flang/lib/Decimal/CMakeFiles/FortranDecimal.dir/decimal-to-binary.cpp.o
2.354 [6461/1/699] Building CXX object tools/flang/lib/Decimal/CMakeFiles/FortranDecimal.dir/binary-to-decimal.cpp.o
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder polly-x86_64-linux-shlib-plugin running on polly-x86_64-gce2 while building cmake,llvm,mlir at step 5 "build".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/75/builds/6450

Here is the relevant piece of the build log for the reference
Step 5 (build) failure: 'ninja' (failure)
...
[200/4237] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/TableGen.cpp.o
[201/4237] Building CXX object lib/FileCheck/CMakeFiles/LLVMFileCheck.dir/FileCheck.cpp.o
[202/4237] Generating VCSRevision.h
[203/4237] Linking CXX static library lib/libLLVMFileCheck.a
[204/4237] Linking CXX static library lib/libLLVMTableGenBasic.a
[205/4237] Building CXX object lib/Option/CMakeFiles/LLVMOption.dir/Arg.cpp.o
[206/4237] Linking CXX executable bin/llvm-min-tblgen
[207/4237] Building CXX object lib/Option/CMakeFiles/LLVMOption.dir/Option.cpp.o
[208/4237] Building CXX object lib/Option/CMakeFiles/LLVMOption.dir/ArgList.cpp.o
[209/4237] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen && /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/bin/llvm-min-tblgen -gen-vt -I /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc.d /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/CMakeFiles/d/cc4f53ddd2d1ea066d47d9a972fd88698c5baf66014dab62507dbca345ee9875.d
[210/4237] Building IntrinsicsBPF.h...
[211/4237] Building IntrinsicsR600.h...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder polly-x86_64-linux-shared-plugin running on polly-x86_64-gce2 while building cmake,llvm,mlir at step 5 "build".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/118/builds/6008

Here is the relevant piece of the build log for the reference
Step 5 (build) failure: 'ninja' (failure)
...
[200/4390] Linking CXX shared library lib/libLLVMTableGen.so.21.0git
[201/4390] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/VTEmitter.cpp.o
[202/4390] Creating library symlink lib/libLLVMTableGen.so
[203/4390] Building CXX object lib/FileCheck/CMakeFiles/LLVMFileCheck.dir/FileCheck.cpp.o
[204/4390] Generating VCSRevision.h
[205/4390] Linking CXX shared library lib/libLLVMTableGenBasic.so.21.0git
[206/4390] Linking CXX executable bin/llvm-min-tblgen
[207/4390] Creating library symlink lib/libLLVMTableGenBasic.so
[208/4390] Linking CXX shared library lib/libLLVMFileCheck.so.21.0git
[209/4390] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen && /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/bin/llvm-min-tblgen -gen-vt -I /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc.d /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/CMakeFiles/d/cc4f53ddd2d1ea066d47d9a972fd88698c5baf66014dab62507dbca345ee9875.d
[210/4390] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/IR/Attributes.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/IR && /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/bin/llvm-min-tblgen -gen-attrs -I /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/IR -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.src/llvm/include/llvm/IR /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/IR /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/include/llvm/IR/Attributes.inc.d /home/worker/buildbot-workers/polly-x86_64-gce2/rundir/llvm.obj/CMakeFiles/d/eb03efb97216fd07b9f120d3ae9fd65f682956794fd214657d0fbb2c09134676.d
[211/4390] Building IntrinsicEnums.inc...
ninja: build stopped: subcommand failed.

boomanaiden154 added a commit that referenced this pull request Apr 26, 2025
This reverts commit ab405fb.

This caused quite a few buildbot failures that need further
investigation.
@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder lld-x86_64-ubuntu-fast running on as-builder-4 while building cmake,llvm,mlir at step 5 "build-unified-tree".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/33/builds/15496

Here is the relevant piece of the build log for the reference
Step 5 (build-unified-tree) failure: build (failure)
...
0.314 [3643/9/306] Linking CXX static library lib/libLLVMTableGenBasic.a
0.398 [3643/8/307] Linking CXX executable bin/UnicodeNameMappingGenerator
0.402 [3643/7/308] Linking CXX executable bin/not
0.410 [3643/6/309] Linking CXX executable bin/reduce-chunk-list
0.413 [3643/5/310] Linking CXX executable bin/split-file
0.416 [3643/4/311] Linking CXX executable bin/yaml-bench
0.426 [3643/3/312] Linking CXX executable bin/llvm-undname
0.456 [3643/2/313] Linking CXX executable bin/FileCheck
0.513 [3643/1/314] Linking CXX executable bin/llvm-min-tblgen
0.539 [3616/27/315] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include/llvm/IR/Attributes.inc 
cd /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include/llvm/IR && /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/llvm-min-tblgen -gen-attrs -I /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include/llvm/IR -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include/llvm/IR /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include/llvm/IR /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include/llvm/IR/Attributes.inc.d /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/CMakeFiles/d/666a3711e43c21a9565bc3cff6396cf0c68b13bc1b2a4eb0290ac2cf0bf1b1d2.d
0.540 [3616/26/316] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include/llvm/CodeGen/GenVT.inc 
cd /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include/llvm/CodeGen && /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/llvm-min-tblgen -gen-vt -I /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include/llvm/CodeGen -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include/llvm/CodeGen /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include/llvm/CodeGen /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include/llvm/CodeGen/GenVT.inc.d /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/CMakeFiles/d/8fb8f451adcb30cab448891b2cea7770c1a157eecd19e4bfdb2e18b3215245df.d
0.541 [3616/25/317] Building ACC.inc...
0.550 [3616/24/318] Building ACC.h.inc...
0.551 [3616/23/319] Building OMP.h.inc...
0.560 [3616/22/320] Building OMP.inc...
0.948 [3616/21/321] Building IntrinsicsDirectX.h...
0.951 [3616/20/322] Building IntrinsicsWebAssembly.h...
0.951 [3616/19/323] Building IntrinsicsS390.h...
0.952 [3616/18/324] Building IntrinsicsR600.h...
0.954 [3616/17/325] Building IntrinsicEnums.inc...
0.955 [3616/16/326] Building IntrinsicsARM.h...
0.956 [3616/15/327] Building IntrinsicsRISCV.h...
0.957 [3616/14/328] Building IntrinsicsMips.h...
0.958 [3616/13/329] Building IntrinsicsBPF.h...
0.959 [3616/12/330] Building IntrinsicsLoongArch.h...
0.960 [3616/11/331] Building IntrinsicsAMDGPU.h...
0.960 [3616/10/332] Building IntrinsicsPowerPC.h...
0.962 [3616/9/333] Building IntrinsicsX86.h...
0.963 [3616/8/334] Building IntrinsicsAArch64.h...
0.963 [3616/7/335] Building IntrinsicsHexagon.h...
0.964 [3616/6/336] Building IntrinsicsNVPTX.h...
0.967 [3616/5/337] Building IntrinsicsSPIRV.h...
0.968 [3616/4/338] Building IntrinsicsVE.h...
0.970 [3616/3/339] Building IntrinsicsXCore.h...
1.024 [3616/2/340] Building IntrinsicImpl.inc...
1.201 [3616/1/341] Building ARMTargetParserDef.inc...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder flang-runtime-cuda-clang running on as-builder-7 while building cmake,llvm,mlir at step 7 "build-flang-default".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/7/builds/13956

Here is the relevant piece of the build log for the reference
Step 7 (build-flang-default) failure: cmake (failure)
...
0.923 [7040/16/725] Linking CXX executable bin/yaml-bench
0.946 [7040/15/726] Linking CXX executable bin/split-file
0.956 [7040/14/727] Linking CXX executable bin/llvm-undname
0.960 [7040/13/728] Linking CXX shared module unittests/Support/DynamicLibrary/SecondLib.so
0.971 [7040/12/729] Linking CXX shared module unittests/Support/DynamicLibrary/PipSqueak.so
0.973 [7040/11/730] Building CXX object projects/openmp/runtime/src/CMakeFiles/omp.dir/z_Linux_util.cpp.o
1.027 [7039/11/731] Linking CXX executable bin/FileCheck
1.113 [7039/10/732] Linking CXX executable bin/llvm-min-tblgen
1.133 [7012/36/733] Linking CXX executable bin/clang-tidy-confusable-chars-gen
1.150 [7011/36/734] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include/llvm/IR/Attributes.inc 
cd /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include/llvm/IR && /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/bin/llvm-min-tblgen -gen-attrs -I /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm/include/llvm/IR -I/home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include -I/home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm/include /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm/include/llvm/IR /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include/llvm/IR /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include/llvm/IR/Attributes.inc.d /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/CMakeFiles/d/50d30bc4faab6daa3bc17539409df486aa9a235e198d586e05ff2d7a952f8797.d
1.152 [7011/35/735] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include/llvm/CodeGen/GenVT.inc 
cd /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include/llvm/CodeGen && /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/bin/llvm-min-tblgen -gen-vt -I /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm/include/llvm/CodeGen -I/home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include -I/home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm/include /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/llvm-project/llvm/include/llvm/CodeGen /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include/llvm/CodeGen /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/include/llvm/CodeGen/GenVT.inc.d /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-clang/build/flang/CMakeFiles/d/a50acea06460c36fb3539ec8082e70a810f732b3ea6d4a65f7f2c614c9e15e78.d
1.153 [7011/34/736] Generating Confusables.inc
1.155 [7011/33/737] Linking CXX executable bin/reduce-chunk-list
1.161 [7011/32/738] Building ACC.h.inc...
1.166 [7011/31/739] Building ACC.inc...
1.170 [7011/30/740] Building OMP.h.inc...
1.173 [7011/29/741] Linking CXX executable tools/flang/unittests/Decimal/thorough-test.slow
1.179 [7011/28/742] Building OMP.inc...
1.228 [7011/27/743] Linking CXX executable tools/flang/unittests/Decimal/quick-sanity-test.test
1.238 [7011/26/744] Linking CXX executable tools/flang/unittests/Evaluate/leading-zero-bit-count.test
1.244 [7011/25/745] Linking CXX executable tools/flang/unittests/Evaluate/uint128.test
1.251 [7011/24/746] Linking CXX executable tools/flang/unittests/Evaluate/bit-population-count.test
1.279 [7011/23/747] Linking C shared library lib/libomp.so
1.356 [7011/22/748] Linking CXX executable bin/clang-tblgen
2.124 [7011/21/749] Building IntrinsicsHexagon.h...
2.125 [7011/20/750] Building IntrinsicsBPF.h...
2.127 [7011/19/751] Building IntrinsicsARM.h...
2.128 [7011/18/752] Building IntrinsicEnums.inc...
2.133 [7011/17/753] Building IntrinsicsLoongArch.h...
2.133 [7011/16/754] Building IntrinsicsPowerPC.h...
2.134 [7011/15/755] Building IntrinsicsNVPTX.h...
2.134 [7011/14/756] Building IntrinsicsAMDGPU.h...
2.143 [7011/13/757] Building IntrinsicsVE.h...
2.145 [7011/12/758] Building IntrinsicsAArch64.h...
2.146 [7011/11/759] Building IntrinsicsRISCV.h...
2.146 [7011/10/760] Building IntrinsicsX86.h...
2.148 [7011/9/761] Building IntrinsicsR600.h...
2.148 [7011/8/762] Building IntrinsicsMips.h...
2.149 [7011/7/763] Building IntrinsicsDirectX.h...
2.150 [7011/6/764] Building IntrinsicsWebAssembly.h...
2.150 [7011/5/765] Building IntrinsicsXCore.h...
2.152 [7011/4/766] Building IntrinsicsS390.h...
2.153 [7011/3/767] Building IntrinsicsSPIRV.h...
2.253 [7011/2/768] Building IntrinsicImpl.inc...
2.614 [7011/1/769] Building ARMTargetParserDef.inc...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder flang-runtime-cuda-gcc running on as-builder-7 while building cmake,llvm,mlir at step 6 "build-flang-rt".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/152/builds/2361

Here is the relevant piece of the build log for the reference
Step 6 (build-flang-rt) failure: cmake (failure)
...
0.555 [6351/9/312] Linking CXX static library lib/libLLVMTableGen.a
0.580 [6348/11/313] Linking CXX static library lib/libllvm_gtest_main.a
0.589 [6348/10/314] Linking CXX static library lib/libMLIRTblgenLib.a
0.589 [6348/9/315] Linking CXX executable bin/count
0.592 [6348/8/316] Linking CXX static library lib/libLLVMDebugInfoCodeView.a
0.843 [6348/7/317] Linking CXX executable bin/not
0.863 [6348/6/318] Linking CXX executable bin/split-file
0.960 [6348/5/319] Linking CXX executable bin/FileCheck
1.079 [6348/4/320] Linking CXX executable bin/llvm-min-tblgen
1.114 [6321/30/321] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include/llvm/IR/Attributes.inc 
cd /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include/llvm/IR && /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/bin/llvm-min-tblgen -gen-attrs -I /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm/include/llvm/IR -I/home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include -I/home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm/include /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm/include/llvm/IR /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include/llvm/IR /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include/llvm/IR/Attributes.inc.d /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/CMakeFiles/d/239885021673a39d007afe28c972fa0272cdc83b077b9736138eae0ce20a77ab.d
1.116 [6321/29/322] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include/llvm/CodeGen/GenVT.inc 
cd /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include/llvm/CodeGen && /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/bin/llvm-min-tblgen -gen-vt -I /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm/include/llvm/CodeGen -I/home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include -I/home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm/include /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/llvm-project/llvm/include/llvm/CodeGen /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include/llvm/CodeGen /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/include/llvm/CodeGen/GenVT.inc.d /home/buildbot/worker/as-builder-7/ramdisk/flang-runtime-cuda-gcc/build/CMakeFiles/d/f5a311b4ec55e4195ac6bec107ec5e7555f5f33aeb4dfafecb754b7e747bfc17.d
1.129 [6321/28/323] Building ACC.h.inc...
1.130 [6321/27/324] Building ACC.inc...
1.135 [6321/26/325] Building OMP.h.inc...
1.143 [6321/25/326] Building OMP.inc...
1.189 [6321/24/327] Linking CXX executable bin/clang-tblgen
2.087 [6321/23/328] Building IntrinsicEnums.inc...
2.089 [6321/22/329] Building IntrinsicsDirectX.h...
2.092 [6321/21/330] Building IntrinsicsS390.h...
2.094 [6321/20/331] Building IntrinsicsR600.h...
2.094 [6321/19/332] Building IntrinsicsARM.h...
2.096 [6321/18/333] Building IntrinsicsLoongArch.h...
2.101 [6321/17/334] Building IntrinsicsWebAssembly.h...
2.102 [6321/16/335] Building IntrinsicsBPF.h...
2.103 [6321/15/336] Building IntrinsicsRISCV.h...
2.104 [6321/14/337] Building IntrinsicsNVPTX.h...
2.106 [6321/13/338] Building IntrinsicsAMDGPU.h...
2.106 [6321/12/339] Building IntrinsicsHexagon.h...
2.106 [6321/11/340] Building IntrinsicsXCore.h...
2.108 [6321/10/341] Building IntrinsicsVE.h...
2.109 [6321/9/342] Building IntrinsicsPowerPC.h...
2.110 [6321/8/343] Building IntrinsicsMips.h...
2.141 [6321/7/344] Building IntrinsicsX86.h...
2.146 [6321/6/345] Building IntrinsicsSPIRV.h...
2.153 [6321/5/346] Building IntrinsicsAArch64.h...
2.218 [6321/4/347] Building IntrinsicImpl.inc...
2.611 [6321/3/348] Building ARMTargetParserDef.inc...
3.181 [6321/2/349] Building CXX object tools/flang/lib/Decimal/CMakeFiles/FortranDecimal.dir/decimal-to-binary.cpp.o
4.323 [6321/1/350] Building CXX object tools/flang/lib/Decimal/CMakeFiles/FortranDecimal.dir/binary-to-decimal.cpp.o
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder llvm-nvptx64-nvidia-ubuntu running on as-builder-7 while building cmake,llvm,mlir at step 5 "build-unified-tree".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/160/builds/16934

Here is the relevant piece of the build log for the reference
Step 5 (build-unified-tree) failure: build (failure)
...
6.582 [3/6/192] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/ARMTargetDefEmitter.cpp.o
6.640 [3/5/193] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/CommandLine.cpp.o
6.775 [3/4/194] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/IntrinsicEmitter.cpp.o
7.891 [3/3/195] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/VirtualFileSystem.cpp.o
8.139 [2/3/196] Linking CXX static library lib/libLLVMSupport.a
8.359 [2/2/197] Building CXX object lib/TableGen/CMakeFiles/LLVMTableGen.dir/TGParser.cpp.o
8.489 [2/1/198] Building CXX object lib/TableGen/CMakeFiles/LLVMTableGen.dir/Record.cpp.o
8.552 [1/1/199] Linking CXX static library lib/libLLVMTableGen.a
8.735 [0/1/200] Linking CXX executable bin/llvm-min-tblgen
25.550 [2368/27/334] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include/llvm/IR/Attributes.inc 
cd /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include/llvm/IR && /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/NATIVE/bin/llvm-min-tblgen -gen-attrs -I /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include/llvm/IR -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include/llvm/IR /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include/llvm/IR /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include/llvm/IR/Attributes.inc.d /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/CMakeFiles/d/179a7c0be7056651b87126779e5c2e3b7b112726a235ec181630e860c62f2acf.d
25.553 [2368/26/335] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include/llvm/CodeGen/GenVT.inc 
cd /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include/llvm/CodeGen && /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/NATIVE/bin/llvm-min-tblgen -gen-vt -I /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include/llvm/CodeGen -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include/llvm/CodeGen /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include/llvm/CodeGen /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include/llvm/CodeGen/GenVT.inc.d /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/CMakeFiles/d/8d6573540acb4cacb1f3371c7ba1388446a79e8ffe7c024e97620d05a2b47967.d
25.564 [2368/25/336] Building ACC.h.inc...
25.567 [2368/24/337] Building ACC.inc...
25.574 [2368/23/338] Building OMP.h.inc...
25.581 [2368/22/339] Building OMP.inc...
26.441 [2368/21/340] Building IntrinsicsDirectX.h...
26.462 [2368/20/341] Building IntrinsicsAArch64.h...
26.462 [2368/19/342] Building IntrinsicsR600.h...
26.466 [2368/18/343] Building IntrinsicsPowerPC.h...
26.468 [2368/17/344] Building IntrinsicEnums.inc...
26.469 [2368/16/345] Building IntrinsicsS390.h...
26.472 [2368/15/346] Building IntrinsicsARM.h...
26.474 [2368/14/347] Building IntrinsicsLoongArch.h...
26.477 [2368/13/348] Building IntrinsicsBPF.h...
26.478 [2368/12/349] Building IntrinsicsHexagon.h...
26.478 [2368/11/350] Building IntrinsicsWebAssembly.h...
26.480 [2368/10/351] Building IntrinsicsRISCV.h...
26.480 [2368/9/352] Building IntrinsicsAMDGPU.h...
26.483 [2368/8/353] Building IntrinsicsNVPTX.h...
26.484 [2368/7/354] Building IntrinsicsXCore.h...
26.484 [2368/6/355] Building IntrinsicsMips.h...
26.486 [2368/5/356] Building IntrinsicsX86.h...
26.489 [2368/4/357] Building IntrinsicsSPIRV.h...
26.491 [2368/3/358] Building IntrinsicsVE.h...
26.605 [2368/2/359] Building IntrinsicImpl.inc...
26.935 [2368/1/360] Building ARMTargetParserDef.inc...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder llvm-nvptx-nvidia-ubuntu running on as-builder-7 while building cmake,llvm,mlir at step 5 "build-unified-tree".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/180/builds/16923

Here is the relevant piece of the build log for the reference
Step 5 (build-unified-tree) failure: build (failure)
...
6.631 [3/6/192] Building CXX object utils/TableGen/Basic/CMakeFiles/obj.LLVMTableGenBasic.dir/IntrinsicEmitter.cpp.o
6.785 [3/5/193] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/JSON.cpp.o
7.938 [3/4/194] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/VirtualFileSystem.cpp.o
8.616 [3/3/195] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/APFloat.cpp.o
8.861 [2/3/196] Linking CXX static library lib/libLLVMSupport.a
9.020 [2/2/197] Building CXX object lib/TableGen/CMakeFiles/LLVMTableGen.dir/TGParser.cpp.o
9.488 [2/1/198] Building CXX object lib/TableGen/CMakeFiles/LLVMTableGen.dir/Record.cpp.o
9.551 [1/1/199] Linking CXX static library lib/libLLVMTableGen.a
9.734 [0/1/200] Linking CXX executable bin/llvm-min-tblgen
26.515 [2368/27/334] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include/llvm/IR/Attributes.inc 
cd /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include/llvm/IR && /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/NATIVE/bin/llvm-min-tblgen -gen-attrs -I /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include/llvm/IR -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include/llvm/IR /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include/llvm/IR /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include/llvm/IR/Attributes.inc.d /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/CMakeFiles/d/d58477ba5ff955fca22fc87749b2c7635978ed6258c20b506c615d48a165ec43.d
26.526 [2368/26/335] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include/llvm/CodeGen/GenVT.inc 
cd /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include/llvm/CodeGen && /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/NATIVE/bin/llvm-min-tblgen -gen-vt -I /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include/llvm/CodeGen -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include/llvm/CodeGen /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include/llvm/CodeGen /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include/llvm/CodeGen/GenVT.inc.d /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/CMakeFiles/d/db411b536f02982f982214b62b003fd5a7ce50e100b8285768e439aec51107d0.d
26.529 [2368/25/336] Building ACC.h.inc...
26.531 [2368/24/337] Building ACC.inc...
26.537 [2368/23/338] Building OMP.h.inc...
26.546 [2368/22/339] Building OMP.inc...
27.394 [2368/21/340] Building IntrinsicsHexagon.h...
27.424 [2368/20/341] Building IntrinsicsPowerPC.h...
27.432 [2368/19/342] Building IntrinsicsBPF.h...
27.434 [2368/18/343] Building IntrinsicEnums.inc...
27.436 [2368/17/344] Building IntrinsicsAArch64.h...
27.436 [2368/16/345] Building IntrinsicsARM.h...
27.439 [2368/15/346] Building IntrinsicsAMDGPU.h...
27.440 [2368/14/347] Building IntrinsicsDirectX.h...
27.440 [2368/13/348] Building IntrinsicsSPIRV.h...
27.440 [2368/12/349] Building IntrinsicsNVPTX.h...
27.442 [2368/11/350] Building IntrinsicsLoongArch.h...
27.442 [2368/10/351] Building IntrinsicsRISCV.h...
27.447 [2368/9/352] Building IntrinsicsR600.h...
27.447 [2368/8/353] Building IntrinsicsMips.h...
27.449 [2368/7/354] Building IntrinsicsX86.h...
27.450 [2368/6/355] Building IntrinsicsVE.h...
27.450 [2368/5/356] Building IntrinsicsS390.h...
27.451 [2368/4/357] Building IntrinsicsXCore.h...
27.456 [2368/3/358] Building IntrinsicsWebAssembly.h...
27.565 [2368/2/359] Building IntrinsicImpl.inc...
27.892 [2368/1/360] Building ARMTargetParserDef.inc...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder bolt-x86_64-ubuntu-dylib running on bolt-worker while building cmake,llvm,mlir at step 5 "build-bolt".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/119/builds/5370

Here is the relevant piece of the build log for the reference
Step 5 (build-bolt) failure: build (failure)
...
0.291 [1830/2/252] Linking CXX static library lib/libLLVMSupport.a
0.315 [1824/7/253] Generating VCSVersion.inc
0.325 [1822/8/254] Linking CXX static library lib/libLLVMBitstreamReader.a
0.326 [1822/7/255] Linking CXX static library lib/libLLVMOption.a
0.326 [1822/6/256] Linking CXX static library lib/libLLVMDebugInfoMSF.a
0.332 [1822/5/257] Building CXX object tools/bolt/lib/Utils/CMakeFiles/LLVMBOLTUtils.dir/Utils.cpp.o
0.336 [1822/4/258] Linking CXX static library lib/libLLVMTableGen.a
0.345 [1821/4/259] Linking CXX static library lib/libLLVMDebugInfoCodeView.a
0.380 [1821/3/260] Linking CXX executable bin/llvm-min-tblgen
0.393 [1805/18/261] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include/llvm/IR/Attributes.inc 
cd /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include/llvm/IR && /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/bin/llvm-min-tblgen -gen-attrs -I /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm/include/llvm/IR -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm/include /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm/include/llvm/IR /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include/llvm/IR /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include/llvm/IR/Attributes.inc.d /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/CMakeFiles/d/19082af66ada0eaecee19ba01c593e11c7ee687a8ed210b2b66562e5f1917541.d
0.400 [1805/17/262] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include/llvm/CodeGen && /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/bin/llvm-min-tblgen -gen-vt -I /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm/include/llvm/CodeGen -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm/include /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/llvm-project/llvm/include/llvm/CodeGen /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include/llvm/CodeGen /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/include/llvm/CodeGen/GenVT.inc.d /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/CMakeFiles/d/fa6e9cd9b227a0cfaec2321239a9a30bd22358353a76c0e4e4e1a08f95c00523.d
0.568 [1805/16/263] Performing configure step for 'bolt_rt'
CMake Warning (dev) at /usr/share/cmake-3.22/Modules/GNUInstallDirs.cmake:239 (message):
  Unable to determine default CMAKE_INSTALL_LIBDIR directory because no
  target architecture is known.  Please enable at least one language before
  including GNUInstallDirs.
Call Stack (most recent call first):
  CMakeLists.txt:4 (include)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for include file elf.h
-- Looking for include file elf.h - found
-- Configuring done
-- Generating done
-- Build files have been written to: /home/worker/bolt-worker2/bolt-x86_64-ubuntu-dylib/build/tools/bolt/bolt_rt-bins
0.751 [1805/15/264] Building IntrinsicsAMDGPU.h...
0.836 [1805/14/265] Building IntrinsicsARM.h...
0.841 [1805/13/266] Building IntrinsicsAArch64.h...
0.843 [1805/12/267] Building IntrinsicsHexagon.h...
0.843 [1805/11/268] Building IntrinsicsMips.h...
0.845 [1805/10/269] Building IntrinsicsRISCV.h...
0.845 [1805/9/270] Building IntrinsicEnums.inc...
0.845 [1805/8/271] Building IntrinsicsLoongArch.h...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder bolt-x86_64-ubuntu-clang running on bolt-worker while building cmake,llvm,mlir at step 5 "build-clang-bolt".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/113/builds/6961

Here is the relevant piece of the build log for the reference
Step 5 (build-clang-bolt) failure: build (failure)
...
0.360 [2689/7/545] Linking CXX static library lib/libLLVMDebugInfoCodeView.a
0.360 [2689/6/546] Generating VCSVersion.inc
0.367 [2687/7/547] Clearing old BOLT fdata
0.370 [2687/6/548] Building CXX object tools/bolt/lib/Utils/CMakeFiles/LLVMBOLTUtils.dir/Utils.cpp.o
0.377 [2687/5/549] Creating directories for 'bolt_rt'
0.380 [2686/5/550] Linking CXX static library lib/libclangSupport.a
0.390 [2686/4/551] No download step for 'bolt_rt'
0.391 [2685/4/552] Linking CXX executable bin/llvm-min-tblgen
0.400 [2670/18/553] Linking CXX executable bin/clang-tblgen
0.403 [2669/18/554] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include/llvm/IR/Attributes.inc 
cd /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include/llvm/IR && /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/bin/llvm-min-tblgen -gen-attrs -I /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm/include/llvm/IR -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm/include /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm/include/llvm/IR /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include/llvm/IR /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include/llvm/IR/Attributes.inc.d /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/CMakeFiles/d/02d601c4907bbca870622eab7c6389d035b08caa9994b52b31b45c70669590ec.d
0.403 [2669/17/555] No update step for 'bolt_rt'
0.410 [2669/16/556] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include/llvm/CodeGen && /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/bin/llvm-min-tblgen -gen-vt -I /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm/include/llvm/CodeGen -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm/include /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/llvm-project/llvm/include/llvm/CodeGen /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include/llvm/CodeGen /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/include/llvm/CodeGen/GenVT.inc.d /home/worker/bolt-worker2/bolt-x86_64-ubuntu-clang/build/CMakeFiles/d/b492b61f141d20059889eebb806079146fb7d9c665204a50533c9b6d524d8e75.d
0.683 [2669/15/557] Building IntrinsicsARM.h...
0.844 [2669/14/558] Building IntrinsicsDirectX.h...
0.849 [2669/13/559] Building IntrinsicsRISCV.h...
0.852 [2669/12/560] Building IntrinsicsAArch64.h...
0.852 [2669/11/561] Building IntrinsicsR600.h...
0.852 [2669/10/562] Building IntrinsicsLoongArch.h...
0.853 [2669/9/563] Building IntrinsicEnums.inc...
0.854 [2669/8/564] Building IntrinsicsAMDGPU.h...
0.854 [2669/7/565] Building IntrinsicsHexagon.h...
0.856 [2669/6/566] Building IntrinsicsNVPTX.h...
0.857 [2669/5/567] Building IntrinsicsMips.h...
0.857 [2669/4/568] Building IntrinsicsPowerPC.h...
0.859 [2669/3/569] Building IntrinsicsBPF.h...
0.903 [2669/2/570] Building IntrinsicImpl.inc...
1.471 [2669/1/571] Building CXX object tools/bolt/lib/Utils/CMakeFiles/LLVMBOLTUtils.dir/CommandLineOpts.cpp.o
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder bolt-x86_64-ubuntu-nfc running on bolt-worker while building cmake,llvm,mlir at step 7 "build-bolt".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/92/builds/17791

Here is the relevant piece of the build log for the reference
Step 7 (build-bolt) failure: build (failure)
...
0.236 [1830/2/252] Linking CXX static library lib/libLLVMSupport.a
0.260 [1824/7/253] Generating VCSVersion.inc
0.269 [1822/8/254] Linking CXX static library lib/libLLVMBitstreamReader.a
0.270 [1822/7/255] Building CXX object tools/bolt/lib/Utils/CMakeFiles/LLVMBOLTUtils.dir/Utils.cpp.o
0.270 [1822/6/256] Linking CXX static library lib/libLLVMDebugInfoMSF.a
0.271 [1822/5/257] Linking CXX static library lib/libLLVMOption.a
0.278 [1822/4/258] Linking CXX static library lib/libLLVMTableGen.a
0.292 [1821/4/259] Linking CXX static library lib/libLLVMDebugInfoCodeView.a
0.414 [1821/3/260] Linking CXX executable bin/llvm-min-tblgen
0.427 [1805/18/261] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include/llvm/IR/Attributes.inc 
cd /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include/llvm/IR && /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/bin/llvm-min-tblgen -gen-attrs -I /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm/include/llvm/IR -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm/include /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm/include/llvm/IR /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include/llvm/IR /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include/llvm/IR/Attributes.inc.d /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/CMakeFiles/d/b6c3e920c6a28704dfa4c44d0f4df1c5c8b7a9feec20d5101d3b06fa7db2f9f5.d
0.435 [1805/17/262] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include/llvm/CodeGen && /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/bin/llvm-min-tblgen -gen-vt -I /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm/include/llvm/CodeGen -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm/include /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/llvm-project/llvm/include/llvm/CodeGen /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include/llvm/CodeGen /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/include/llvm/CodeGen/GenVT.inc.d /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/CMakeFiles/d/ab1f23b0a7a7c2e24e86de5a84e5515f0642a8e9fa458d1d4d36b669892ae0e7.d
0.523 [1805/16/263] Performing configure step for 'bolt_rt'
CMake Warning (dev) at /usr/share/cmake-3.22/Modules/GNUInstallDirs.cmake:239 (message):
  Unable to determine default CMAKE_INSTALL_LIBDIR directory because no
  target architecture is known.  Please enable at least one language before
  including GNUInstallDirs.
Call Stack (most recent call first):
  CMakeLists.txt:4 (include)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for include file elf.h
-- Looking for include file elf.h - found
-- Configuring done
-- Generating done
-- Build files have been written to: /home/worker/bolt-worker2/bolt-x86_64-ubuntu-nfc/build/tools/bolt/bolt_rt-bins
0.728 [1805/15/264] Building IntrinsicsRISCV.h...
0.872 [1805/14/265] Building IntrinsicsBPF.h...
0.873 [1805/13/266] Building IntrinsicsLoongArch.h...
0.876 [1805/12/267] Building IntrinsicsHexagon.h...
0.878 [1805/11/268] Building IntrinsicsAMDGPU.h...
0.880 [1805/10/269] Building IntrinsicsDirectX.h...
0.880 [1805/9/270] Building IntrinsicsMips.h...
0.880 [1805/8/271] Building IntrinsicsNVPTX.h...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder bolt-x86_64-ubuntu-shared running on bolt-worker while building cmake,llvm,mlir at step 5 "build-bolt".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/151/builds/5530

Here is the relevant piece of the build log for the reference
Step 5 (build-bolt) failure: build (failure)
...
0.209 [1897/7/259] Creating library symlink lib/libLLVMDebugInfoMSF.so
0.210 [1897/6/260] Creating library symlink lib/libLLVMBitstreamReader.so
0.211 [1897/5/261] Linking CXX shared library lib/libLLVMDebugInfoCodeView.so.21.0git
0.212 [1896/5/262] No update step for 'bolt_rt'
0.212 [1895/5/263] Building CXX object tools/bolt/lib/Utils/CMakeFiles/LLVMBOLTUtils.dir/Utils.cpp.o
0.213 [1895/4/264] Creating library symlink lib/libLLVMTableGen.so
0.216 [1894/4/265] Creating library symlink lib/libLLVMDebugInfoCodeView.so
0.222 [1894/3/266] No patch step for 'bolt_rt'
0.237 [1893/3/267] Linking CXX executable bin/llvm-min-tblgen
0.250 [1877/18/268] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include/llvm/CodeGen && /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/bin/llvm-min-tblgen -gen-vt -I /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm/include/llvm/CodeGen -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm/include /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm/include/llvm/CodeGen /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include/llvm/CodeGen /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include/llvm/CodeGen/GenVT.inc.d /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/CMakeFiles/d/dbcdcc4c7dd2e9a6b697a9b14fbb84f2e397a48645ae9887a0683128398821a4.d
0.261 [1877/17/269] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include/llvm/IR/Attributes.inc 
cd /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include/llvm/IR && /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/bin/llvm-min-tblgen -gen-attrs -I /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm/include/llvm/IR -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include -I/home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm/include /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/llvm-project/llvm/include/llvm/IR /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include/llvm/IR /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/include/llvm/IR/Attributes.inc.d /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/CMakeFiles/d/5eac682e5a0ef8e526e5f0706edd0b47eb7abd532ac22a824c4249fd258e81f2.d
0.595 [1877/16/270] Performing configure step for 'bolt_rt'
CMake Warning (dev) at /usr/share/cmake-3.22/Modules/GNUInstallDirs.cmake:239 (message):
  Unable to determine default CMAKE_INSTALL_LIBDIR directory because no
  target architecture is known.  Please enable at least one language before
  including GNUInstallDirs.
Call Stack (most recent call first):
  CMakeLists.txt:4 (include)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for include file elf.h
-- Looking for include file elf.h - found
-- Configuring done
-- Generating done
-- Build files have been written to: /home/worker/bolt-worker2/bolt-x86_64-ubuntu-shared/build/tools/bolt/bolt_rt-bins
0.665 [1877/15/271] Building IntrinsicsLoongArch.h...
0.686 [1877/14/272] Building IntrinsicsAArch64.h...
0.696 [1877/13/273] Building IntrinsicsHexagon.h...
0.698 [1877/12/274] Building IntrinsicsAMDGPU.h...
0.700 [1877/11/275] Building IntrinsicEnums.inc...
0.701 [1877/10/276] Building IntrinsicsARM.h...
0.701 [1877/9/277] Building IntrinsicsNVPTX.h...
0.702 [1877/8/278] Building IntrinsicsPowerPC.h...

@chapuni
Copy link
Contributor

chapuni commented Apr 26, 2025

FYI, this works fine in my side.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder polly-x86_64-linux running on polly-x86_64-gce1 while building cmake,llvm,mlir at step 5 "build".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/105/builds/8734

Here is the relevant piece of the build log for the reference
Step 5 (build) failure: 'ninja' (failure)
...
[226/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSubsection.cpp.o
[227/4235] Linking CXX static library lib/libLLVMBitstreamReader.a
[228/4235] Linking CXX static library lib/libLLVMDebugInfoMSF.a
[229/4235] Linking CXX static library lib/libLLVMTableGenBasic.a
[230/4235] Linking CXX executable bin/llvm-min-tblgen
[231/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSubsectionRecord.cpp.o
[232/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSymbolRVASubsection.cpp.o
[233/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSymbolsSubsection.cpp.o
[234/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugSubsectionVisitor.cpp.o
[235/4235] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/IR/Attributes.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/IR && /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/bin/llvm-min-tblgen -gen-attrs -I /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/IR -I/home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/IR /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/IR /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/IR/Attributes.inc.d /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/CMakeFiles/d/edfe9896b2f8fb9e30f453cc441ed9c51cc3a938f797e2fccb320a5c548ec02e.d
[236/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/EnumTables.cpp.o
[237/4235] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/CodeGen && /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/bin/llvm-min-tblgen -gen-vt -I /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/CodeGen -I/home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc.d /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/CMakeFiles/d/df18015f0091e4744504a0cceb0e8716be0db9938a20d71427e1f1d8fa53f80d.d
[238/4235] Building IntrinsicsR600.h...
[239/4235] Building IntrinsicsBPF.h...
[240/4235] Building IntrinsicEnums.inc...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder polly-x86_64-linux-noassert running on polly-x86_64-gce1 while building cmake,llvm,mlir at step 5 "build".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/28/builds/8742

Here is the relevant piece of the build log for the reference
Step 5 (build) failure: 'ninja' (failure)
...
[240/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/RecordName.cpp.o
[241/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/RecordSerialization.cpp.o
[242/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/SimpleTypeSerializer.cpp.o
[243/4235] Linking CXX executable bin/llvm-min-tblgen
[244/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/StringsAndChecksums.cpp.o
[245/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/SymbolDumper.cpp.o
[246/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/SymbolRecordHelpers.cpp.o
[247/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/SymbolSerializer.cpp.o
[248/4235] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/SymbolRecordMapping.cpp.o
[249/4235] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/CodeGen && /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/bin/llvm-min-tblgen -gen-vt -I /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/CodeGen -I/home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/CodeGen /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/CodeGen/GenVT.inc.d /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/CMakeFiles/d/df18015f0091e4744504a0cceb0e8716be0db9938a20d71427e1f1d8fa53f80d.d
[250/4235] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/IR/Attributes.inc 
cd /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/IR && /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/bin/llvm-min-tblgen -gen-attrs -I /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/IR -I/home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include -I/home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.src/llvm/include/llvm/IR /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/IR /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/include/llvm/IR/Attributes.inc.d /home/worker/buildbot-workers/polly-x86_64-gce1/rundir/llvm.obj/CMakeFiles/d/edfe9896b2f8fb9e30f453cc441ed9c51cc3a938f797e2fccb320a5c548ec02e.d
[251/4235] Building IntrinsicsR600.h...
[252/4235] Building IntrinsicsBPF.h...
[253/4235] Building IntrinsicEnums.inc...
[254/4235] Building IntrinsicImpl.inc...
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder polly-x86_64-linux-plugin running on polly-x86_64-gce1 while building cmake,llvm,mlir at step 5 "build".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/158/builds/8207

Here is the relevant piece of the build log for the reference
Step 5 (build) failure: 'ninja' (failure)

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder clang-with-thin-lto-ubuntu running on as-worker-92 while building cmake,llvm,mlir at step 6 "build-stage1-compiler".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/127/builds/3122

Here is the relevant piece of the build log for the reference
Step 6 (build-stage1-compiler) failure: build (failure)
...
13.888 [6160/20/376] Building CXX object tools/clang/utils/TableGen/CMakeFiles/clang-tblgen.dir/SveEmitter.cpp.o
13.908 [6160/19/377] Building CXX object lib/TableGen/CMakeFiles/LLVMTableGen.dir/TGParser.cpp.o
13.959 [6160/18/378] Building CXX object lib/TableGen/CMakeFiles/LLVMTableGen.dir/Record.cpp.o
13.963 [6159/18/379] Building CXX object third-party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o
13.988 [6158/18/380] Linking CXX static library lib/libLLVMTableGen.a
13.989 [6156/19/381] Linking CXX static library lib/libbenchmark.a
14.001 [6155/19/382] Linking CXX static library lib/libbenchmark_main.a
14.010 [6155/18/383] Linking CXX static library lib/libLLVMTableGenBasic.a
14.189 [6155/17/384] Linking CXX executable bin/llvm-min-tblgen
14.202 [6128/43/385] Building Attributes.inc...
FAILED: include/llvm/IR/Attributes.inc /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include/llvm/IR/Attributes.inc 
cd /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include/llvm/IR && /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/bin/llvm-min-tblgen -gen-attrs -I /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm/include/llvm/IR -I/home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include -I/home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm/include /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm/include/llvm/IR/Attributes.td --write-if-changed -o Attributes.inc -d Attributes.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm/include/llvm/IR /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1 /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include/llvm/IR /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include/llvm/IR/Attributes.inc.d /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/CMakeFiles/d/6dccb7c2f0ff39fa60308525dfc5f6362867ca046c649d9c2e090201dac5b371.d
14.204 [6128/42/386] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include/llvm/CodeGen/GenVT.inc 
cd /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include/llvm/CodeGen && /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/bin/llvm-min-tblgen -gen-vt -I /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm/include/llvm/CodeGen -I/home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include -I/home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm/include /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/llvm-project/llvm/include/llvm/CodeGen /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1 /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include/llvm/CodeGen /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/include/llvm/CodeGen/GenVT.inc.d /home/buildbot/as-worker-92/clang-with-thin-lto-ubuntu/build/stage1/CMakeFiles/d/cff587678f59ae7cc7b9fad7406c3a84c5127848515760b35681a12801323982.d
14.211 [6128/41/387] Building ACC.inc...
14.212 [6128/40/388] Building ACC.h.inc...
14.216 [6128/39/389] Building OMP.h.inc...
14.221 [6128/38/390] Building OMP.inc...
14.477 [6128/37/391] Building CXX object lib/FileCheck/CMakeFiles/LLVMFileCheck.dir/FileCheck.cpp.o
14.634 [6128/36/392] Building IntrinsicsHexagon.h...
14.634 [6128/35/393] Building IntrinsicsLoongArch.h...
14.634 [6128/34/394] Building IntrinsicsAArch64.h...
14.635 [6128/33/395] Building IntrinsicsAMDGPU.h...
14.635 [6128/32/396] Building IntrinsicsMips.h...
14.638 [6128/31/397] Building IntrinsicEnums.inc...
14.639 [6128/30/398] Building IntrinsicsX86.h...
14.639 [6128/29/399] Building IntrinsicsARM.h...
14.641 [6128/28/400] Building IntrinsicsPowerPC.h...
14.642 [6128/27/401] Building IntrinsicsNVPTX.h...
14.646 [6128/26/402] Building IntrinsicsBPF.h...
14.665 [6128/25/403] Building IntrinsicsDirectX.h...
14.675 [6128/24/404] Building CXX object unittests/Bitstream/CMakeFiles/BitstreamTests.dir/BitstreamWriterTest.cpp.o
14.692 [6128/23/405] Building IntrinsicsSPIRV.h...
14.700 [6128/22/406] Building IntrinsicsVE.h...
14.712 [6128/21/407] Building IntrinsicsXCore.h...
14.712 [6128/20/408] Building IntrinsicImpl.inc...
14.855 [6128/19/409] Building IntrinsicsRISCV.h...
14.855 [6128/18/410] Building IntrinsicsS390.h...
14.866 [6128/17/411] Building IntrinsicsR600.h...
14.866 [6128/16/412] Building IntrinsicsWebAssembly.h...
15.024 [6128/15/413] Building ARMTargetParserDef.inc...
15.097 [6128/14/414] Building CXX object tools/clang/utils/TableGen/CMakeFiles/clang-tblgen.dir/ClangDiagnosticsEmitter.cpp.o
15.142 [6128/13/415] Building CXX object tools/clang/utils/TableGen/CMakeFiles/clang-tblgen.dir/RISCVVEmitter.cpp.o
15.226 [6128/12/416] Building CXX object unittests/DebugInfo/MSF/CMakeFiles/DebugInfoMSFTests.dir/MSFBuilderTest.cpp.o
15.232 [6128/11/417] Building CXX object unittests/DebugInfo/CodeView/CMakeFiles/DebugInfoCodeViewTests.dir/RandomAccessVisitorTest.cpp.o
15.281 [6128/10/418] Building CXX object unittests/DebugInfo/CodeView/CMakeFiles/DebugInfoCodeViewTests.dir/TypeIndexDiscoveryTest.cpp.o
15.348 [6128/9/419] Building CXX object unittests/DebugInfo/MSF/CMakeFiles/DebugInfoMSFTests.dir/MappedBlockStreamTest.cpp.o
16.185 [6128/8/420] Building CXX object tools/clang/utils/TableGen/CMakeFiles/clang-tblgen.dir/MveEmitter.cpp.o

@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder clang-s390x-linux running on systemz-1 while building cmake,llvm,mlir at step 4 "build stage 1".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/42/builds/4304

Here is the relevant piece of the build log for the reference
Step 4 (build stage 1) failure: 'ninja -j4' (failure)
...
[213/6069] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/CodeViewError.cpp.o
[214/6069] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/AppendingTypeTableBuilder.cpp.o
[215/6069] Linking CXX static library lib/libLLVMDebugInfoMSF.a
[216/6069] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/CodeViewRecordIO.cpp.o
[217/6069] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/ContinuationRecordBuilder.cpp.o
[218/6069] Linking CXX executable bin/llvm-min-tblgen
[219/6069] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/CVSymbolVisitor.cpp.o
[220/6069] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/CVTypeVisitor.cpp.o
[221/6069] Building CXX object lib/DebugInfo/CodeView/CMakeFiles/LLVMDebugInfoCodeView.dir/DebugChecksumsSubsection.cpp.o
[222/6069] Building GenVT.inc...
FAILED: include/llvm/CodeGen/GenVT.inc /home/uweigand/sandbox/buildbot/clang-s390x-linux/stage1/include/llvm/CodeGen/GenVT.inc 
cd /home/uweigand/sandbox/buildbot/clang-s390x-linux/stage1/include/llvm/CodeGen && /home/uweigand/sandbox/buildbot/clang-s390x-linux/stage1/bin/llvm-min-tblgen -gen-vt -I /home/uweigand/sandbox/buildbot/clang-s390x-linux/llvm/llvm/include/llvm/CodeGen -I/home/uweigand/sandbox/buildbot/clang-s390x-linux/stage1/include -I/home/uweigand/sandbox/buildbot/clang-s390x-linux/llvm/llvm/include /home/uweigand/sandbox/buildbot/clang-s390x-linux/llvm/llvm/include/llvm/CodeGen/ValueTypes.td --write-if-changed -o GenVT.inc -d GenVT.inc.d && /usr/bin/cmake -E cmake_transform_depfile Ninja gccdepfile /home/uweigand/sandbox/buildbot/clang-s390x-linux/llvm/llvm /home/uweigand/sandbox/buildbot/clang-s390x-linux/llvm/llvm/include/llvm/CodeGen /home/uweigand/sandbox/buildbot/clang-s390x-linux/stage1 /home/uweigand/sandbox/buildbot/clang-s390x-linux/stage1/include/llvm/CodeGen /home/uweigand/sandbox/buildbot/clang-s390x-linux/stage1/include/llvm/CodeGen/GenVT.inc.d /home/uweigand/sandbox/buildbot/clang-s390x-linux/stage1/CMakeFiles/d/832dec0b379bad612f2b0f3d8216034fd02c7ae7bfcbe019f385c9bbec7ec6a4.d
[223/6069] Building IntrinsicsPowerPC.h...
[224/6069] Building IntrinsicsNVPTX.h...
[225/6069] Building IntrinsicsMips.h...
ninja: build stopped: subcommand failed.

@boomanaiden154
Copy link
Contributor Author

FYI, this works fine in my side.

It's definitely broken in some cases.

I've been able to reproduce the failure on Ubuntu 22.04 with CMake 3.22.1. The issue seems to be around Running the cmake -E cmake_transform_depfile command upon building tablegen targets. Running that with a more recent CMake (current ToT) works just fine. Now it's just a matter of figuring out what exactly the fix was and what CMake version it landed in.

@boomanaiden154
Copy link
Contributor Author

It looks like the issue was present all the way through v3.22 (including v3.22.6) and is gone by the time v3.23.0 lands. I'm going to bisect.

@boomanaiden154
Copy link
Contributor Author

It ended up bisecting down to e04a352cca523eba2ac0d60063a3799f5bb1c69e in CMake, which about makes sense given the commit description:

Depfile parsing: enhance compatibility with GNU Make

I think we might just need to use fall back behavior for CMake <3.23.0. I'll push the patch for that and see how it goes.

boomanaiden154 added a commit that referenced this pull request Apr 26, 2025
This reverts commit fa65a22.

This relands commit ab405fb.

There was an issue where CMake versions <3.23.0 would not properly parse
dep files, causing the build to file. This patch fixes that by just
making CMake versions <3.23.0 use the fallback behavior.
@llvm-ci
Copy link
Collaborator

llvm-ci commented Apr 26, 2025

LLVM Buildbot has detected a new failure on builder lld-x86_64-win running on as-worker-93 while building cmake,llvm,mlir at step 7 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/146/builds/2791

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM-Unit :: Support/./SupportTests.exe/90/95' FAILED ********************
Script(shard):
--
GTEST_OUTPUT=json:C:\a\lld-x86_64-win\build\unittests\Support\.\SupportTests.exe-LLVM-Unit-3852-90-95.json GTEST_SHUFFLE=0 GTEST_TOTAL_SHARDS=95 GTEST_SHARD_INDEX=90 C:\a\lld-x86_64-win\build\unittests\Support\.\SupportTests.exe
--

Script:
--
C:\a\lld-x86_64-win\build\unittests\Support\.\SupportTests.exe --gtest_filter=ProgramEnvTest.CreateProcessLongPath
--
C:\a\lld-x86_64-win\llvm-project\llvm\unittests\Support\ProgramTest.cpp(160): error: Expected equality of these values:
  0
  RC
    Which is: -2

C:\a\lld-x86_64-win\llvm-project\llvm\unittests\Support\ProgramTest.cpp(163): error: fs::remove(Twine(LongPath)): did not return errc::success.
error number: 13
error message: permission denied



C:\a\lld-x86_64-win\llvm-project\llvm\unittests\Support\ProgramTest.cpp:160
Expected equality of these values:
  0
  RC
    Which is: -2

C:\a\lld-x86_64-win\llvm-project\llvm\unittests\Support\ProgramTest.cpp:163
fs::remove(Twine(LongPath)): did not return errc::success.
error number: 13
error message: permission denied




********************


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cmake Build system in general and CMake in particular mlir
Projects
None yet
Development

Successfully merging this pull request may close these issues.

cmake 3.28 deprecation warnings
8 participants