Makefile revision 6443
458N/A#
458N/A# CDDL HEADER START
458N/A#
458N/A# The contents of this file are subject to the terms of the
458N/A# Common Development and Distribution License (the "License").
458N/A# You may not use this file except in compliance with the License.
458N/A#
458N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
458N/A# or http://www.opensolaris.org/os/licensing.
458N/A# See the License for the specific language governing permissions
458N/A# and limitations under the License.
458N/A#
458N/A# When distributing Covered Code, include this CDDL HEADER in each
458N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
458N/A# If applicable, add the following below this CDDL HEADER, with the
458N/A# fields enclosed by brackets "[]" replaced with your own identifying
458N/A# information: Portions Copyright [yyyy] [name of copyright owner]
458N/A#
458N/A# CDDL HEADER END
458N/A#
3693N/A
458N/A#
458N/A# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
458N/A#
458N/Ainclude ../../../make-rules/shared-macros.mk
458N/A
458N/APATH=/usr/bin:/usr/gnu/bin:/usr/sbin
458N/A
3555N/ACOMPONENT_NAME= Python
618N/ACOMPONENT_VERSION= 2.7.12
458N/ACOMPONENT_PROJECT_URL= http://python.org/
2833N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
844N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.xz
3555N/ACOMPONENT_ARCHIVE_HASH= \
618N/A sha256:d7837121dd5652a05fef807c361909d255d173280c4e1a4ded94d73d80a1f978
3555N/ACOMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
1258N/ACOMPONENT_SIG_URL= $(COMPONENT_ARCHIVE_URL).asc
458N/ACOMPONENT_BUGDB= utility/python
3555N/A
2899N/ATPNO= 29996
3817N/A
3817N/Ainclude $(WS_MAKE_RULES)/prep.mk
3817N/Ainclude $(WS_MAKE_RULES)/configure.mk
3817N/Ainclude $(WS_MAKE_RULES)/ips.mk
458N/Ainclude $(WS_MAKE_RULES)/lint-libraries.mk
1567N/A
1567N/A# Need to preserve timestamp for Grammar files. If the pickle files are older,
1567N/A# Python will try to rebuild them.
1567N/APKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.txt
1567N/APKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.pickle
458N/A
458N/A# We patch auto* files, so regenerate headers and configure
458N/ACOMPONENT_PREP_ACTION = (cd $(@D) ; autoheader ; autoconf -f)
458N/A
969N/AC99MODE=
969N/ACPPFLAGS += -IPython
969N/A
969N/A# to find the ncurses headers
969N/ACPPFLAGS += -I/usr/include/ncurses
969N/A# enable large files how they did in JDS
969N/ACPPFLAGS += -D_LARGEFILE64_SOURCE
458N/A
458N/A# libffi for _ctypes
969N/ACPPFLAGS += $(shell pkg-config --cflags-only-I libffi)
969N/A
458N/A# because python links with $(CC) ... $(LDFLAGS) ...
458N/ALDFLAGS = $(CC_BITS) $(CC_PIC)
458N/A
458N/A# build pic
458N/ACFLAGS += $(CC_PIC)
458N/A
458N/A# The python build is profile-guided for studio; to see the benefits of that,
458N/A# Python must be compiled with -xO5 and a different build target must be used.
458N/A# Use of xprofile requires that the same options be used during compilation and
458N/A# linking. The targets chosen are based on Solaris 11 minimum supported system
646N/A# requirements.
646N/A#
646N/A# We bypass the profile build for one file (ceval.c; see the DTrace patch)
646N/A# and reduce the optimization level for that same file to work around a
646N/A# problem (see bug 23467236) where Python would core dump on sparc when
646N/A# run under DTrace.
646N/ACOMPONENT_BUILD_TARGETS = profile-opt
1091N/AXPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile
646N/APYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic
646N/APYFLAGS.sparc =
646N/ACEVAL_PATSUBST.i386 =
646N/ACEVAL_PATSUBST.sparc = "-xprofile=\%"
581N/ACEVAL_PATSUBST = $(CEVAL_PATSUBST.$(MACH))
581N/ACEVAL_CFLAGS.i386 = $(CFLAGS)
581N/ACEVAL_CFLAGS.sparc = $(subst -xO5,-xO4,$(CFLAGS))
3693N/ACEVAL_CFLAGS = $(CEVAL_CFLAGS.$(MACH))
3693N/A
3693N/ACFLAGS += -xO5 $(PYFLAGS.$(MACH))
3693N/ALDFLAGS += -xO5 $(PYFLAGS.$(MACH))
3693N/A
3693N/A# Use the Studio VIS SDK in order to explicitly generate nonfaulting loads
3693N/A# that allow Python to work with ADI-aware memory allocators.
458N/ACFLAGS.studio.sparc.64 += -xvis
458N/A
458N/A# Python puts its header files in a special place.
458N/ALINT_FLAGS += -I$(SOURCE_DIR)/Include
458N/A
458N/A# PYTHONPATH in the environment can be harmful, but setting it to empty via
458N/A# _INSTALL_ENV causes problems too, so just ignore the entire environment.
458N/A# Because of this, we need to specify PATH in multiple places below.
969N/AENV += -i
458N/A
646N/ACONFIGURE_ENV += PATH="$(PATH)"
458N/A
3693N/ACONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
458N/ACONFIGURE_OPTIONS += --enable-shared
646N/ACONFIGURE_OPTIONS += --with-system-expat
458N/ACONFIGURE_OPTIONS += --with-system-ffi
458N/ACONFIGURE_OPTIONS += --without-gcc
458N/ACONFIGURE_OPTIONS += --enable-ipv6
458N/ACONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS)"
3497N/ACONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)"
3497N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
3497N/ACONFIGURE_OPTIONS += DFLAGS="-$(BITS)"
3497N/ACONFIGURE_OPTIONS += XPROFILE_DIR="$(XPROFILE_DIR)"
3497N/A
3497N/ACOMPONENT_BUILD_ENV += PATH="$(PATH)"
3497N/ACOMPONENT_BUILD_ENV += DFLAGS="-$(BITS)"
3497N/ACOMPONENT_BUILD_ENV += XPROFILE_DIR="$(XPROFILE_DIR)"
3497N/ACOMPONENT_BUILD_ENV += CEVAL_CFLAGS="$(CEVAL_CFLAGS)"
3497N/ACOMPONENT_BUILD_ENV += CEVAL_PATSUBST="$(CEVAL_PATSUBST)"
3497N/A
3497N/A# 64 bit shared objects need to go in a 64-bit directory
3497N/ACOMPONENT_INSTALL_ARGS.64 += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python2.7/lib-dynload
3497N/A
3497N/A# Simplify the definitions of CC, CXX, CFLAGS and LDFLAGS so they hard-code
3693N/A# neither paths from our build systems nor Studio-specific options.
3497N/ACOMPONENT_PRE_INSTALL_ACTION= \
3497N/A (cd $(@D) ; $(GSED) -i -e 's/^CC=.*/CC=\t\tcc/' \
3497N/A -e 's/^CXX=.*/CXX=\t\tCC/' \
3497N/A -e 's/^CFLAGS=.*/CFLAGS=\t\t\$$\(BASECFLAGS) \$$\(OPT) \$$\(EXTRA_CFLAGS)/' \
3497N/A -e 's|^LDFLAGS=.*|LDFLAGS=|' \
3497N/A Makefile)
3497N/A
3497N/A# Because we stripped the Makefile above, we need to pass several things in the
3497N/A# environment, and use -e to tell gmake to pay attention to the environment.
3497N/ACOMPONENT_INSTALL_ENV += CC="$(CC)"
3497N/ACOMPONENT_INSTALL_ENV += CXX="$(CXX)"
3872N/ACOMPONENT_INSTALL_ENV += CFLAGS="$(CFLAGS)"
3497N/ACOMPONENT_INSTALL_ENV += LDFLAGS="$(LDFLAGS)"
3497N/ACOMPONENT_INSTALL_ENV += PATH="$(PATH)"
3497N/ACOMPONENT_INSTALL_ARGS += -e
1567N/A
1567N/A# 1. Setup pyconfig.h file to support 32 & 64 bit.
1567N/A# 2. If the /usr/lib/python2.7/lib2to3/*.pickle files are older than the
3497N/A# related *.txt files in the same directory, it will rebuild them any time
3497N/A# you try to build a Python module. So here we also touch the pickle files
3497N/A# to avoid this.
3872N/A# 3. Strip build machine paths from _sysconfigdata.py & config/Makefile.
3872N/A# Note that although the 64-bit version is not used (and thus commented
458N/A# out in the manifest), we still need to specify the 32-/64-bit paths,
1699N/A# otherwise the 64-bit build will fail to find the 32-bit path.
1699N/A# 4. (Re)compile _sysconfigdata.py since we just updated it.
1567N/ACONFIG_MAKEFILE.32= lib/python2.7/config/Makefile
1567N/ACONFIG_MAKEFILE.64= lib/$(MACH64)/python2.7/config/Makefile
3477N/ACONFIG_MAKEFILE= $(CONFIG_MAKEFILE.$(BITS))
1567N/ACOMPONENT_POST_INSTALL_ACTION= \
458N/A (cd $(PROTOUSRDIR) ; \
458N/A $(MV) include/python2.7/pyconfig.h include/python2.7/pyconfig-$(BITS).h ; \
1567N/A $(TOUCH) lib/python2.7/lib2to3/*.pickle ; \
1567N/A $(GSED) -i -e 's|$(SOURCE_DIR)|.|g' -e 's|$(COMPONENT_DIR)|..|g' \
1567N/A -e 's|$(SPRO_VROOT)/bin/||g' lib/python2.7/_sysconfigdata.py \
1567N/A $(CONFIG_MAKEFILE); \
1567N/A $(PYTHON.2.7) -m py_compile lib/python2.7/_sysconfigdata.py)
1567N/A
1567N/AASLR_MODE = $(ASLR_ENABLE)
1567N/A
1567N/A# common targets
1567N/A$(INSTALL_32): $(INSTALL_64)
1567N/Aconfigure: $(CONFIGURE_32_and_64)
1567N/Abuild: $(BUILD_32_and_64)
3722N/Ainstall: $(INSTALL_32_and_64)
3722N/A
458N/A# Using "-uall,-network" ensures all tests are run except the network tests.
458N/A# The network tests contain many expected failures when run behind a firewall.
3747N/A# The "-v" ensures verbose mode. You can set TESTOPTS_PYTHON_TEST to a
3747N/A# particular test if you want to run just one test. For example, run gmake with
3747N/A# "-k" so it continues and does both 32-bit and 64-bit tests, even if there is a
3747N/A# failure, like this:
3747N/A# $ TESTOPTS_PYTHON_TEST=test_sys gmake -k test
3747N/A# Note that when a test succeeds, the builds/*/.tested file gets created. You
3747N/A# may need to remove these files, or run "gmake clobber" or "gmake clean"
1567N/A# between tests.
458N/A#
3817N/ACOMPONENT_TEST_ENV = EXTRATESTOPTS="-v -uall,-network $(TESTOPTS_PYTHON_TEST)"
3817N/A# The distutils tests need $CC in $PATH.
3817N/ACOMPONENT_TEST_ENV += PATH="$(SPRO_VROOT)/bin:$(PATH)"
3817N/ACOMPONENT_TEST_TARGETS = test
3817N/A
3817N/A# The test output contains details from each test, in whatever order they
3817N/A# complete. The default _TRANSFORMER is not powerful enough to deal with
3817N/A# this; we need heavier artillery. Extract just the sections that start
3817N/A# with "tests OK." and end with "Makefile: " for comparison.
3817N/ACOMPONENT_TEST_TRANSFORMER = $(NAWK)
3817N/ACOMPONENT_TEST_TRANSFORMS = "'/tests OK./ {results = 1}; /Makefile:/ {results = 0} {if (results) print $0 } '"
3817N/A
3817N/Atest: $(TEST_32_and_64)
3817N/A
3817N/Asystem-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)
3817N/A
3817N/AREQUIRED_PACKAGES += compress/bzip2
3817N/AREQUIRED_PACKAGES += database/sqlite-3
3817N/AREQUIRED_PACKAGES += developer/library/xprofile
REQUIRED_PACKAGES += library/database/gdbm
REQUIRED_PACKAGES += library/expat
REQUIRED_PACKAGES += library/libffi
REQUIRED_PACKAGES += library/ncurses
REQUIRED_PACKAGES += library/python/pip-27
REQUIRED_PACKAGES += library/readline
REQUIRED_PACKAGES += library/security/openssl
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += runtime/tcl-8
REQUIRED_PACKAGES += runtime/tk-8
REQUIRED_PACKAGES += shell/ksh93
REQUIRED_PACKAGES += system/core-os
REQUIRED_PACKAGES += system/library/math
REQUIRED_PACKAGES += x11/library/libx11