Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The segmentation fault caused by ICC compiler versions 19.0 and above is fixed by adding the -fwarp flag.
10 changes: 10 additions & 0 deletions 10 configure
Original file line number Diff line number Diff line change
Expand Up @@ -7572,6 +7572,16 @@ case "$CC" in
;;
esac

# -fwrapv for new icc versions
case "$CC" in
*icc*)
icc_version=`icc -dumpversion`
if test ${icc_version} '>' 18.9; then
CFLAGS_NODIST="$CFLAGS_NODIST -fwrapv"
fi
;;
esac

if test "$assertions" = 'true'; then
:
else
Expand Down
10 changes: 10 additions & 0 deletions 10 configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1991,6 +1991,16 @@ case "$CC" in
;;
esac

# -fwrapv for new icc versions
case "$CC" in
*icc*)
icc_version=`icc -dumpversion`
if test ${icc_version} '>' 18.9; then
CFLAGS_NODIST="$CFLAGS_NODIST -fwrapv"
fi
;;
esac

if test "$assertions" = 'true'; then
:
else
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.