Idris-dev/config.mk

51 lines
1.4 KiB
Makefile
Raw Normal View History

UNAME_INFO := $(shell uname -a)
ifeq ($(filter , $(findstring MSYS, $(UNAME_INFO)) $(findstring MINGW, $(UNAME_INFO))),)
2016-03-08 09:51:44 +03:00
ifeq (cc,$(CC))
# In MSYS2, when using the mingw version of gcc, there is no cc -> gcc
# symlink. We can't use ?= here because CC is set implicitly to cc.
# Cross compiling users can set CC to their cross compiler.
CC =gcc
endif
endif
RANLIB ?=ranlib
CABAL :=cabal
# IDRIS_ENABLE_STATS should not be set in final release
# Any flags defined here which alter the RTS API must also be added to src/IRTS/CodegenC.hs
2018-05-02 00:17:54 +03:00
CFLAGS :=-O2 -Wall -std=c99 -pipe -fdata-sections -ffunction-sections -D_POSIX_C_SOURCE=200809L -DHAS_PTHREAD -DIDRIS_ENABLE_STATS $(CFLAGS)
# CABALFLAGS :=
CABALFLAGS += --enable-tests
2013-03-23 03:56:54 +04:00
## Disable building of Effects
#CABALFLAGS :=-f NoEffects $(CABALFLAGS)
2013-03-23 03:56:54 +04:00
ifneq (, $(findstring bsd, $(MACHINE)))
GMP_INCLUDE_DIR :=
else
GMP_INCLUDE_DIR :=-I/usr/local/include
endif
MACHINE := $(shell $(CC) -dumpmachine)
ifneq (, $(findstring darwin, $(MACHINE)))
OS :=darwin
2016-01-10 05:16:30 +03:00
else ifneq (, $(findstring cygwin, $(MACHINE)))
OS :=windows
2016-01-10 05:16:30 +03:00
else ifneq (, $(findstring mingw, $(MACHINE)))
OS :=windows
2016-01-10 05:16:30 +03:00
else ifneq (, $(findstring windows, $(MACHINE)))
2015-09-21 05:23:29 +03:00
OS :=windows
else
OS :=unix
endif
ifeq ($(OS),darwin)
SHLIB_SUFFIX :=.dylib
2016-01-10 05:16:30 +03:00
else ifeq ($(OS),windows)
SHLIB_SUFFIX :=.DLL
else
SHLIB_SUFFIX :=.so
endif