This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libstdc++/12239] Compile Failure


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12239


bkoz at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |ASSIGNED
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-09-17 19:32:56
               date|                            |


------- Additional Comments From bkoz at gcc dot gnu dot org  2003-09-17 19:32 -------

Sadly, the Solaris 2.5, Solaris 2.6, and Solaris 2.[7,8,9] ctype.h includes all
differ. Thus, the complexity. 

Because of this, you'll have to do more than just configure with:

--target=sparc-sun-solaris2

as more information is needed. Try:

--target=sparc-sun-solaris2.5

I'll adjust the configuration accordingly, to error out in this case where only
one significant digit is provided, and plead for more information.

-benjamin

2003-09-17  Benjamin Kosnik  <bkoz@redhat.com>
                                                                                
        PR libstdc++/12239
        * configure.host (abi_baseline_pair): Error out on solaris2
        configurations without a minor version number.
                                                                                
Index: configure.host
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/configure.host,v
retrieving revision 1.15
diff -c -p -r1.15 configure.host
*** configure.host      5 Aug 2003 02:00:12 -0000       1.15
--- configure.host      17 Sep 2003 19:32:15 -0000
*************** case "${host_os}" in
*** 173,178 ****
--- 173,184 ----
      os_include_dir="os/qnx/qnx6.1"
      c_model=c
      ;;
+   solaris2)
+     # This too-vague configuration does not provide enough information
+     # to select a ctype include, and thus os_include_dir is a crap shoot.
+     echo "Please specify the full version of Solaris, ie. solaris2.9 " 1>&2
+     exit 1;
+     ;;
    solaris2.5*)
      os_include_dir="os/solaris/solaris2.5"
      ;;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]