File tree 3 files changed +13
-11
lines changed
3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 1
1
boost :
2
- - 1.67
2
+ - 1.73
3
3
4
4
# only for local build ? see https://github.com/conda/conda-build/issues/4064#issuecomment-702983257
5
5
# CONDA_BUILD_SYSROOT:
Original file line number Diff line number Diff line change 3
3
Import ('env' )
4
4
5
5
import os
6
+ import platform
6
7
7
- # Apply environment settings for Anaconda compilers
8
- env .Replace (CXX = os .environ ['CXX' ])
9
- env .MergeFlags (os .environ ['CFLAGS' ])
10
- env .MergeFlags (os .environ ['CPPFLAGS' ])
11
- env .MergeFlags (os .environ ['CXXFLAGS' ])
12
- env .MergeFlags (os .environ ['LDFLAGS' ])
8
+ if platform .system () != 'Darwin' :
9
+ # Apply environment settings for Anaconda compilers
10
+ env .Replace (CXX = os .environ ['CXX' ])
11
+ env .MergeFlags (os .environ ['CFLAGS' ])
12
+ env .MergeFlags (os .environ ['CPPFLAGS' ])
13
+ env .MergeFlags (os .environ ['CXXFLAGS' ])
14
+ env .MergeFlags (os .environ ['LDFLAGS' ])
13
15
14
- # Use the default c++98 language standard
15
- cxxflags98 = [f for f in env ['CXXFLAGS' ] if not f .startswith ('-std=' )]
16
- env .Replace (CXXFLAGS = cxxflags98 )
16
+ # Use the default c++98 language standard
17
+ cxxflags98 = [f for f in env ['CXXFLAGS' ] if not f .startswith ('-std=' )]
18
+ env .Replace (CXXFLAGS = cxxflags98 )
17
19
18
20
# Silence copious warnings from the boost headers.
19
21
P = os .environ ['PREFIX' ]
Original file line number Diff line number Diff line change 7
7
Update FALLBACK_VERSION when tagging a new release.
8
8
'''
9
9
10
- FALLBACK_VERSION = '2021.1 .1.post0'
10
+ FALLBACK_VERSION = '2022 .1.post0'
You can’t perform that action at this time.
0 commit comments