Makefile revision 3497
0N/A#
1472N/A# CDDL HEADER START
0N/A#
0N/A# The contents of this file are subject to the terms of the
0N/A# Common Development and Distribution License (the "License").
0N/A# You may not use this file except in compliance with the License.
0N/A#
0N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0N/A# or http://www.opensolaris.org/os/licensing.
0N/A# See the License for the specific language governing permissions
0N/A# and limitations under the License.
0N/A#
0N/A# When distributing Covered Code, include this CDDL HEADER in each
0N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0N/A# If applicable, add the following below this CDDL HEADER, with the
0N/A# fields enclosed by brackets "[]" replaced with your own identifying
0N/A# information: Portions Copyright [yyyy] [name of copyright owner]
0N/A#
1472N/A# CDDL HEADER END
1472N/A#
1472N/A# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
0N/A
0N/A#
0N/Ainclude ../../../make-rules/shared-macros.mk
1879N/A
1879N/APATH=/usr/bin:/usr/gnu/bin:/usr/sbin
1879N/A
1879N/ACOMPONENT_NAME= Python
1879N/ACOMPONENT_VERSION= 2.7.8
1879N/ACOMPONENT_PROJECT_URL= http://python.org/
1879N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
0N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.xz
0N/ACOMPONENT_ARCHIVE_HASH= \
0N/A sha256:edde10a0cb7d14e2735e682882d5b287028d1485c456758154c19573db68075a
0N/ACOMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
0N/ACOMPONENT_BUGDB= utility/python
0N/A
0N/ATPNO= 18461
0N/A
0N/Ainclude $(WS_TOP)/make-rules/prep.mk
0N/Ainclude $(WS_TOP)/make-rules/configure.mk
0N/Ainclude $(WS_TOP)/make-rules/ips.mk
0N/Ainclude $(WS_TOP)/make-rules/lint-libraries.mk
0N/A
304N/A# Need to preserve timestamp for Grammar files. If the pickle files are older,
0N/A# Python will try to rebuild them.
0N/APKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.txt
0N/APKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.pickle
0N/A
0N/A# We patch auto* files, so regenerate headers and configure
0N/ACOMPONENT_PREP_ACTION = \
0N/A (cd $(@D) ; autoheader ; autoconf)
0N/A
0N/A# we don't want to leak $(CC_BITS) into BASECFLAGS as it causes problems with
0N/A# python-config
304N/ACC += $(CFLAGS)
0N/A
1601N/AC99MODE=
0N/ACPPFLAGS += -IPython
0N/A
0N/A# to find the ncurses headers
0N/ACPPFLAGS += -I/usr/include/ncurses
0N/A# enable large files how they did in JDS
0N/ACPPFLAGS += -D_LARGEFILE64_SOURCE
0N/A
0N/A# libffi for _ctypes
0N/ACPPFLAGS += $(shell pkg-config --cflags-only-I libffi)
0N/A
0N/A# because python links with $(CC) ... $(LDFLAGS) ...
1601N/ALDFLAGS = $(CC_BITS) $(CC_PIC)
1601N/A
1601N/A# build pic
1601N/ACFLAGS += $(CC_PIC)
1601N/A
1601N/A# The python build is profile-guided for studio; to see the benefits of that,
1601N/A# Python must be compiled with -xO5 and a different build target must be used.
1601N/A# Use of xprofile requires that the same options be used during compilation and
1601N/A# linking. The targets chosen are based on Solaris 11 minimum supported system
1601N/A# requirements.
1601N/ACOMPONENT_BUILD_TARGETS = profile-opt
1601N/AXPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile
1601N/APYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic
0N/APYFLAGS.sparc =
0N/ACFLAGS += -xO5 $(PYFLAGS.$(MACH))
0N/ALDFLAGS += -xO5 $(PYFLAGS.$(MACH))
0N/A
0N/A# add /usr/gnu/lib to the library search/run path
0N/ALDFLAGS.32 = -R/usr/gnu/lib -L/usr/gnu/lib
0N/ALDFLAGS.64 = -R/usr/gnu/lib/$(MACH64) -L/usr/gnu/lib/$(MACH64)
0N/ALDFLAGS += $(LDFLAGS.$(BITS))
0N/A
0N/A# Python puts its header files in a special place.
0N/ALINT_FLAGS += -I$(SOURCE_DIR)/Include
0N/A
0N/ACONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
1297N/ACONFIGURE_OPTIONS += --enable-shared
0N/ACONFIGURE_OPTIONS += --with-system-expat
0N/ACONFIGURE_OPTIONS += --with-system-ffi
0N/ACONFIGURE_OPTIONS += --without-gcc
0N/ACONFIGURE_OPTIONS += --enable-ipv6
304N/ACONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS)"
0N/ACONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)"
0N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
0N/ACONFIGURE_OPTIONS += DFLAGS="-$(BITS)"
0N/ACONFIGURE_OPTIONS += XPROFILE_DIR="$(XPROFILE_DIR)"
0N/A
0N/ACOMPONENT_BUILD_ENV += DFLAGS="-$(BITS)"
0N/ACOMPONENT_BUILD_ENV += XPROFILE_DIR="$(XPROFILE_DIR)"
1297N/A
0N/A# 64 bit shared objects need to go in a 64-bit directory
0N/ACOMPONENT_INSTALL_ARGS.64 += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python2.7/lib-dynload
0N/A
0N/A# Simplify the definitions of CC, CXX, CFLAGS and LDFLAGS so they hard-code
304N/A# neither paths from our build systems nor Studio-specific options.
0N/ACOMPONENT_PRE_INSTALL_ACTION= \
0N/A (cd $(@D) ; $(GSED) -i -e 's/^CC=.*/CC=\t\tcc/' \
0N/A -e 's/^CXX=.*/CXX=\t\tCC/' \
0N/A -e 's/^CFLAGS=.*/CFLAGS=\t\t\$$\(BASECFLAGS) \$$\(OPT) \$$\(EXTRA_CFLAGS)/' \
0N/A -e 's|^LDFLAGS=.*|LDFLAGS=|' \
0N/A Makefile)
0N/A
0N/A# Because we stripped the Makefile above, we need to pass several things in the
0N/A# environment, and use -e to tell gmake to pay attention to the environment.
0N/ACOMPONENT_INSTALL_ENV += CC="$(CC)"
29N/ACOMPONENT_INSTALL_ENV += CXX="$(CXX)"
0N/ACOMPONENT_INSTALL_ENV += CFLAGS="$(CFLAGS)"
0N/ACOMPONENT_INSTALL_ENV += LDFLAGS="$(LDFLAGS)"
0N/ACOMPONENT_INSTALL_ARGS += -e
0N/A
0N/A# 1. Setup pyconfig.h file to support 32 & 64 bit.
0N/A# 2. If the /usr/lib/python2.7/lib2to3/*.pickle files are older than the
0N/A# related *.txt files in the same directory, it will rebuild them any time
0N/A# you try to build a Python module. So here we also touch the pickle files
0N/A# to avoid this.
0N/A# 3. Strip build machine paths from _sysconfigdata.py & config/Makefile.
0N/A# Note that although the 64-bit version is not used (and thus commented
0N/A# out in the manifest), we still need to specify the 32-/64-bit paths,
0N/A# otherwise the 64-bit build will fail to find the 32-bit path.
1601N/ACONFIG_MAKEFILE.32= lib/python2.7/config/Makefile
1601N/ACONFIG_MAKEFILE.64= lib/$(MACH64)/python2.7/config/Makefile
0N/ACONFIG_MAKEFILE= $(CONFIG_MAKEFILE.$(BITS))
0N/ACOMPONENT_POST_INSTALL_ACTION= \
1601N/A (cd $(PROTOUSRDIR) ; \
1601N/A $(MV) include/python2.7/pyconfig.h include/python2.7/pyconfig-$(BITS).h ; \
1601N/A $(TOUCH) lib/python2.7/lib2to3/*.pickle ; \
1601N/A $(GSED) -i -e 's|$(SOURCE_DIR)|.|g' -e 's|$(COMPONENT_DIR)|..|g' \
0N/A -e 's|$(SPRO_VROOT)/bin/||g' lib/python2.7/_sysconfigdata.py \
0N/A $(CONFIG_MAKEFILE))
0N/A
0N/AASLR_MODE = $(ASLR_ENABLE)
0N/A
0N/A# common targets
0N/A$(INSTALL_32): $(INSTALL_64)
0N/Aconfigure: $(CONFIGURE_32_and_64)
0N/Abuild: $(BUILD_32_and_64)
0N/Ainstall: $(INSTALL_32_and_64)
0N/A
0N/A# Using "-uall,-network" ensures all tests are run except the network tests.
0N/A# The network tests contain many expected failures when run behind a firewall.
0N/A# The "-v" ensures verbose mode. You can set TESTOPTS_PYTHON_TEST to a
0N/A# particular test if you want to run just one test. For example, run gmake with
0N/A# "-k" so it continues and does both 32-bit and 64-bit tests, even if there is a
0N/A# failure, like this:
0N/A# $ TESTOPTS_PYTHON_TEST=test_sys gmake -k test
0N/A# Note that when a test succeeds, the builds/*/.tested file gets created. You
0N/A# may need to remove these files, or run "gmake clobber" or "gmake clean"
0N/A# between tests.
0N/A#
0N/ACOMPONENT_TEST_ENV = EXTRATESTOPTS="-v -uall,-network $(TESTOPTS_PYTHON_TEST)"
0N/ACOMPONENT_TEST_TARGETS = test
0N/A
0N/Atest: $(TEST_32_and_64)
0N/A
0N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
0N/A
0N/Ainclude $(WS_TOP)/make-rules/depend.mk
0N/A