Created attachment 843297 [details] dev-lang/zig-0.10.0's build.log CMake Error at cmake/Findllvm.cmake:90 (continue): A CONTINUE command was found outside of a proper FOREACH or WHILE loop scope. Call Stack (most recent call first): cmake/Findllvm.cmake:93 (NEED_TARGET) CMakeLists.txt:138 (find_package) this is cmake's error; attached to this bug is the full build.log
Created attachment 843299 [details] emerge --info this is emerge --info > /tmp/emerge-info.log
It's very rarely useful but could you include /var/tmp/notmpfs/portage/dev-lang/zig-0.10.0/work/zig-0.10.0/build/CMakeFiles/CMakeOutput.log for completeness just because this might be more of a weird CMake internal thing?
Created attachment 843301 [details] CMakeOutput.log /var/tmp/notmpfs/portage/dev-lang/zig-0.10.0/work/zig-0.10.0/build/CMakeFiles/CMakeOutput.log
(In reply to Sam James from comment #2) > It's very rarely useful but could you include > /var/tmp/notmpfs/portage/dev-lang/zig-0.10.0/work/zig-0.10.0/build/ > CMakeFiles/CMakeOutput.log for completeness just because this might be more > of a weird CMake internal thing? done
At 237 line in "emerge-info.log" there is this line > LLVM_TARGETS="X86" Does this mean that other LLVM_TARGETS are disabled for `sys-devel/llvm`? Zig expects all targets to be enabled
(In reply to Eric Joldasov from comment #5) > At 237 line in "emerge-info.log" there is this line > > LLVM_TARGETS="X86" > > Does this mean that other LLVM_TARGETS are disabled for `sys-devel/llvm`? > Zig expects all targets to be enabled why? and is this what breaks the foreach loop?
(In reply to topological-automata from comment #6) > (In reply to Eric Joldasov from comment #5) > > At 237 line in "emerge-info.log" there is this line > > > LLVM_TARGETS="X86" > > > > Does this mean that other LLVM_TARGETS are disabled for `sys-devel/llvm`? > > Zig expects all targets to be enabled > > why? and is this what breaks the foreach loop? It's about how Zig compiler designed, with stuff like "cross-compilation out-of-box" (which means they enable all targets for LLVM and it's easier for them to expect from other people same), consistency etc. In your "CMakeOurput.log" there is hint for 93 line in "cmake/Findllvm.cmake": > NEED_TARGET("AArch64") Amd above there is what should be printed when target is not found: > # Save the error message, in case this is the last llvm-config we find > list(APPEND LLVM_CONFIG_ERROR_MESSAGES "LLVM (according to ${LLVM_CONFIG_EXE}) is missing target ${TARGET_NAME}. Zig requires LLVM to be built with all default targets enabled.") > # Ignore this directory and try the search again > list(APPEND CMAKE_IGNORE_PATH "${LLVM_CONFIG_DIR}") > continue() Somehow error is not printed and "continue()" leads to the error. I'm not so good at CMake writing, so I'll fix it tomorrow (and send to upstream ofc) [if it is not bug in CMake or installed CMake files for llvm]
May be regression since https://github.com/ziglang/zig/commit/3f640ef3d20db848a4d38299cb66db8a3c14b3b1
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bcf6e440e99f0d38f27011186ff98a5abe9cdc0 commit 7bcf6e440e99f0d38f27011186ff98a5abe9cdc0 Author: Eric Joldasov <bratishkaerik@getgoogleoff.me> AuthorDate: 2023-01-07 11:24:21 +0000 Commit: Sam James <sam@gentoo.org> CommitDate: 2023-01-08 03:24:51 +0000 dev-lang/zig: add patch from upstream for 0.10.0 Closes: https://bugs.gentoo.org/886569 Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me> Closes: https://github.com/gentoo/gentoo/pull/28997 Signed-off-by: Sam James <sam@gentoo.org> .../zig/files/zig-0.10.0-avoid-cmake-bug.patch | 63 ++++++++++++++++++++++ dev-lang/zig/zig-0.10.0.ebuild | 6 ++- 2 files changed, 68 insertions(+), 1 deletion(-)