Quantcast
Channel: Recent posts
Viewing all articles
Browse latest Browse all 415

Internal Compiler Error(s) involving PARAMETER constants and /debug-parameters /debug options

$
0
0

Reference number: DPD200418283

Products: Intel® Parallel Studio XE

Version: 2017 Update 2 with Intel® Fortran compiler version:

Intel® Fortran Compiler 17.0 Version 17.0.2.187 Build 20170213 for Windows*

Operating Systems: Windows*  Intel® 64

Problem Description:

A defect (regression) has been found in the Intel® Parallel Studio XE 2017 Update 2 (17.0 compiler) release involving the use of PARAMETER constants along with the /debug-parameter and /debug options. The combined use can led to multiple internal compiler errors.

The following example demonstrates usage that will trigger the internal error:

module ice
    implicit none
    integer, parameter :: ld=82 
    contains
    subroutine thingy
        call bob(ld)
    end subroutine thingy
    subroutine bob(I)
        integer,intent(in) :: I
        print *, I
    end subroutine bob
end module ice

Users may experience several internal errors during a build attempt for the Debug configuration under Visual Studio where it is common to have /debug-parameter and /debug options enabled simultaneously.

Users can work around the defect by either:

  1. Under Visual Studio, disabling the /debug-parameters option under: Properties > Fortran > Debugging > Information for PARAMETER Constants set to None
  2. Under Visual Studio, using only minimal /debug information (i.e. Properties > Fortran > Debugging > Information set to Line Numbers Only) with any setting for /debug-parameters (see the property setting in #1 above).
  3. On the compiler command-line, removing all occurrences of the /debug-parameters from compiler command-line or within application build scripts when using /debug:full
  4. On the compiler command-line, using /debug:minimal with any setting for /debug-parameters on the compiler command-line or within application build scripts.

Resolution:   The root cause is known and the defect will be fixed in the Parallel Studio XE 2017 Update 3 release (May 2017)

In lieu of a permanent fix, users can consider using a work around from the earlier mentioned list.


Viewing all articles
Browse latest Browse all 415

Trending Articles