Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conda recipe fixes #396

Merged
merged 2 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions scripts/conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ pin_run_as_build:
lz4-c:
max_pin: x.x.x

CONDA_BUILD_SYSROOT:
# Most conda-forge packages are compatible with MacOSX 10.9,
# but golang-1.16 requires at least MacOSX 10.13.
# (See the download page: https://go.dev/dl/)
#
# You will have to install this SDK manually, via this project:
#
# https://github.com/devernay/xcodelegacy
#
# Quick Instructions:
#
# curl https://raw.githubusercontent.com/devernay/xcodelegacy/master/XcodeLegacy.sh > XcodeLegacy.sh
# chmod +x XcodeLegacy.sh
# sudo ./XcodeLegacy.sh -osx1013 buildpackages
# sudo ./XcodeLegacy.sh -osx1013 install
#
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
# CONDA_BUILD_SYSROOT:
# # Most conda-forge packages are compatible with MacOSX 10.9,
# # but golang-1.16 requires at least MacOSX 10.13.
# # (See the download page: https://go.dev/dl/)
# #
# # You will have to install this SDK manually, via this project:
# #
# # https://github.com/devernay/xcodelegacy
# #
# # Quick Instructions:
# #
# # curl https://raw.githubusercontent.com/devernay/xcodelegacy/master/XcodeLegacy.sh > XcodeLegacy.sh
# # chmod +x XcodeLegacy.sh
# # sudo ./XcodeLegacy.sh -osx1013 buildpackages
# # sudo ./XcodeLegacy.sh -osx1013 install
# #
# - /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk

MACOSX_DEPLOYMENT_TARGET:
- 10.13
# MACOSX_DEPLOYMENT_TARGET:
# - 10.13
2 changes: 2 additions & 0 deletions scripts/conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ requirements:
# are used to build dvid, but are not linked against
# or incorporated into the executable in any way.
build:
- make

# Note: Make sure this matches GO_VERSION in scripts/install-developer-dependencies.sh
- go-cgo=1.21

Expand Down
Loading