You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stdcxx.apache.org by "Martin Sebor (JIRA)" <ji...@apache.org> on 2007/09/13 18:24:32 UTC

[jira] Created: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

[EDG eccp/gcc 4] errors on <float.h> macros
-------------------------------------------

                 Key: STDCXX-553
                 URL: https://issues.apache.org/jira/browse/STDCXX-553
             Project: C++ Standard Library
          Issue Type: Bug
          Components: External
         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
            Reporter: Martin Sebor


$ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
Fedora Core release 6 (Zod)
Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
Thread model: posix
gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
#include <float.h>

int main ()
{
    int i = DBL_DIG;
}
"t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
      int i = DBL_DIG;
              ^

1 error detected in the compilation of "t.cpp".


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor reassigned STDCXX-553:
-----------------------------------

    Assignee: Martin Sebor

> [EDG eccp/gcc 4] errors on <float.h> macros
> -------------------------------------------
>
>                 Key: STDCXX-553
>                 URL: https://issues.apache.org/jira/browse/STDCXX-553
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>    Affects Versions: trunk
>         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>             Fix For: 4.2
>
>
> $ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
> Fedora Core release 6 (Zod)
> Using built-in specs.
> Target: x86_64-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
> Thread model: posix
> gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
> #include <float.h>
> int main ()
> {
>     int i = DBL_DIG;
> }
> "t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
>       int i = DBL_DIG;
>               ^
> 1 error detected in the compilation of "t.cpp".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor closed STDCXX-553.
-------------------------------

       Resolution: Fixed
    Fix Version/s: 4.2.0

Works in 4.2.0. Must have got fixed by http://svn.apache.org/viewvc?view=rev&revision=575367

> [EDG eccp/gcc 4] errors on <float.h> macros
> -------------------------------------------
>
>                 Key: STDCXX-553
>                 URL: https://issues.apache.org/jira/browse/STDCXX-553
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>    Affects Versions: 4.1.3
>         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>             Fix For: 4.2.0
>
>
> $ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
> Fedora Core release 6 (Zod)
> Using built-in specs.
> Target: x86_64-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
> Thread model: posix
> gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
> #include <float.h>
> int main ()
> {
>     int i = DBL_DIG;
> }
> "t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
>       int i = DBL_DIG;
>               ^
> 1 error detected in the compilation of "t.cpp".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor updated STDCXX-553:
--------------------------------

    Affects Version/s:     (was: trunk)
        Fix Version/s:     (was: 4.2)

Whoops! This is an External issue. Removed version info.

> [EDG eccp/gcc 4] errors on <float.h> macros
> -------------------------------------------
>
>                 Key: STDCXX-553
>                 URL: https://issues.apache.org/jira/browse/STDCXX-553
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>
> $ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
> Fedora Core release 6 (Zod)
> Using built-in specs.
> Target: x86_64-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
> Thread model: posix
> gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
> #include <float.h>
> int main ()
> {
>     int i = DBL_DIG;
> }
> "t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
>       int i = DBL_DIG;
>               ^
> 1 error detected in the compilation of "t.cpp".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STDCXX-553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535017 ] 

sebor edited comment on STDCXX-553 at 10/15/07 5:39 PM:
---------------------------------------------------------------

According to EDG, this can probably be dealt with by tweaking edg_eccp_config.

      was (Author: sebor):
    Resolved by fixing STDCXX-394. Closing.
  
> [EDG eccp/gcc 4] errors on <float.h> macros
> -------------------------------------------
>
>                 Key: STDCXX-553
>                 URL: https://issues.apache.org/jira/browse/STDCXX-553
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>
> $ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
> Fedora Core release 6 (Zod)
> Using built-in specs.
> Target: x86_64-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
> Thread model: posix
> gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
> #include <float.h>
> int main ()
> {
>     int i = DBL_DIG;
> }
> "t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
>       int i = DBL_DIG;
>               ^
> 1 error detected in the compilation of "t.cpp".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor reopened STDCXX-553:
---------------------------------


Reopening until we've found the right tweak to $EDG_BASE/edg_eccp_config.

> [EDG eccp/gcc 4] errors on <float.h> macros
> -------------------------------------------
>
>                 Key: STDCXX-553
>                 URL: https://issues.apache.org/jira/browse/STDCXX-553
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>
> $ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
> Fedora Core release 6 (Zod)
> Using built-in specs.
> Target: x86_64-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
> Thread model: posix
> gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
> #include <float.h>
> int main ()
> {
>     int i = DBL_DIG;
> }
> "t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
>       int i = DBL_DIG;
>               ^
> 1 error detected in the compilation of "t.cpp".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor closed STDCXX-553.
-------------------------------

    Resolution: Fixed

Resolved by fixing STDCXX-394. Closing.

> [EDG eccp/gcc 4] errors on <float.h> macros
> -------------------------------------------
>
>                 Key: STDCXX-553
>                 URL: https://issues.apache.org/jira/browse/STDCXX-553
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>    Affects Versions: trunk
>         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>             Fix For: 4.2
>
>
> $ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
> Fedora Core release 6 (Zod)
> Using built-in specs.
> Target: x86_64-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
> Thread model: posix
> gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
> #include <float.h>
> int main ()
> {
>     int i = DBL_DIG;
> }
> "t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
>       int i = DBL_DIG;
>               ^
> 1 error detected in the compilation of "t.cpp".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor updated STDCXX-553:
--------------------------------

    Affects Version/s: trunk
        Fix Version/s: 4.2

> [EDG eccp/gcc 4] errors on <float.h> macros
> -------------------------------------------
>
>                 Key: STDCXX-553
>                 URL: https://issues.apache.org/jira/browse/STDCXX-553
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>    Affects Versions: trunk
>         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>             Fix For: 4.2
>
>
> $ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
> Fedora Core release 6 (Zod)
> Using built-in specs.
> Target: x86_64-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
> Thread model: posix
> gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
> #include <float.h>
> int main ()
> {
>     int i = DBL_DIG;
> }
> "t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
>       int i = DBL_DIG;
>               ^
> 1 error detected in the compilation of "t.cpp".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (STDCXX-553) [EDG eccp/gcc 4] errors on macros

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor updated STDCXX-553:
--------------------------------

    Affects Version/s: 4.1.3

> [EDG eccp/gcc 4] errors on <float.h> macros
> -------------------------------------------
>
>                 Key: STDCXX-553
>                 URL: https://issues.apache.org/jira/browse/STDCXX-553
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>    Affects Versions: 4.1.3
>         Environment: EDG eccp 3.9/gcc 4.1.2/Linux
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>
> $ cat /etc/fedora-release && gcc -v && cat t.cpp && eccp -V t.cpp
> Fedora Core release 6 (Zod)
> Using built-in specs.
> Target: x86_64-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
> Thread model: posix
> gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
> #include <float.h>
> int main ()
> {
>     int i = DBL_DIG;
> }
> "t.cpp", line 5: error: identifier "__DBL_DIG__" is undefined
>       int i = DBL_DIG;
>               ^
> 1 error detected in the compilation of "t.cpp".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.