Bug 1928696
Summary: | F35FailsToInstall: julia | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Miro Hrončok <mhroncok> |
Component: | julia | Assignee: | Milan Bouchet-Valat <nalimilan> |
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | rawhide | CC: | chris, nalimilan |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2021-03-14 20:26:44 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 1927313 |
Description
Miro Hrončok
2021-02-15 11:56:46 UTC
Hello, This is the first reminder (step 3 from https://docs.fedoraproject.org/en-US/fesco/Fails_to_build_from_source_Fails_to_install/#_package_removal_for_long_standing_ftbfs_and_fti_bugs). If you know about this problem and are planning on fixing it, please acknowledge so by setting the bug status to ASSIGNED. If you don't have time to maintain this package, consider orphaning it, so maintainers of dependent packages realize the problem. Failure has been introduced recently in Rawhide, everything works fine on F34. Probably a patch will be developed upstream to fix build with recent compiler versions. glibc is 2.32 in F34 but 2.33 in Rawhide, and it was 2.32 last time Julia build succeeded in Rawhide. So that's probably the culprit. The error seems to be related to a problematic definition of MINSIGSTKSZ (which is supposed to live in signal.h): gcc -march=x86-64 -m64 -fasynchronous-unwind-tables -DSYSTEM_LIBUNWIND -DJULIA_HAS_IFUNC_SUPPORT=1 -DJULIA_NUM_THREADS=1 -DJL_USE_PERF_JITEVENTS -std=gnu99 -pipe -fPIC -fno-strict-aliasing -D_FILE_OFFSET_BITS=64 -DSYSTEM_LIBUNWIND -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wold-style-definition -Wstrict-prototypes -Wc++-compat -O3 -ggdb2 -falign-functions -momit-leaf-frame-pointer -D_GNU_SOURCE -I. -I/builddir/build/BUILD/julia-1.6.0-rc1/src -I/builddir/build/BUILD/julia-1.6.0-rc1/src/flisp -I/builddir/build/BUILD/julia-1.6.0-rc1/src/support -I/builddir/build/BUILD/julia-1.6.0-rc1/build/usr/include -I/builddir/build/BUILD/julia-1.6.0-rc1/build/usr/include -DLIBRARY_EXPORTS -I/builddir/build/BUILD/julia-1.6.0-rc1/deps/valgrind -Wall -Wno-strict-aliasing -fno-omit-frame-pointer -fvisibility=hidden -fno-common -Wno-comment -Wpointer-arith -Wundef -Wno-unused-result -DJL_BUILD_ARCH='"x86_64"' -DJL_BUILD_UNAME='"Linux"' -I/builddir/build/BUILD/julia-1.6.0-rc1/build/usr/include -DLLVM_SHLIB "-DJL_SYSTEM_IMAGE_PATH=\"../lib/julia/sys.so\"" "-DJL_LIBJULIA_SONAME=\"libjulia.so.1\"" "-DJL_LIBJULIA_INTERNAL_SONAME=\"libjulia-internal.so.1\"" -DNDEBUG -DJL_NDEBUG -c /builddir/build/BUILD/julia-1.6.0-rc1/src/array.c -o array.o In file included from /usr/include/signal.h:315, from /builddir/build/BUILD/julia-1.6.0-rc1/src/task.c:31: /builddir/build/BUILD/julia-1.6.0-rc1/src/task.c:78:29: error: missing binary operator before token "(" 78 | #if defined(MINSIGSTKSZ) && MINSIGSTKSZ > 131072 (According to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87351 the error message ir misleading.) Filed upstream as https://github.com/JuliaLang/julia/issues/39822 I've pushed a workaround. |