We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac29414 commit 59a3bd8Copy full SHA for 59a3bd8
1 file changed
library_builders.sh
@@ -90,13 +90,17 @@ function build_adios2 {
90
# patch -p1 ../0001-Pull-in-atl-dill-EVPath-ffs-after-merging-https-gith.patch
91
# cd ..
92
93
- # temporary, need to try sth
+ # temporary for macOS on ADIOS 2.11.0
94
git clone https://github.com/ornladios/ADIOS2 ADIOS2-2.11.0
95
cd ADIOS2-2.11.0
96
git checkout 7a21e4ef2f5def6659e67084b5210a66582d4b1a
97
- curl -sLo 4820.patch https://github.com/ornladios/ADIOS2/pull/4820.patch
98
- git am 4820.patch
99
- git diff
+ if [ "$(uname -s)" = "Darwin" ]
+ then
+ curl -sLo 4820.patch https://github.com/ornladios/ADIOS2/pull/4820.patch
100
+ GIT_COMMITTER_NAME="Greg Eisenhauer" GIT_COMMITTER_EMAIL="eisen@cc.gatech.edu" \
101
+ git am 4820.patch
102
+ git diff
103
+ fi
104
cd ..
105
106
# build
0 commit comments