mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-06 07:51:47 +00:00
402591e71c
The datamodel-v1.0 merge (cf05bbd1b) overwrote build_rocky.yml with a version that switched python3 -> uv run but dropped the --shared flag thata91b1da28("Reduce Rocky package size") had added. build_osx.yml kept it (ddee88bed). Without --shared, nix/build-all.py builds IfcOpenShell as static libs, so each of the ~40 plug-in .so files (schemas x8, kernels, mappings, serializers, writers) statically embeds a full copy of libIfcParse + libIfcGeom. The data-model rewrite made those base libs much larger, so the duplication ballooned the Linux packages (~2-3x). With --shared the plug-ins dynamically reference the shared libIfcParse/libIfcGeom instead. Restores the same size reduction macOS already has. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>