author | John Beck <John.Beck@Oracle.COM> |
Wed, 25 Feb 2015 20:44:31 -0800 | |
branch | s11-update |
changeset 3876 | da37433d5103 |
parent 3795 | cfd59dfe98a2 |
child 3978 | adf3ab1a234a |
permissions | -rw-r--r-- |
3778 | 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 |
# |
|
3791
1504f7bde5fd
20334734 several Python 3.4 tests trigger core dumps on sparc
John Beck <John.Beck@Oracle.COM>
parents:
3789
diff
changeset
|
23 |
# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. |
3778 | 24 |
# |
25 |
||
26 |
include ../../../make-rules/shared-macros.mk |
|
27 |
||
28 |
COMPONENT_NAME= Python |
|
3876
da37433d5103
20605341 update Python to 3.4.3
John Beck <John.Beck@Oracle.COM>
parents:
3795
diff
changeset
|
29 |
COMPONENT_VERSION= 3.4.3 |
3778 | 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= \ |
|
3876
da37433d5103
20605341 update Python to 3.4.3
John Beck <John.Beck@Oracle.COM>
parents:
3795
diff
changeset
|
34 |
sha256:b5b3963533768d5fc325a4d7a6bd6f666726002d696f1d399ec06b043ea996b8 |
3778 | 35 |
COMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE) |
3876
da37433d5103
20605341 update Python to 3.4.3
John Beck <John.Beck@Oracle.COM>
parents:
3795
diff
changeset
|
36 |
COMPONENT_SIG_URL= $(COMPONENT_ARCHIVE_URL).asc |
3778 | 37 |
COMPONENT_BUGDB= utility/python |
38 |
||
3876
da37433d5103
20605341 update Python to 3.4.3
John Beck <John.Beck@Oracle.COM>
parents:
3795
diff
changeset
|
39 |
TPNO= 21686 |
3779
d01825f968e9
19004593 update Python to 3.4.1
John Beck <John.Beck@Oracle.COM>
parents:
3778
diff
changeset
|
40 |
|
3778 | 41 |
include $(WS_TOP)/make-rules/prep.mk |
42 |
include $(WS_TOP)/make-rules/configure.mk |
|
43 |
include $(WS_TOP)/make-rules/ips.mk |
|
44 |
include $(WS_TOP)/make-rules/lint-libraries.mk |
|
45 |
||
46 |
# Need to preserve timestamp for Grammar files. If the pickle files are older, |
|
47 |
# Python will try to rebuild them. |
|
48 |
PKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.txt |
|
49 |
PKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.pickle |
|
50 |
||
51 |
# We patch auto* files, so regenerate headers and configure |
|
52 |
COMPONENT_PREP_ACTION = \ |
|
53 |
(cd $(@D) ; autoheader ; autoconf) |
|
54 |
||
55 |
# The DTrace patch needs this file to be mode 0755. |
|
56 |
COMPONENT_PRE_BUILD_ACTION=($(CHMOD) +x \ |
|
57 |
$(SOURCE_DIR)/Include/pydtrace_offsets.sh) |
|
58 |
||
59 |
# we don't want to leak $(CC_BITS) into BASECFLAGS as it causes problems with |
|
60 |
# python-config |
|
61 |
CC += $(CFLAGS) |
|
62 |
||
63 |
C99MODE= |
|
64 |
CPPFLAGS += -IPython |
|
65 |
||
66 |
# to find the ncurses headers |
|
67 |
CPPFLAGS += -I/usr/include/ncurses |
|
68 |
# enable large files how they did in JDS |
|
69 |
CPPFLAGS += -D_LARGEFILE64_SOURCE |
|
70 |
||
71 |
# libffi for _ctypes |
|
72 |
CPPFLAGS += $(shell pkg-config --cflags-only-I libffi) |
|
73 |
||
74 |
# because python links with $(CC) ... $(LDFLAGS) ... |
|
75 |
LDFLAGS = $(CC_BITS) $(CC_PIC) |
|
76 |
||
77 |
# build pic |
|
78 |
CFLAGS += $(CC_PIC) |
|
79 |
||
3791
1504f7bde5fd
20334734 several Python 3.4 tests trigger core dumps on sparc
John Beck <John.Beck@Oracle.COM>
parents:
3789
diff
changeset
|
80 |
# 16-byte memory alignment + interpretation of non-alignment prevents SIGBUS. |
1504f7bde5fd
20334734 several Python 3.4 tests trigger core dumps on sparc
John Beck <John.Beck@Oracle.COM>
parents:
3789
diff
changeset
|
81 |
studio_ALIGN.sparc.64 = -xmemalign=16i |
1504f7bde5fd
20334734 several Python 3.4 tests trigger core dumps on sparc
John Beck <John.Beck@Oracle.COM>
parents:
3789
diff
changeset
|
82 |
|
3778 | 83 |
# The python build is profile-guided for studio; to see the benefits of that, |
84 |
# Python must be compiled with -xO5 and a different build target must be used. |
|
85 |
# Use of xprofile requires that the same options be used during compilation and |
|
86 |
# linking. The targets chosen are based on Solaris 11 minimum supported system |
|
87 |
# requirements. |
|
88 |
COMPONENT_BUILD_TARGETS = profile-opt |
|
89 |
XPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile |
|
90 |
PYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic |
|
91 |
PYFLAGS.sparc = |
|
92 |
CFLAGS += -xO5 $(PYFLAGS.$(MACH)) |
|
93 |
LDFLAGS += -xO5 $(PYFLAGS.$(MACH)) |
|
94 |
||
95 |
# add /usr/gnu/lib to the library search/run path |
|
96 |
LDFLAGS.64 = -R/usr/gnu/lib/$(MACH64) -L/usr/gnu/lib/$(MACH64) |
|
97 |
LDFLAGS += $(LDFLAGS.$(BITS)) |
|
98 |
||
99 |
# Python puts its header files in a special place. |
|
100 |
LINT_FLAGS += -I$(SOURCE_DIR)/Include |
|
101 |
||
3793
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
102 |
# PYTHONPATH in the environment can be harmful, but setting it to empty via |
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
103 |
# _INSTALL_ENV causes problems too, so just ignore the entire environment. |
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
104 |
# Because of this, we need to specify PATH in multiple places below. |
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
105 |
ENV += -i |
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
106 |
|
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
107 |
CONFIGURE_ENV += PATH="$(PATH)" |
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
108 |
|
3778 | 109 |
CONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR) |
110 |
CONFIGURE_OPTIONS += --enable-shared |
|
111 |
CONFIGURE_OPTIONS += --with-dtrace |
|
112 |
CONFIGURE_OPTIONS += --with-system-expat |
|
113 |
CONFIGURE_OPTIONS += --with-system-ffi |
|
114 |
CONFIGURE_OPTIONS += --without-gcc |
|
115 |
CONFIGURE_OPTIONS += --without-ensurepip |
|
116 |
CONFIGURE_OPTIONS += --enable-ipv6 |
|
3784
d6eabdbf55cb
19714339 Python 3.4 utilities use incorrect shebang path
John Beck <John.Beck@Oracle.COM>
parents:
3783
diff
changeset
|
117 |
CONFIGURE_OPTIONS += --bindir=/usr/bin |
3778 | 118 |
CONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS)" |
119 |
CONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)" |
|
120 |
CONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)" |
|
121 |
CONFIGURE_OPTIONS += DFLAGS="-$(BITS)" |
|
122 |
CONFIGURE_OPTIONS += XPROFILE_DIR="$(XPROFILE_DIR)" |
|
123 |
||
124 |
COMPONENT_BUILD_ENV += DFLAGS="-$(BITS)" |
|
125 |
COMPONENT_BUILD_ENV += XPROFILE_DIR="$(XPROFILE_DIR)" |
|
3793
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
126 |
COMPONENT_BUILD_ENV += PATH="$(PATH)" |
3778 | 127 |
|
128 |
# Some tests have non-ASCII characters encoded for international domain names; |
|
129 |
# the publish step will fail in 'pkgdepend generate' without this: |
|
130 |
COMPONENT_PUBLISH_ENV += LC_ALL=en_US.UTF-8 |
|
131 |
||
132 |
# 64 bit shared objects need to go in a 64-bit directory |
|
133 |
COMPONENT_INSTALL_ARGS.64 += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python3.4/lib-dynload |
|
134 |
||
135 |
ASLR_MODE = $(ASLR_ENABLE) |
|
136 |
||
3789
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
137 |
# Simplify the definitions of CC, CXX, CFLAGS and LDFLAGS so they hard-code |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
138 |
# neither paths from our build systems nor Studio-specific options. |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
139 |
COMPONENT_PRE_INSTALL_ACTION= \ |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
140 |
(cd $(@D) ; \ |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
141 |
$(GSED) -i -e 's/^CC=.*/CC=\t\tcc/' -e 's/^CXX=.*/CXX=\t\tCC/' \ |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
142 |
-e 's/^CFLAGS=.*/CFLAGS=\t\t\$$\(BASECFLAGS) \$$\(OPT) \$$\(EXTRA_CFLAGS)/' \ |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
143 |
-e 's|^LDFLAGS=.*|LDFLAGS=|' Makefile) |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
144 |
|
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
145 |
# Because we stripped the Makefile above, we need to pass several things in the |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
146 |
# environment, and use -e to tell gmake to pay attention to the environment. |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
147 |
COMPONENT_INSTALL_ENV += CC="$(CC)" |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
148 |
COMPONENT_INSTALL_ENV += CXX="$(CXX)" |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
149 |
COMPONENT_INSTALL_ENV += CFLAGS="$(CFLAGS)" |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
150 |
COMPONENT_INSTALL_ENV += LDFLAGS="$(LDFLAGS)" |
3793
7befd73326eb
20396493 environment influences python2.7 and python3.4 builds
John Beck <John.Beck@Oracle.COM>
parents:
3791
diff
changeset
|
151 |
COMPONENT_INSTALL_ENV += PATH="$(PATH)" |
3789
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
152 |
COMPONENT_INSTALL_ARGS += -e |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
153 |
|
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
154 |
# Strip build machine paths from _sysconfigdata.py & config/Makefile. |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
155 |
COMPONENT_POST_INSTALL_ACTION= \ |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
156 |
(cd $(PROTOUSRLIBDIR)/python3.4 ; \ |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
157 |
$(GSED) -i -e 's|$(SOURCE_DIR)|.|g' -e 's|$(COMPONENT_DIR)|..|g' \ |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
158 |
-e 's|$(SPRO_VROOT)/bin/||g' lib-dynload/64/_sysconfigdata.py \ |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
159 |
config-3.4m/Makefile) |
137fdcb27c8e
16837431 /usr/lib/python2.7/config/Makefile is incorrect
John Beck <John.Beck@Oracle.COM>
parents:
3786
diff
changeset
|
160 |
|
3778 | 161 |
# common targets |
162 |
build: $(BUILD_64) |
|
163 |
install: $(INSTALL_64) |
|
164 |
||
165 |
# Using "-uall,-network" ensures all tests are run except the network tests. |
|
166 |
# The network tests contain many expected failures when run behind a firewall. |
|
167 |
# The "-v" ensures verbose mode. You can set TESTOPTS_PYTHON_TEST to a |
|
168 |
# particular test if you want to run just one test. For example, |
|
169 |
# $ TESTOPTS_PYTHON_TEST=test_sys gmake -k test |
|
170 |
# Note that when a test succeeds, the builds/*/.tested file gets created. You |
|
171 |
# may need to remove these files, or run "gmake clobber" or "gmake clean" |
|
172 |
# between tests. |
|
173 |
# |
|
174 |
COMPONENT_TEST_ENV = EXTRATESTOPTS="-v -uall,-network $(TESTOPTS_PYTHON_TEST)" |
|
3795
cfd59dfe98a2
20463707 Python's distutils test need compiler in PATH
John Beck <John.Beck@Oracle.COM>
parents:
3793
diff
changeset
|
175 |
# The distutils tests need $CC in $PATH. |
cfd59dfe98a2
20463707 Python's distutils test need compiler in PATH
John Beck <John.Beck@Oracle.COM>
parents:
3793
diff
changeset
|
176 |
COMPONENT_TEST_ENV += PATH="$(SPRO_VROOT)/bin:$(PATH)" |
3778 | 177 |
# Prevent the tests from getting stuck waiting for input. |
178 |
COMPONENT_TEST_TARGETS = test < /dev/null |
|
179 |
||
180 |
test: $(TEST_64) |
|
181 |
||
182 |
BUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS) |
|
183 |
||
184 |
include $(WS_TOP)/make-rules/depend.mk |