xz: Update to 5.2.3
[openwrt/openwrt.git] / tools / gmp / Makefile
1 #
2 # Copyright (C) 2009-2016 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=gmp
10 PKG_VERSION:=6.1.1
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
13 PKG_SOURCE_URL:=@GNU/gmp/
14 PKG_HASH:=d36e9c05df488ad630fff17edb50051d6432357f9ce04e34a09b3d818825e831
15
16 HOST_FIXUP:=autoreconf
17
18 HOST_BUILD_PARALLEL:=1
19
20 include $(INCLUDE_DIR)/host-build.mk
21
22 unexport CFLAGS
23
24 HOST_CONFIGURE_ARGS += \
25 --enable-static \
26 --disable-shared \
27 --disable-assembly \
28 --enable-cxx \
29 --enable-mpbsd
30
31 ifeq ($(GNU_HOST_NAME),x86_64-linux-gnux32)
32 HOST_CONFIGURE_ARGS += ABI=x32
33 endif
34
35 $(eval $(call HostBuild))