ginac: build using gcc

On Darwin the stdenv uses clang, which builds binaries that crash with
example inputs, "SIGSEGV (Address boundary error)". Ginac documentation
says "We used GCC for development so if you have a different compiler
you are on your own." Switching to always using gcc aligns the
derivation with the build instructions.
This commit is contained in:
connordennyomalley
2026-05-18 15:55:48 +01:00
committed by Connor O'Malley
parent c138071dd9
commit 50313ffaab
+2 -1
View File
@@ -1,6 +1,7 @@
{
lib,
stdenv,
gccStdenv,
fetchurl,
cln,
pkg-config,
@@ -9,7 +10,7 @@
python3,
}:
stdenv.mkDerivation (finalAttrs: {
gccStdenv.mkDerivation (finalAttrs: {
pname = "ginac";
version = "1.8.10";