diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2017-12-03 21:12:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2017-12-03 21:12:34 +0100 |
commit | edce88cfef2f2a62647c2ab9536ca29694fab292 (patch) | |
tree | 5cfc13c44a91bb8b983ee137de38e136289db81e /libm/x86_64/Makefile.arch | |
parent | c69db851309995c525b3993a10dc13dabdeb7b33 (diff) |
x86_64: add fenv support from glibc
Diffstat (limited to 'libm/x86_64/Makefile.arch')
-rw-r--r-- | libm/x86_64/Makefile.arch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libm/x86_64/Makefile.arch b/libm/x86_64/Makefile.arch new file mode 100644 index 000000000..e1be961f2 --- /dev/null +++ b/libm/x86_64/Makefile.arch @@ -0,0 +1,24 @@ +# Makefile for uClibc +# +# Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org> +# +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +# +# The routines included in this math library are derived from +# glibc's libm. +# + +ifeq ($(UCLIBC_HAS_FENV),y) +libm_ARCH_SRC:=$(wildcard $(libm_ARCH_DIR)/*.c) +libm_ARCH_OBJ:=$(patsubst $(libm_ARCH_DIR)/%.c,$(libm_ARCH_OUT)/%.o,$(libm_ARCH_SRC)) +endif + +libm_ARCH_OBJS:=$(libm_ARCH_OBJ) + +ifeq ($(DOPIC),y) +libm-a-y+=$(libm_ARCH_OBJS:.o=.os) +else +libm-a-y+=$(libm_ARCH_OBJS) +endif +libm-so-y+=$(libm_ARCH_OBJS:.o=.os) + |