From 9ea7dc1cfe1a75686f1c2a2724b91a69df256be0 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Fri, 6 Nov 2009 07:32:24 +0000 Subject: BUG: do not run long double check for darwin platform (universal build breaks it). --- numpy/core/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'numpy') diff --git a/numpy/core/SConscript b/numpy/core/SConscript index 2177a8d8b..5c4e42eb8 100644 --- a/numpy/core/SConscript +++ b/numpy/core/SConscript @@ -100,7 +100,8 @@ for type in ('float', 'double', 'long double'): sz = config.CheckTypeSize(complex_def) numpyconfig_sym.append(('SIZEOF_COMPLEX_%s' % type2def(type), str(sz))) -config.CheckLongDoubleRepresentation() +if sys.platform != 'darwin': + config.CheckLongDoubleRepresentation() for type in ('Py_intptr_t',): check_type(type, include = "#include \n") -- cgit v1.2.1