Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5af85640
Commit
5af85640
authored
Dec 21, 2015
by
Zachary Ware
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #25827: Add support for ICC to configure
parent
66c08d90
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
196 additions
and
0 deletions
+196
-0
.gitignore
.gitignore
+1
-0
.hgignore
.hgignore
+1
-0
Makefile.pre.in
Makefile.pre.in
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
configure
configure
+151
-0
configure.ac
configure.ac
+39
-0
No files found.
.gitignore
View file @
5af85640
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
*.gc??
*.gc??
*.profclang?
*.profclang?
*.profraw
*.profraw
*.dyn
.gdb_history
.gdb_history
Doc/build/
Doc/build/
Doc/venv/
Doc/venv/
...
...
.hgignore
View file @
5af85640
...
@@ -53,6 +53,7 @@ libpython*.so*
...
@@ -53,6 +53,7 @@ libpython*.so*
*.gc??
*.gc??
*.profclang?
*.profclang?
*.profraw
*.profraw
*.dyn
Lib/distutils/command/*.pdb
Lib/distutils/command/*.pdb
Lib/lib2to3/*.pickle
Lib/lib2to3/*.pickle
Lib/test/data/*
Lib/test/data/*
...
...
Makefile.pre.in
View file @
5af85640
...
@@ -1592,6 +1592,7 @@ clean: pycremoval
...
@@ -1592,6 +1592,7 @@ clean: pycremoval
profile-removal
:
profile-removal
:
find
.
-name
'*.gc??'
-exec
rm
-f
{}
';'
find
.
-name
'*.gc??'
-exec
rm
-f
{}
';'
find
.
-name
'*.profclang?'
-exec
rm
-f
{}
';'
find
.
-name
'*.profclang?'
-exec
rm
-f
{}
';'
find
.
-name
'*.dyn'
-exec
rm
-f
{}
';'
rm
-f
$(COVERAGE_INFO)
rm
-f
$(COVERAGE_INFO)
rm
-rf
$(COVERAGE_REPORT)
rm
-rf
$(COVERAGE_REPORT)
...
...
Misc/NEWS
View file @
5af85640
...
@@ -92,6 +92,9 @@ Tests
...
@@ -92,6 +92,9 @@ Tests
Build
Build
-----
-----
-
Issue
#
25827
:
Add
support
for
building
with
ICC
to
``
configure
``,
including
a
new
``--
with
-
icc
``
flag
.
-
Issue
#
25696
:
Fix
installation
of
Python
on
UNIX
with
make
-
j9
.
-
Issue
#
25696
:
Fix
installation
of
Python
on
UNIX
with
make
-
j9
.
-
Issue
#
25798
:
Update
OS
X
10.5
installer
to
use
OpenSSL
1.0.2
e
.
-
Issue
#
25798
:
Update
OS
X
10.5
installer
to
use
OpenSSL
1.0.2
e
.
...
...
configure
View file @
5af85640
...
@@ -801,6 +801,7 @@ with_universal_archs
...
@@ -801,6 +801,7 @@ with_universal_archs
with_framework_name
with_framework_name
enable_framework
enable_framework
with_gcc
with_gcc
with_icc
with_cxx_main
with_cxx_main
with_suffix
with_suffix
enable_shared
enable_shared
...
@@ -1480,6 +1481,7 @@ Optional Packages:
...
@@ -1480,6 +1481,7 @@ Optional Packages:
specify an alternate name of the framework built
specify an alternate name of the framework built
with --enable-framework
with --enable-framework
--without-gcc never use gcc
--without-gcc never use gcc
--with-icc build with icc
--with-cxx-main=<compiler>
--with-cxx-main=<compiler>
compile main() and link python executable with C++
compile main() and link python executable with C++
compiler
compiler
...
@@ -3549,6 +3551,29 @@ fi
...
@@ -3549,6 +3551,29 @@ fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$without_gcc
"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$without_gcc
"
>
&5
$as_echo
"
$without_gcc
"
>
&6
;
}
$as_echo
"
$without_gcc
"
>
&6
;
}
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for --with-icc"
>
&5
$as_echo_n
"checking for --with-icc... "
>
&6
;
}
# Check whether --with-icc was given.
if
test
"
${
with_icc
+set
}
"
=
set
;
then
:
withval
=
$with_icc
;
case
$withval
in
no
)
CC
=
${
CC
:-
cc
}
with_icc
=
no
;;
yes
)
CC
=
icc
CXX
=
icpc
with_icc
=
yes
;;
*
)
CC
=
$withval
with_icc
=
$withval
;;
esac
else
with_icc
=
no
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$with_icc
"
>
&5
$as_echo
"
$with_icc
"
>
&6
;
}
# If the user switches compilers, we can't believe the cache
# If the user switches compilers, we can't believe the cache
if
test
!
-z
"
$ac_cv_prog_CC
"
-a
!
-z
"
$CC
"
-a
"
$CC
"
!=
"
$ac_cv_prog_CC
"
if
test
!
-z
"
$ac_cv_prog_CC
"
-a
!
-z
"
$CC
"
-a
"
$CC
"
!=
"
$ac_cv_prog_CC
"
then
then
...
@@ -4934,6 +4959,104 @@ yes:)
...
@@ -4934,6 +4959,104 @@ yes:)
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: WARNING: using cross tools not prefixed with host triplet"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: WARNING: using cross tools not prefixed with host triplet"
>
&5
$as_echo
"
$as_me
: WARNING: using cross tools not prefixed with host triplet"
>
&2
;
}
$as_echo
"
$as_me
: WARNING: using cross tools not prefixed with host triplet"
>
&2
;
}
ac_tool_warned
=
yes
;;
ac_tool_warned
=
yes
;;
esac
CXX
=
$ac_pt_CXX
fi
else
CXX
=
"
$ac_cv_path_CXX
"
fi
;;
icc|
*
/icc
)
if
test
-n
"
$ac_tool_prefix
"
;
then
# Extract the first word of "${ac_tool_prefix}icpc", so it can be a program name with args.
set
dummy
${
ac_tool_prefix
}
icpc
;
ac_word
=
$2
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for
$ac_word
"
>
&5
$as_echo_n
"checking for
$ac_word
... "
>
&6
;
}
if
${
ac_cv_path_CXX
+
:
}
false
;
then
:
$as_echo_n
"(cached) "
>
&6
else
case
$CXX
in
[
\\
/]
*
|
?:[
\\
/]
*
)
ac_cv_path_CXX
=
"
$CXX
"
# Let the user override the test with a path.
;;
*
)
as_save_IFS
=
$IFS
;
IFS
=
$PATH_SEPARATOR
for
as_dir
in
notfound
do
IFS
=
$as_save_IFS
test
-z
"
$as_dir
"
&&
as_dir
=
.
for
ac_exec_ext
in
''
$ac_executable_extensions
;
do
if
as_fn_executable_p
"
$as_dir
/
$ac_word$ac_exec_ext
"
;
then
ac_cv_path_CXX
=
"
$as_dir
/
$ac_word$ac_exec_ext
"
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: found
$as_dir
/
$ac_word$ac_exec_ext
"
>
&5
break
2
fi
done
done
IFS
=
$as_save_IFS
;;
esac
fi
CXX
=
$ac_cv_path_CXX
if
test
-n
"
$CXX
"
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$CXX
"
>
&5
$as_echo
"
$CXX
"
>
&6
;
}
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
$as_echo
"no"
>
&6
;
}
fi
fi
if
test
-z
"
$ac_cv_path_CXX
"
;
then
ac_pt_CXX
=
$CXX
# Extract the first word of "icpc", so it can be a program name with args.
set
dummy icpc
;
ac_word
=
$2
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for
$ac_word
"
>
&5
$as_echo_n
"checking for
$ac_word
... "
>
&6
;
}
if
${
ac_cv_path_ac_pt_CXX
+
:
}
false
;
then
:
$as_echo_n
"(cached) "
>
&6
else
case
$ac_pt_CXX
in
[
\\
/]
*
|
?:[
\\
/]
*
)
ac_cv_path_ac_pt_CXX
=
"
$ac_pt_CXX
"
# Let the user override the test with a path.
;;
*
)
as_save_IFS
=
$IFS
;
IFS
=
$PATH_SEPARATOR
for
as_dir
in
notfound
do
IFS
=
$as_save_IFS
test
-z
"
$as_dir
"
&&
as_dir
=
.
for
ac_exec_ext
in
''
$ac_executable_extensions
;
do
if
as_fn_executable_p
"
$as_dir
/
$ac_word$ac_exec_ext
"
;
then
ac_cv_path_ac_pt_CXX
=
"
$as_dir
/
$ac_word$ac_exec_ext
"
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: found
$as_dir
/
$ac_word$ac_exec_ext
"
>
&5
break
2
fi
done
done
IFS
=
$as_save_IFS
;;
esac
fi
ac_pt_CXX
=
$ac_cv_path_ac_pt_CXX
if
test
-n
"
$ac_pt_CXX
"
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_pt_CXX
"
>
&5
$as_echo
"
$ac_pt_CXX
"
>
&6
;
}
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
$as_echo
"no"
>
&6
;
}
fi
if
test
"x
$ac_pt_CXX
"
=
x
;
then
CXX
=
"icpc"
else
case
$cross_compiling
:
$ac_tool_warned
in
yes
:
)
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: WARNING: using cross tools not prefixed with host triplet"
>
&5
$as_echo
"
$as_me
: WARNING: using cross tools not prefixed with host triplet"
>
&2
;
}
ac_tool_warned
=
yes
;;
esac
esac
CXX
=
$ac_pt_CXX
CXX
=
$ac_pt_CXX
fi
fi
...
@@ -6438,6 +6561,12 @@ fi
...
@@ -6438,6 +6561,12 @@ fi
# Enable PGO flags.
# Enable PGO flags.
# Extract the first word of "llvm-profdata", so it can be a program name with args.
# Extract the first word of "llvm-profdata", so it can be a program name with args.
set
dummy llvm-profdata
;
ac_word
=
$2
set
dummy llvm-profdata
;
ac_word
=
$2
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for
$ac_word
"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for
$ac_word
"
>
&5
...
@@ -6509,6 +6638,12 @@ case $CC in
...
@@ -6509,6 +6638,12 @@ case $CC in
;;
;;
esac
esac
;;
;;
*
icc
*
)
PGO_PROF_GEN_FLAG
=
"-prof-gen"
PGO_PROF_USE_FLAG
=
"-prof-use"
LLVM_PROF_MERGER
=
"true"
LLVM_PROF_FILE
=
""
;;
esac
esac
# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
...
@@ -6655,6 +6790,13 @@ $as_echo "$ac_cv_no_strict_aliasing" >&6; }
...
@@ -6655,6 +6790,13 @@ $as_echo "$ac_cv_no_strict_aliasing" >&6; }
BASECFLAGS
=
"
$BASECFLAGS
-fno-strict-aliasing"
BASECFLAGS
=
"
$BASECFLAGS
-fno-strict-aliasing"
fi
fi
# ICC doesn't recognize the option, but only emits a warning
## XXX does it emit an unused result warning and can it be disabled?
case
"
$CC
"
in
*
icc
*
)
ac_cv_disable_unused_result_warning
=
no
;;
*
)
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking if we can turn off
$CC
unused result warning"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking if we can turn off
$CC
unused result warning"
>
&5
$as_echo_n
"checking if we can turn off
$CC
unused result warning... "
>
&6
;
}
$as_echo_n
"checking if we can turn off
$CC
unused result warning... "
>
&6
;
}
ac_save_cc
=
"
$CC
"
ac_save_cc
=
"
$CC
"
...
@@ -6692,6 +6834,8 @@ fi
...
@@ -6692,6 +6834,8 @@ fi
CC
=
"
$ac_save_cc
"
CC
=
"
$ac_save_cc
"
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_disable_unused_result_warning
"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_disable_unused_result_warning
"
>
&5
$as_echo
"
$ac_cv_disable_unused_result_warning
"
>
&6
;
}
$as_echo
"
$ac_cv_disable_unused_result_warning
"
>
&6
;
}
;;
esac
if
test
$ac_cv_disable_unused_result_warning
=
yes
if
test
$ac_cv_disable_unused_result_warning
=
yes
then
then
...
@@ -6981,6 +7125,13 @@ $as_echo "$MACOSX_DEPLOYMENT_TARGET" >&6; }
...
@@ -6981,6 +7125,13 @@ $as_echo "$MACOSX_DEPLOYMENT_TARGET" >&6; }
;;
;;
esac
esac
# ICC needs -fp-model strict or floats behave badly
case
"
$CC
"
in
*
icc
*
)
CFLAGS_NODIST
=
"
$CFLAGS_NODIST
-fp-model strict"
;;
esac
if
test
"
$Py_DEBUG
"
=
'true'
;
then
if
test
"
$Py_DEBUG
"
=
'true'
;
then
:
:
else
else
...
...
configure.ac
View file @
5af85640
...
@@ -593,6 +593,22 @@ AC_ARG_WITH(gcc,
...
@@ -593,6 +593,22 @@ AC_ARG_WITH(gcc,
esac])
esac])
AC_MSG_RESULT($without_gcc)
AC_MSG_RESULT($without_gcc)
AC_MSG_CHECKING(for --with-icc)
AC_ARG_WITH(icc,
AS_HELP_STRING([--with-icc], [build with icc]),
[
case $withval in
no) CC=${CC:-cc}
with_icc=no;;
yes) CC=icc
CXX=icpc
with_icc=yes;;
*) CC=$withval
with_icc=$withval;;
esac], [
with_icc=no])
AC_MSG_RESULT($with_icc)
# If the user switches compilers, we can't believe the cache
# If the user switches compilers, we can't believe the cache
if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
then
then
...
@@ -699,6 +715,7 @@ then
...
@@ -699,6 +715,7 @@ then
gcc) AC_PATH_TOOL(CXX, [g++], [g++], [notfound]) ;;
gcc) AC_PATH_TOOL(CXX, [g++], [g++], [notfound]) ;;
cc) AC_PATH_TOOL(CXX, [c++], [c++], [notfound]) ;;
cc) AC_PATH_TOOL(CXX, [c++], [c++], [notfound]) ;;
clang|*/clang) AC_PATH_TOOL(CXX, [clang++], [clang++], [notfound]) ;;
clang|*/clang) AC_PATH_TOOL(CXX, [clang++], [clang++], [notfound]) ;;
icc|*/icc) AC_PATH_TOOL(CXX, [icpc], [icpc], [notfound]) ;;
esac
esac
if test "$CXX" = "notfound"
if test "$CXX" = "notfound"
then
then
...
@@ -1259,6 +1276,12 @@ case $CC in
...
@@ -1259,6 +1276,12 @@ case $CC in
;;
;;
esac
esac
;;
;;
*icc*)
PGO_PROF_GEN_FLAG="-prof-gen"
PGO_PROF_USE_FLAG="-prof-use"
LLVM_PROF_MERGER="true"
LLVM_PROF_FILE=""
;;
esac
esac
# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
...
@@ -1370,6 +1393,13 @@ yes)
...
@@ -1370,6 +1393,13 @@ yes)
BASECFLAGS="$BASECFLAGS -fno-strict-aliasing"
BASECFLAGS="$BASECFLAGS -fno-strict-aliasing"
fi
fi
# ICC doesn't recognize the option, but only emits a warning
## XXX does it emit an unused result warning and can it be disabled?
case "$CC" in
*icc*)
ac_cv_disable_unused_result_warning=no
;;
*)
AC_MSG_CHECKING(if we can turn off $CC unused result warning)
AC_MSG_CHECKING(if we can turn off $CC unused result warning)
ac_save_cc="$CC"
ac_save_cc="$CC"
CC="$CC -Wunused-result -Werror"
CC="$CC -Wunused-result -Werror"
...
@@ -1386,6 +1416,8 @@ yes)
...
@@ -1386,6 +1416,8 @@ yes)
CFLAGS="$save_CFLAGS"
CFLAGS="$save_CFLAGS"
CC="$ac_save_cc"
CC="$ac_save_cc"
AC_MSG_RESULT($ac_cv_disable_unused_result_warning)
AC_MSG_RESULT($ac_cv_disable_unused_result_warning)
;;
esac
if test $ac_cv_disable_unused_result_warning = yes
if test $ac_cv_disable_unused_result_warning = yes
then
then
...
@@ -1608,6 +1640,13 @@ yes)
...
@@ -1608,6 +1640,13 @@ yes)
;;
;;
esac
esac
# ICC needs -fp-model strict or floats behave badly
case "$CC" in
*icc*)
CFLAGS_NODIST="$CFLAGS_NODIST -fp-model strict"
;;
esac
if test "$Py_DEBUG" = 'true'; then
if test "$Py_DEBUG" = 'true'; then
:
:
else
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment