mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
On 32bit OSs long is not unambiguously int32_t (or int64_t) causing problems for IO operator resolution. This problem is avoided by explicitly defining the following operators:
16 lines
428 B
Makefile
16 lines
428 B
Makefile
#-------------------------------*- makefile -*---------------------------------
|
|
|
|
AR = ar
|
|
ARFLAGS = cr
|
|
RANLIB = ranlib
|
|
CPP = cpp
|
|
LD = ld
|
|
|
|
GFLAGS = -D$(WM_ARCH) -DWM_ARCH_OPTION=$(WM_ARCH_OPTION) \
|
|
-DWM_$(WM_PRECISION_OPTION) -DWM_LABEL_SIZE=$(WM_LABEL_SIZE)
|
|
GINC =
|
|
GLIBS = -lm
|
|
GLIB_LIBS =
|
|
|
|
#------------------------------------------------------------------------------
|