kicad: broken on platforms without 64-bit atomics
This commit is contained in:
parent
67710cf3f4
commit
e713eb77ce
1 changed files with 6 additions and 1 deletions
|
@ -27,9 +27,14 @@ build_options_default="spice occt"
|
|||
desc_option_spice="Enable support for SPICE simulation"
|
||||
desc_option_occt="Enable support for 3D STEP models"
|
||||
|
||||
if [ ! "$XBPS_WORDSIZE" = "$XBPS_TARGET_WORDSIZE" ]; then
|
||||
if [ "$XBPS_WORDSIZE" != "$XBPS_TARGET_WORDSIZE" ]; then
|
||||
broken="pybind: Python config failure: Python is 64-bit, chosen compiler is 32-bit"
|
||||
fi
|
||||
|
||||
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
||||
broken="common/libgal.a(draw_panel_gal.cpp.o)"
|
||||
fi
|
||||
|
||||
nocross="execute lemon during build"
|
||||
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
|
|
Loading…
Reference in a new issue