Changes between Version 10 and Version 16 of Ticket #31567
- Timestamp:
- Mar 28, 2021, 1:47:31 AM (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31567
-
Property
Status
changed from
new
toneeds_review
-
Property
Dependencies
changed from
to
#31552, #31562, #31409
-
Property
Commit
changed from
0458f2309b3f30a9445dd0196a130f4d41dafe44
to92db4e40bf40a73be4570e159c4e5b36c1955451
-
Property
Status
changed from
-
Ticket #31567 – Description
v10 v16 3 3 To test: 4 4 {{{ 5 $ tox -e local-macos-nohomebrew-python3_xcode -- config.status5 $ EXTRA_CONFIGURE_ARGS="--disable-r" tox -e local-macos-nohomebrew-python3_xcode 6 6 }}} 7 It can then be checked that no libraries from /usr/local leak in, using 8 {{{ 9 find prefix/lib -name "*.so" -o -name "*.dylib*" -exec otool -L {} \; 10 }}} 11 (Building R is disabled because the R package build still pokes around in /usr/local and finds libintl and liblzma.) 7 12 8 13 To set specific deployment targets, use: 9 14 {{{ 10 $ tox -e local-macos-10.14-nohomebrew-python3_xcode -- config.status11 $ tox -e local-macos-10.15-nohomebrew-python3_xcode -- config.status12 $ tox -e local-macos-11.1-nohomebrew-python3_xcode -- config.status15 $ EXTRA_CONFIGURE_ARGS="--disable-r" tox -e local-macos-10.14-nohomebrew-python3_xcode -- config.status 16 $ EXTRA_CONFIGURE_ARGS="--disable-r" tox -e local-macos-10.15-nohomebrew-python3_xcode -- config.status 17 $ EXTRA_CONFIGURE_ARGS="--disable-r" tox -e local-macos-11.1-nohomebrew-python3_xcode -- config.status 13 18 }}} 14 19