Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 886569 - dev-lang/zig-0.10.0: A CONTINUE command was found outside of a proper FOREACH or WHILE loop
Summary: dev-lang/zig-0.10.0: A CONTINUE command was found outside of a proper FOREAC...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Eric Joldasov
URL:
Whiteboard:
Keywords: PullRequest
Depends on:
Blocks:
 
Reported: 2022-12-18 09:05 UTC by topological-automata
Modified: 2023-01-08 03:37 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
dev-lang/zig-0.10.0's build.log (build.log,4.19 KB, text/x-log)
2022-12-18 09:05 UTC, topological-automata
Details
emerge --info (emerge-info.log,20.17 KB, text/x-log)
2022-12-18 09:05 UTC, topological-automata
Details
CMakeOutput.log (CMakeOutput.log,21.51 KB, text/x-log)
2022-12-18 09:11 UTC, topological-automata
Details

Note You need to log in before you can comment on or make changes to this bug.
Description topological-automata 2022-12-18 09:05:02 UTC
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
Comment 1 topological-automata 2022-12-18 09:05:58 UTC
Created attachment 843299 [details]
emerge --info

this is emerge --info > /tmp/emerge-info.log
Comment 2 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2022-12-18 09:07:34 UTC
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?
Comment 3 topological-automata 2022-12-18 09:11:15 UTC
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
Comment 4 topological-automata 2022-12-18 09:11:37 UTC
(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
Comment 5 Eric Joldasov 2022-12-18 12:02:29 UTC
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
Comment 6 topological-automata 2022-12-18 17:14:18 UTC
(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?
Comment 7 Eric Joldasov 2022-12-18 18:04:48 UTC
(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]
Comment 8 Eric Joldasov 2022-12-18 18:11:49 UTC
May be regression since https://github.com/ziglang/zig/commit/3f640ef3d20db848a4d38299cb66db8a3c14b3b1
Comment 9 Larry the Git Cow gentoo-dev 2023-01-08 03:37:47 UTC
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(-)