Browse Source

Clarify boost flags for ARM Windows build

Update comment in profiles/cura.jinja to explicitly state that boost/1.90.0 should have header_only and without_serialization set to "False" to build pagmo2 from source on ARM Windows. This clarifies the intended configuration for ARM64 Windows builds.
pull/29/head
HellAholic 5 days ago
parent
commit
82b2dfb58c
  1. 3
      profiles/cura.jinja

3
profiles/cura.jinja

@ -53,7 +53,8 @@ hwloc/*:shared=True
mpdecimal/*:shared=True
# ARM64 Windows: Arcus needs to be shared for proper Python binding
arcus/*:shared=True
# boost as dependency of pagmo2 needs to be in header_only and without_serialization to compile on ARM
# boost as dependency of pagmo2 needs to be in header_only "False" and without_serialization "False" to build from source on ARM Windows
# There is also the boost/1.88.0 in use but that one does not require any flags to be set
boost/1.90.0:header_only=False
boost/1.90.0:without_serialization=False
# ARM64 Windows: Disable tbbproxy (not available on ARM64 platforms)

Loading…
Cancel
Save