2012-10-29 15:00:54 +05:30
|
|
|
# -*- mode: makefile-gmake -*-
|
|
|
|
|
2017-01-15 13:21:46 -08:00
|
|
|
# Default build rule for any Makefile in this project: all
|
|
|
|
default: all
|
|
|
|
|
2013-05-28 09:30:36 -04:00
|
|
|
OS := $(shell uname)
|
2014-07-27 09:30:14 +02:00
|
|
|
# Do not forget to bump SOMINOR when changing VERSION,
|
2014-07-29 15:46:20 +02:00
|
|
|
# and SOMAJOR when breaking ABI in a backward-incompatible way
|
2021-09-14 12:35:03 -04:00
|
|
|
VERSION = 0.8.0
|
|
|
|
SOMAJOR = 4
|
2019-12-09 21:43:44 -05:00
|
|
|
SOMINOR = 0
|
2014-01-05 02:07:17 +05:30
|
|
|
DESTDIR =
|
2020-10-23 15:36:23 +00:00
|
|
|
prefix ?= /usr/local
|
|
|
|
bindir ?= $(prefix)/bin
|
|
|
|
libdir ?= $(prefix)/lib
|
|
|
|
includedir ?= $(prefix)/include
|
2012-07-03 16:49:19 +05:30
|
|
|
|
2016-01-19 20:45:54 +08:00
|
|
|
ifeq ($(OS), FreeBSD)
|
2020-10-23 15:36:23 +00:00
|
|
|
pkgconfigdir ?= $(prefix)/libdata/pkgconfig
|
2016-01-19 20:45:54 +08:00
|
|
|
else
|
2020-10-23 15:36:23 +00:00
|
|
|
pkgconfigdir ?= $(libdir)/pkgconfig
|
2016-01-19 20:45:54 +08:00
|
|
|
endif
|
|
|
|
|
2024-01-20 09:14:10 -06:00
|
|
|
# Build with Code Coverage
|
|
|
|
# Only test with Ubuntu + gcc + lcov, may not work for other platform.
|
|
|
|
# deps: https://github.com/linux-test-project/lcov
|
|
|
|
# You don't need to set this flag manually, `make coverage` will do it for you.
|
|
|
|
# Just Run: make clean && make coverage -j
|
|
|
|
CODE_COVERAGE ?= 0
|
|
|
|
|
2020-10-23 15:36:23 +00:00
|
|
|
USEGCC ?= 1
|
|
|
|
USECLANG ?= 0
|
2024-02-01 11:26:31 -06:00
|
|
|
TOOLPREFIX ?=
|
2012-07-03 16:49:19 +05:30
|
|
|
|
2018-04-06 14:04:45 -07:00
|
|
|
ifneq (,$(findstring $(OS),Darwin FreeBSD OpenBSD))
|
2020-10-23 15:36:23 +00:00
|
|
|
USEGCC ?= 0
|
|
|
|
USECLANG ?= 1
|
2015-01-11 23:50:17 +01:00
|
|
|
endif
|
|
|
|
|
2019-04-15 00:11:03 +02:00
|
|
|
ifeq ($(ARCH),wasm32)
|
2020-11-13 23:14:33 -05:00
|
|
|
USECLANG = 1
|
2024-04-02 22:31:00 -06:00
|
|
|
USEGCC = 0
|
2020-11-13 23:14:33 -05:00
|
|
|
TOOLPREFIX = llvm-
|
2019-04-15 00:11:03 +02:00
|
|
|
endif
|
|
|
|
|
2024-02-01 11:26:31 -06:00
|
|
|
AR := $(TOOLPREFIX)ar
|
2020-11-13 23:14:33 -05:00
|
|
|
|
2012-07-03 16:49:19 +05:30
|
|
|
ifeq ($(USECLANG),1)
|
2020-10-23 15:36:23 +00:00
|
|
|
USEGCC ?= 0
|
2024-11-13 16:17:30 +02:00
|
|
|
CC ?= clang
|
2017-09-22 13:24:07 -07:00
|
|
|
CFLAGS_add += -fno-builtin -fno-strict-aliasing
|
2012-07-03 16:49:19 +05:30
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(USEGCC),1)
|
2024-02-01 11:26:31 -06:00
|
|
|
CC := $(TOOLPREFIX)gcc
|
2016-02-28 00:02:49 +05:30
|
|
|
CFLAGS_add += -fno-gnu89-inline -fno-builtin
|
2012-07-03 16:49:19 +05:30
|
|
|
endif
|
2011-12-31 12:48:43 +05:30
|
|
|
|
2015-02-27 13:48:11 -05:00
|
|
|
ARCH ?= $(shell $(CC) -dumpmachine | sed "s/\([^-]*\).*$$/\1/")
|
|
|
|
|
2013-05-29 21:08:06 -04:00
|
|
|
ifeq ($(ARCH),mingw32)
|
|
|
|
$(error "the mingw32 compiler you are using fails the openblas testsuite. please see the Julia README.windows.md document for a replacement")
|
|
|
|
endif
|
2013-05-28 09:30:36 -04:00
|
|
|
|
2011-12-31 12:48:43 +05:30
|
|
|
# OS-specific stuff
|
2020-09-03 18:27:17 -04:00
|
|
|
ifeq ($(ARCH),arm64)
|
|
|
|
override ARCH := aarch64
|
|
|
|
endif
|
2015-02-27 13:48:11 -05:00
|
|
|
ifeq ($(findstring arm,$(ARCH)),arm)
|
|
|
|
override ARCH := arm
|
2024-02-01 11:26:31 -06:00
|
|
|
MARCH ?= armv7-a+fp
|
2017-01-15 13:21:46 -08:00
|
|
|
CFLAGS_add += -mhard-float
|
2016-04-08 19:37:13 +02:00
|
|
|
endif
|
2016-02-26 11:27:35 +00:00
|
|
|
ifeq ($(findstring powerpc,$(ARCH)),powerpc)
|
|
|
|
override ARCH := powerpc
|
|
|
|
endif
|
2016-02-26 16:46:17 +00:00
|
|
|
ifeq ($(findstring ppc,$(ARCH)),ppc)
|
|
|
|
override ARCH := powerpc
|
|
|
|
endif
|
2016-09-05 14:14:14 +02:00
|
|
|
ifeq ($(findstring s390,$(ARCH)),s390)
|
|
|
|
override ARCH := s390
|
|
|
|
endif
|
2017-01-15 13:21:46 -08:00
|
|
|
ifneq ($(filter $(ARCH),i386 i486 i586 i686 i387 i487 i587 i687),)
|
2013-05-28 09:30:36 -04:00
|
|
|
override ARCH := i387
|
2017-01-15 13:21:46 -08:00
|
|
|
MARCH ?= i686
|
2012-05-25 16:24:37 -04:00
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),x86_64)
|
2013-05-28 09:30:36 -04:00
|
|
|
override ARCH := amd64
|
2014-12-04 23:32:39 +05:30
|
|
|
endif
|
2017-01-24 16:19:33 +00:00
|
|
|
ifeq ($(findstring mips,$(ARCH)),mips)
|
|
|
|
override ARCH := mips
|
|
|
|
endif
|
2021-11-10 10:31:45 +08:00
|
|
|
ifeq ($(findstring riscv64,$(ARCH)),riscv64)
|
|
|
|
override ARCH := riscv64
|
|
|
|
endif
|
2024-01-10 12:23:48 +08:00
|
|
|
ifeq ($(findstring loongarch64,$(ARCH)),loongarch64)
|
|
|
|
override ARCH := loongarch64
|
|
|
|
endif
|
2012-04-08 20:03:36 -04:00
|
|
|
|
2016-08-08 17:24:07 -07:00
|
|
|
# If CFLAGS does not contain a -O optimization flag, default to -O3
|
|
|
|
ifeq ($(findstring -O,$(CFLAGS)),)
|
|
|
|
CFLAGS_add += -O3
|
|
|
|
endif
|
2016-02-23 13:56:12 +00:00
|
|
|
|
2013-05-28 08:59:02 -04:00
|
|
|
ifneq (,$(findstring MINGW,$(OS)))
|
|
|
|
override OS=WINNT
|
2013-03-02 19:40:38 -05:00
|
|
|
endif
|
2014-04-08 08:49:38 -07:00
|
|
|
|
|
|
|
#keep these if statements separate
|
2015-10-27 09:32:56 +02:00
|
|
|
ifeq ($(OS), WINNT)
|
2017-01-15 13:21:46 -08:00
|
|
|
SHLIB_EXT = dll
|
2021-09-09 15:49:37 -07:00
|
|
|
SONAME_FLAG =
|
2017-01-15 13:21:46 -08:00
|
|
|
shlibdir = $(bindir)
|
2016-01-19 20:45:54 +08:00
|
|
|
else
|
2017-01-15 13:21:46 -08:00
|
|
|
ifeq ($(OS), Darwin)
|
|
|
|
SHLIB_EXT = dylib
|
|
|
|
SONAME_FLAG = -install_name
|
2015-02-27 13:48:11 -05:00
|
|
|
else
|
2017-01-15 13:21:46 -08:00
|
|
|
SHLIB_EXT = so
|
|
|
|
SONAME_FLAG = -soname
|
|
|
|
endif
|
|
|
|
CFLAGS_add += -fPIC
|
|
|
|
shlibdir = $(libdir)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Add `-march` to our CFLAGS if it's defined
|
|
|
|
ifneq ($(MARCH),)
|
|
|
|
CFLAGS_arch += -march=$(MARCH)
|
|
|
|
endif
|
|
|
|
|
2015-02-27 13:48:11 -05:00
|
|
|
ifeq ($(ARCH),i387)
|
2017-01-15 13:21:46 -08:00
|
|
|
CFLAGS_arch += -m32
|
|
|
|
SFLAGS_arch += -m32
|
|
|
|
LDFLAGS_arch += -m32
|
2015-02-27 13:48:11 -05:00
|
|
|
endif
|
2017-01-15 13:21:46 -08:00
|
|
|
|
|
|
|
ifeq ($(ARCH),amd64)
|
|
|
|
CFLAGS_arch += -m64
|
|
|
|
SFLAGS_arch += -m64
|
|
|
|
LDFLAGS_arch += -m64
|
2015-02-27 13:48:11 -05:00
|
|
|
endif
|
2017-01-15 13:21:46 -08:00
|
|
|
|
2019-04-15 00:11:03 +02:00
|
|
|
ifeq ($(ARCH),wasm32)
|
|
|
|
CFLAGS_arch += -ffreestanding -nostdlib -nostdinc --target=wasm32-unknown-unknown
|
|
|
|
endif
|
|
|
|
|
2024-11-13 16:17:30 +02:00
|
|
|
LDFLAGS_arch += --sysroot=$(SYSROOT) --target=$(TRIPLE)
|
|
|
|
CFLAGS_arch += --target=$(TRIPLE) -ffreestanding
|
|
|
|
|
2017-01-15 13:21:46 -08:00
|
|
|
# Add our "arch"-related FLAGS in. We separate arch-related flags out so that
|
|
|
|
# we can conveniently get at them for targets that don't want the rest of
|
|
|
|
# *FLAGS_add, such as the testing Makefile targets
|
|
|
|
CFLAGS_add += $(CFLAGS_arch)
|
|
|
|
SFLAGS_add += $(SFLAGS_arch)
|
|
|
|
LDFLAGS_add += $(LDFLAGS_arch)
|
|
|
|
|
|
|
|
CFLAGS_add += -std=c99 -Wall -I$(OPENLIBM_HOME) -I$(OPENLIBM_HOME)/include -I$(OPENLIBM_HOME)/$(ARCH) -I$(OPENLIBM_HOME)/src -DASSEMBLER -D__BSD_VISIBLE -Wno-implicit-function-declaration
|
2017-10-21 09:50:50 -04:00
|
|
|
ifneq ($(filter $(ARCH),i387 amd64 powerpc),)
|
2017-01-15 13:21:46 -08:00
|
|
|
CFLAGS_add += -I$(OPENLIBM_HOME)/ld80
|
2017-10-21 09:50:50 -04:00
|
|
|
else
|
2024-08-09 00:19:43 +03:00
|
|
|
ifneq ($(filter $(ARCH),aarch64 riscv64),)
|
2017-10-21 09:50:50 -04:00
|
|
|
CFLAGS_add += -I$(OPENLIBM_HOME)/ld128
|
|
|
|
endif
|
2015-02-27 13:48:11 -05:00
|
|
|
endif
|
|
|
|
|
2020-09-03 18:27:17 -04:00
|
|
|
ifneq ($(filter $(ARCH),i387 amd64),)
|
|
|
|
# Determines whether `long double` is the same as `double` on this arch.
|
|
|
|
# linux x86_64, for instance, `long double` is 80 bits wide, whereas on macOS aarch64,
|
2024-11-13 16:17:30 +02:00
|
|
|
# `long double` is the same as `double`.
|
2020-09-03 18:27:17 -04:00
|
|
|
LONG_DOUBLE_NOT_DOUBLE := 1
|
2024-08-09 00:19:43 +03:00
|
|
|
else ifeq ($(ARCH), aarch64 riscv64)
|
2021-09-09 21:09:04 -07:00
|
|
|
ifeq ($(filter $(OS),Darwin WINNT),)
|
2020-09-03 18:27:17 -04:00
|
|
|
LONG_DOUBLE_NOT_DOUBLE := 1
|
|
|
|
endif
|
|
|
|
endif
|
2017-01-15 13:21:46 -08:00
|
|
|
|
2024-01-20 09:14:10 -06:00
|
|
|
ifeq ($(CODE_COVERAGE),1)
|
|
|
|
CFLAGS_add += -g -O0 --coverage
|
|
|
|
LDFLAGS_add += --coverage
|
|
|
|
endif # CODE_COVERAGE==1
|
|
|
|
|
|
|
|
|
2017-01-15 13:21:46 -08:00
|
|
|
%.c.o: %.c
|
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_add) -c $< -o $@
|
|
|
|
|
|
|
|
%.S.o: %.S
|
|
|
|
$(CC) $(CPPFLAGS) $(SFLAGS) $(SFLAGS_add) $(filter -m% -B% -I% -D%,$(CFLAGS_add)) -c $< -o $@
|
|
|
|
|
|
|
|
|
|
|
|
# Makefile debugging trick:
|
|
|
|
# call print-VARIABLE to see the runtime value of any variable
|
|
|
|
print-%:
|
|
|
|
@echo '$*=$($*)'
|