Skip to content

Commit

Permalink
Set mac_deployment_target = "10.13.0"
Browse files Browse the repository at this point in the history
Hopefully, this change will fix the following error:

../buildtools/third_party/libc++/trunk/src/barrier.cpp:37:43: error: aligned allocation function of type 'void *(std::size_t, std::align_val_t)' is only available on macOS 10.13 or newer
        __state = unique_ptr<__state_t[]>(new __state_t[__count]);
                                          ^
  • Loading branch information
bblanchon committed Sep 5, 2022
1 parent 3f48903 commit f1430ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steps/05-configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mkdir -p "$BUILD"
echo "ios_enable_code_signing = false"
;;
mac)
echo 'mac_deployment_target = "10.11.0"'
echo 'mac_deployment_target = "10.13.0"'
;;
win)
echo 'pdf_use_win32_gdi = true'
Expand Down

0 comments on commit f1430ea

Please sign in to comment.