aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.defn
blob: 69801d624adb9344642fd8731a9dd6250913ea0c (plain)
1
2
3
4
5
6
7
8
9
# make.configuration.defn for NaNChecker

# make sure that isnan(3) is available on this architecture

HAVE_ISNAN := $(shell grep HAVE_ISNAN $(CONFIG)/cctk_Config.h)

ifneq (define, $(findstring define,$(HAVE_ISNAN)))
    $(error "Thorn NaNChecker requires isnan(3), which is not available on this architecture.  Please remove NaNChecker from your ThornList.")
endif