We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7f87a3 commit 09cda20Copy full SHA for 09cda20
.github/workflows/build.yml
@@ -32,6 +32,8 @@ jobs:
32
# and to split the remaining architectures between the x86_64 and
33
# ARM runners
34
CIBW_ARCHS_LINUX: ${{ runner.arch == 'X64' && 'auto ppc64le s390x' || 'auto' }}
35
+ # Need this to be >= 10.13 to support C++17 aligned allocations
36
+ MACOSX_DEPLOYMENT_TARGET: 10.13
37
38
- name: Show files
39
run: ls -lh wheelhouse
CMakeLists.txt
@@ -25,10 +25,6 @@ nanobind_add_module(
25
)
26
target_include_directories(_core PRIVATE include)
27
28
-if(APPLE AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
29
- target_compile_options(_core PRIVATE -mmacosx-version-min=10.13)
30
-endif()
31
-
nanobind_add_stub(
mapbox_earcut_stubs
MODULE _core
0 commit comments