components/python/python34/Makefile
branchs11-update
changeset 3778 35735ffdda43
child 1948 2d1537e7942d
child 3779 d01825f968e9
equal deleted inserted replaced
3777:68aef260e079 3778:35735ffdda43
       
     1 #
       
     2 # CDDL HEADER START
       
     3 #
       
     4 # The contents of this file are subject to the terms of the
       
     5 # Common Development and Distribution License (the "License").
       
     6 # You may not use this file except in compliance with the License.
       
     7 #
       
     8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9 # or http://www.opensolaris.org/os/licensing.
       
    10 # See the License for the specific language governing permissions
       
    11 # and limitations under the License.
       
    12 #
       
    13 # When distributing Covered Code, include this CDDL HEADER in each
       
    14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15 # If applicable, add the following below this CDDL HEADER, with the
       
    16 # fields enclosed by brackets "[]" replaced with your own identifying
       
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    18 #
       
    19 # CDDL HEADER END
       
    20 #
       
    21 
       
    22 #
       
    23 # Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
       
    24 #
       
    25 
       
    26 include ../../../make-rules/shared-macros.mk
       
    27 
       
    28 COMPONENT_NAME=		Python
       
    29 COMPONENT_VERSION=	3.4.0
       
    30 COMPONENT_PROJECT_URL=	http://python.org/
       
    31 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    32 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.xz
       
    33 COMPONENT_ARCHIVE_HASH=	\
       
    34     sha256:f13686c0a2d45e7146759e9d5d1cbd8097a0606483c0cf7730e1e13f58b14cbe
       
    35 COMPONENT_ARCHIVE_URL=	$(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
       
    36 COMPONENT_BUGDB=	utility/python
       
    37 
       
    38 include $(WS_TOP)/make-rules/prep.mk
       
    39 include $(WS_TOP)/make-rules/configure.mk
       
    40 include $(WS_TOP)/make-rules/ips.mk
       
    41 include $(WS_TOP)/make-rules/lint-libraries.mk
       
    42 
       
    43 # Need to preserve timestamp for Grammar files.  If the pickle files are older,
       
    44 # Python will try to rebuild them.
       
    45 PKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.txt
       
    46 PKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.pickle
       
    47 
       
    48 # We patch auto* files, so regenerate headers and configure
       
    49 COMPONENT_PREP_ACTION = \
       
    50 	(cd $(@D) ; autoheader ; autoconf)
       
    51 
       
    52 # The DTrace patch needs this file to be mode 0755.
       
    53 COMPONENT_PRE_BUILD_ACTION=($(CHMOD) +x \
       
    54     $(SOURCE_DIR)/Include/pydtrace_offsets.sh)
       
    55 
       
    56 # we don't want to leak $(CC_BITS) into BASECFLAGS as it causes problems with
       
    57 # python-config
       
    58 CC +=	$(CFLAGS)
       
    59 
       
    60 C99MODE=
       
    61 CPPFLAGS +=	-IPython
       
    62 
       
    63 # to find the ncurses headers
       
    64 CPPFLAGS +=	-I/usr/include/ncurses
       
    65 # enable large files how they did in JDS
       
    66 CPPFLAGS +=	-D_LARGEFILE64_SOURCE
       
    67 
       
    68 # libffi for _ctypes
       
    69 CPPFLAGS +=	$(shell pkg-config --cflags-only-I libffi)
       
    70 
       
    71 # because python links with $(CC) ... $(LDFLAGS) ...
       
    72 LDFLAGS =	$(CC_BITS) $(CC_PIC)
       
    73 
       
    74 # build pic
       
    75 CFLAGS +=	$(CC_PIC)
       
    76 
       
    77 # The python build is profile-guided for studio; to see the benefits of that,
       
    78 # Python must be compiled with -xO5 and a different build target must be used.
       
    79 # Use of xprofile requires that the same options be used during compilation and
       
    80 # linking.  The targets chosen are based on Solaris 11 minimum supported system
       
    81 # requirements.
       
    82 COMPONENT_BUILD_TARGETS = profile-opt
       
    83 XPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile
       
    84 PYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic
       
    85 PYFLAGS.sparc =
       
    86 CFLAGS += -xO5 $(PYFLAGS.$(MACH))
       
    87 LDFLAGS += -xO5 $(PYFLAGS.$(MACH))
       
    88 
       
    89 # add /usr/gnu/lib to the library search/run path
       
    90 LDFLAGS.64 = -R/usr/gnu/lib/$(MACH64) -L/usr/gnu/lib/$(MACH64)
       
    91 LDFLAGS += $(LDFLAGS.$(BITS))
       
    92 
       
    93 # Python puts its header files in a special place.
       
    94 LINT_FLAGS +=	-I$(SOURCE_DIR)/Include
       
    95 
       
    96 CONFIGURE_OPTIONS  +=		--infodir=$(CONFIGURE_INFODIR)
       
    97 CONFIGURE_OPTIONS  +=		--enable-shared
       
    98 CONFIGURE_OPTIONS  +=		--with-dtrace
       
    99 CONFIGURE_OPTIONS  +=		--with-system-expat
       
   100 CONFIGURE_OPTIONS  +=		--with-system-ffi
       
   101 CONFIGURE_OPTIONS  +=		--without-gcc
       
   102 # Building with pymalloc is the default, but that causes core dumps;
       
   103 # see http://bugs.python.org/issue21412 for details.
       
   104 CONFIGURE_OPTIONS  +=		--without-pymalloc
       
   105 CONFIGURE_OPTIONS  +=		--without-ensurepip
       
   106 CONFIGURE_OPTIONS  +=		--enable-ipv6
       
   107 CONFIGURE_OPTIONS  +=		CPPFLAGS="$(CPPFLAGS)"
       
   108 CONFIGURE_OPTIONS  +=		LDFLAGS="$(LDFLAGS)"
       
   109 CONFIGURE_OPTIONS  +=		CFLAGS="$(CFLAGS)"
       
   110 CONFIGURE_OPTIONS  +=		DFLAGS="-$(BITS)"
       
   111 CONFIGURE_OPTIONS  +=		XPROFILE_DIR="$(XPROFILE_DIR)"
       
   112 
       
   113 COMPONENT_BUILD_ENV  +=		DFLAGS="-$(BITS)"
       
   114 COMPONENT_BUILD_ENV  +=		XPROFILE_DIR="$(XPROFILE_DIR)"
       
   115 
       
   116 # Some tests have non-ASCII characters encoded for international domain names;
       
   117 # the publish step will fail in 'pkgdepend generate' without this:
       
   118 COMPONENT_PUBLISH_ENV  +=	LC_ALL=en_US.UTF-8
       
   119 
       
   120 # 64 bit shared objects need to go in a 64-bit directory
       
   121 COMPONENT_INSTALL_ARGS.64 += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python3.4/lib-dynload
       
   122 
       
   123 ASLR_MODE = $(ASLR_ENABLE)
       
   124 
       
   125 # common targets
       
   126 build:		$(BUILD_64)
       
   127 install:	$(INSTALL_64)
       
   128 
       
   129 # Using "-uall,-network" ensures all tests are run except the network tests.
       
   130 # The network tests contain many expected failures when run behind a firewall.
       
   131 # The "-v" ensures verbose mode.  You can set TESTOPTS_PYTHON_TEST to a
       
   132 # particular test if you want to run just one test.  For example,
       
   133 # $ TESTOPTS_PYTHON_TEST=test_sys gmake -k test
       
   134 # Note that when a test succeeds, the builds/*/.tested file gets created.  You
       
   135 # may need to remove these files, or run "gmake clobber" or "gmake clean"
       
   136 # between tests.
       
   137 #
       
   138 COMPONENT_TEST_ENV = EXTRATESTOPTS="-v -uall,-network $(TESTOPTS_PYTHON_TEST)"
       
   139 # Prevent the tests from getting stuck waiting for input.
       
   140 COMPONENT_TEST_TARGETS = test < /dev/null
       
   141 
       
   142 test:				$(TEST_64)
       
   143 
       
   144 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
   145 
       
   146 include $(WS_TOP)/make-rules/depend.mk