File tree Expand file tree Collapse file tree 1 file changed +14
-16
lines changed
Expand file tree Collapse file tree 1 file changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -318,7 +318,7 @@ DEPS_EMSDK_BINARYEN_VERSION ?= master
318318DEPS_WABT_BUILD_OUT ?= $(DEPS_BUILD_DIR ) /wabt
319319
320320# Define the Cephes distribution to build (netlib, moshier, cephes-2.8):
321- DEPS_CEPHES_DIST ?= netlib
321+ DEPS_CEPHES_DIST ?= moshier
322322
323323# Define the list of Cephes libraries to build.
324324#
@@ -343,27 +343,25 @@ DEPS_CEPHES_DIST ?= netlib
343343# - remes
344344# - single
345345#
346+ # * For the `moshier` distribution, the list may include the following libraries:
347+ #
348+ # - 128bit
349+ # - double
350+ # - ldouble
351+ # - qlib
352+ # - single
353+ #
346354DEPS_CEPHES_LIBS ?= \
347- 128bit \
348- bessel \
349- c9x-complex \
350- cmath \
351- cprob \
352- ellf \
353- eval \
354- ieee \
355- ldouble \
356- linalg \
357- ode \
358- misc \
359- polyn \
360- qfloat \
361- remes \
355+ double \
362356 single
363357
364358# Define the output path when building Cephes:
365359ifeq ($(DEPS_CEPHES_DIST ) , netlib)
366360 DEPS_CEPHES_BUILD_OUT ?= $(DEPS_BUILD_DIR)/netlib_cephes
361+ else
362+ ifeq ($(DEPS_CEPHES_DIST ) , moshier)
363+ DEPS_CEPHES_BUILD_OUT ?= $(DEPS_BUILD_DIR)/moshier_cephes
367364else
368365 DEPS_CEPHES_BUILD_OUT ?= $(DEPS_BUILD_DIR)/cephes
369366endif
367+ endif
You can’t perform that action at this time.
0 commit comments