-
Notifications
You must be signed in to change notification settings - Fork 4
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
C++20 r-build #246
base: main
Are you sure you want to change the base?
C++20 r-build #246
Changes from 6 commits
08135b8
0c9ae6a
7275ccd
6e48249
4651e8c
e7f84a9
cdbd40c
7b748af
92a4812
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
args="${@##-mmacosx-version-min=10.9*}" | ||
$NN_CC_ORIG $args -mmacosx-version-min=11.0 | ||
args="${@##-mmacosx-version-min=13.3*}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think the version in these 2 lines shouldn't match. My understanding of the purpose of the wrapper script is to remove the original value of |
||
$NN_CC_ORIG $args -mmacosx-version-min=13.3 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# https://conda-forge.org/docs/maintainer/knowledge_base/#requiring-newer-macos-sdks | ||
# https://conda-forge.org/news/2024/03/24/stdlib-migration/ | ||
MACOSX_SDK_VERSION: # [osx and x86_64] | ||
- 11.0 # [osx and x86_64] | ||
MACOSX_SDK_VERSION: # [osx and x86_64] | ||
- 13.3 # [osx and x86_64] | ||
c_stdlib_version: # [osx and x86_64] | ||
- 11.0 # [osx and x86_64] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was concerned that these didn't match, but I think this is correct. From the conda-forge docs, we don't need to bump |
||
channel_sources: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
args="${@##-mmacosx-version-min=10.9*}" | ||
$NN_CXX_ORIG $args -mmacosx-version-min=11.0 | ||
args="${@##-mmacosx-version-min=13.3*}" | ||
$NN_CXX_ORIG $args -mmacosx-version-min=13.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you need to define
CXX20
here when it is overwritten below?