We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cb8045 commit 9152b0dCopy full SHA for 9152b0d
Make.inc
@@ -29,17 +29,16 @@ USEGCC ?= 0
29
USECLANG ?= 1
30
endif
31
32
-AR ?= $(TOOLPREFIX)ar
33
-
34
ifeq ($(ARCH),wasm32)
35
-CC ?= clang-8
36
-USEGCC ?= 0
37
-CFLAGS_add += -fno-builtin -fno-strict-aliasing
+USECLANG = 1
+TOOLPREFIX = llvm-
38
39
+AR ?= $(TOOLPREFIX)ar
+
40
ifeq ($(USECLANG),1)
41
USEGCC ?= 0
42
-CC ?= clang
+CC = clang
43
CFLAGS_add += -fno-builtin -fno-strict-aliasing
44
45
include/openlibm_math.h
@@ -304,6 +304,7 @@ OLM_DLLEXPORT double trunc(double);
304
* BSD math library entry points
305
*/
306
#if __BSD_VISIBLE
307
+OLM_DLLEXPORT int isinff(float) __pure2;
308
OLM_DLLEXPORT int isnanf(float) __pure2;
309
310
/*
0 commit comments