Mark Kittisopikul
Mark Kittisopikul
You may have just needed `make distclean` or `make distcleanall`
Also note that in Yggdrasil we just staged Mbed TLS 2.28: https://github.com/JuliaPackaging/Yggdrasil/tree/master/M/MbedTLS/MbedTLS%402.28.0 and that the PR to update Julia for Mbed TLS 2.28 is here: https://github.com/JuliaLang/julia/pull/42311
Are you still using the same command to build? It sounds like something has gone wrong with your build environment as opposed to the Julia sources. Just to make sure,...
You may want to take a look at the BinaryBuilder script to see if that produces a better build: https://github.com/JuliaPackaging/Yggdrasil/blob/master/O/OpenBLAS/common.jl https://github.com/JuliaPackaging/Yggdrasil/blob/master/O/OpenBLAS/OpenBLAS32%400.3.13/build_tarballs.jl
If you look at https://github.com/JuliaLang/julia/blob/32abe71df48dcf32703f8bbcffa2f35a54152467/deps/openblas.mk#L210 you will see that it invokes `bb-install`. That's defined here: https://github.com/JuliaLang/julia/blob/da28c17d9f9401ff4e9bd1b6e29e09ef735091d1/deps/tools/bb-install.mk which says to download a tar ball from: https://github.com/JuliaLang/julia/blob/da28c17d9f9401ff4e9bd1b6e29e09ef735091d1/deps/tools/bb-install.mk#L32 In the case of openblas...
Given that the error has been traced to a 3rd party, can this issue now be closed?
Should we mark which types are primitive or struct types? Marking primitives seems noisy. Perhaps we should just mark struct types and indicate the rest are primitive types? The struct...
There is a test failure on system "Python / Test Julia nightly Python 3.x macos-latest x64". Also it seems to me that the environment variables would only be checked during...
It looks like the problem originates with Casadi trying to interrogate the call stack and failing. It's probably expecting to find a frame where the Python call was initiated, but...
Is it sufficient to guarantee that `Thread.threadid() == 1`? Perhaps we also need confirm that `Base.current_task() === Base.roottask` to ensure the stack is in a valid state for Python. In...