diff options
author | Ned Deily <nad@python.org> | 2021-05-03 00:28:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 00:28:43 (GMT) |
commit | 870317825822c856490a32eee037fec8057690b1 (patch) | |
tree | 74c832aa140122ac31357d8150c744b5edf05a38 /Misc | |
parent | 33ec88ac81f23668293d101b83367b086c795e5e (diff) | |
download | cpython-870317825822c856490a32eee037fec8057690b1.zip cpython-870317825822c856490a32eee037fec8057690b1.tar.gz cpython-870317825822c856490a32eee037fec8057690b1.tar.bz2 |
bpo-43568: Drop support for MACOSX_DEPLOYMENT_TARGET < 10.3 (GH-25827)
Only complain if the config target is >= 10.3 and the current target is
< 10.3. The check was originally added to ensure that incompatible
LDSHARED flags are not used, because -undefined dynamic_lookup is
used when building for 10.3 and later, and is not supported on older OS
versions. Apart from that, there should be no problem in general
with using an older target.
Authored-by: Joshua Root <jmr@macports.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/macOS/2021-05-02-19-50-52.bpo-43568.AeLNBd.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2021-05-02-19-50-52.bpo-43568.AeLNBd.rst b/Misc/NEWS.d/next/macOS/2021-05-02-19-50-52.bpo-43568.AeLNBd.rst new file mode 100644 index 0000000..3bc9b0b --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2021-05-02-19-50-52.bpo-43568.AeLNBd.rst @@ -0,0 +1 @@ +Drop support for MACOSX_DEPLOYMENT_TARGET < 10.3 |