File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -151,11 +151,6 @@ if [ "$GITHUB_ACTIONS" != "true" ]; then
151151 source $CHPL_HOME /util/cron/common.bash
152152fi
153153
154- # Disable GMP and re2 to speed up build.
155- if [ " $ARKOUDA_SMOKE_TEST " != " true" ]; then
156- export CHPL_GMP=none
157- fi
158-
159154# mason currently requires CHPL_COMM=none -- https://github.com/chapel-lang/chapel/issues/12626
160155COMM=` $CHPL_HOME /util/chplenv/chpl_comm.py`
161156if [ " $COMM " != " none" ]; then
@@ -172,6 +167,18 @@ else
172167 export CHPL_RE2=none
173168fi
174169
170+
171+ # Arkouda requires gmp and re2
172+ # if no arkouda required, disable gmp (re2 is already handled above)
173+ # otherwise, force enable gmp and re2 (even in a quickstart configuration)
174+ if [ " $ARKOUDA_SMOKE_TEST " != " true" ]; then
175+ export CHPL_GMP=none
176+ else
177+ export CHPL_GMP=bundled
178+ export CHPL_RE2=bundled
179+ fi
180+
181+
175182echo " "
176183
177184# Show me the environment!
You can’t perform that action at this time.
0 commit comments