[v3] revisited QNX 6.1 patch

Benjamin Kosnik bkoz@redhat.com
Tue Jun 11 09:14:00 GMT 2002


Phil and J.T, this is the reworked patch for QNX posted a couple weeks
ago. I'd like to get this in if possible. Phil, does this fix the
issues you had with the first patch?

-benjamin

2002-06-11  J.T. Conklin  <jtc@acorntoolworks.com>
            Benjamin Kosnik  <bkoz@redhat.com>
	
	* configure.target: Set os_include_dir to config/os/qnx/qnx6.1
	under *-qnx6.1*.
	* configure.in: Add support for *-qnx6.1*.
	* configure: Regenerate.

	* config/os/qnx, config/os/qnx/qnx6.1, config/os/qnx/qnx6.1/bits:
	New directories.  
	* config/os/qnx/qnx6.1/bits/ctype_base.h, ctype_inline.h,
	ctype_noninline.h, os_defines.h: New files.


Index: configure.target
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/configure.target,v
retrieving revision 1.40
diff -c -p -r1.40 configure.target
*** configure.target	7 May 2002 20:43:09 -0000	1.40
--- configure.target	11 Jun 2002 16:11:13 -0000
*************** case "${target_os}" in
*** 111,116 ****
--- 111,119 ----
    windiss*)
      os_include_dir="config/os/windiss"
      ;;
+   qnx6.1*)
+     os_include_dir="config/os/qnx/qnx6.1"
+     ;;
    *)
      os_include_dir="config/os/generic"
      ;;
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/configure.in,v
retrieving revision 1.93
diff -c -p -r1.93 configure.in
*** configure.in	30 May 2002 21:00:28 -0000	1.93
--- configure.in	11 Jun 2002 16:11:14 -0000
*************** if test -n "$with_cross_host" || test x"
*** 161,166 ****
--- 161,186 ----
      *-windiss*)
        os_include_dir="config/os/windiss"
        ;;
+     *-qnx6.1*)
+       SECTION_FLAGS='-ffunction-sections -fdata-sections'
+       AC_SUBST(SECTION_FLAGS) 
+       GLIBCPP_CHECK_LINKER_FEATURES
+       GLIBCPP_CHECK_COMPLEX_MATH_SUPPORT
+       GLIBCPP_CHECK_WCHAR_T_SUPPORT
+       os_include_dir="config/os/qnx/qnx6.1"
+       AC_DEFINE(HAVE_COSF)
+       AC_DEFINE(HAVE_COSL)
+       AC_DEFINE(HAVE_COSHF)
+       AC_DEFINE(HAVE_COSHL)
+       AC_DEFINE(HAVE_LOGF)
+       AC_DEFINE(HAVE_LOGL)
+       AC_DEFINE(HAVE_LOG10F)
+       AC_DEFINE(HAVE_LOG10L)
+       AC_DEFINE(HAVE_SINF)
+       AC_DEFINE(HAVE_SINL)
+       AC_DEFINE(HAVE_SINHF)
+       AC_DEFINE(HAVE_SINHL)
+       ;;
      *)
        os_include_dir="config/os/newlib"
        AC_DEFINE(HAVE_HYPOT)
Index: config/os/qnx/qnx6.1/bits/ctype_base.h
===================================================================
RCS file: config/os/qnx/qnx6.1/bits/ctype_base.h
diff -N config/os/qnx/qnx6.1/bits/ctype_base.h
*** /dev/null	1 Jan 1970 00:00:00 -0000
--- config/os/qnx/qnx6.1/bits/ctype_base.h	11 Jun 2002 16:11:14 -0000
***************
*** 0 ****
--- 1,55 ----
+ // Locale support -*- C++ -*-
+ 
+ // Copyright (C) 2002 Free Software Foundation, Inc.
+ //
+ // This file is part of the GNU ISO C++ Library.  This library is free
+ // software; you can redistribute it and/or modify it under the
+ // terms of the GNU General Public License as published by the
+ // Free Software Foundation; either version 2, or (at your option)
+ // any later version.
+ 
+ // This library is distributed in the hope that it will be useful,
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ // GNU General Public License for more details.
+ 
+ // You should have received a copy of the GNU General Public License along
+ // with this library; see the file COPYING.  If not, write to the Free
+ // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ // USA.
+ 
+ // As a special exception, you may use this file as part of a free software
+ // library without restriction.  Specifically, if other files instantiate
+ // templates or use macros or inline functions from this file, or you compile
+ // this file and link it with other files to produce an executable, this
+ // file does not by itself cause the resulting executable to be covered by
+ // the GNU General Public License.  This exception does not however
+ // invalidate any other reasons why the executable file might be covered by
+ // the GNU General Public License.
+ 
+ //
+ // ISO C++ 14882: 22.1  Locales
+ //
+   
+ // Information as gleaned from /usr/include/ctype.h.
+   
+   struct ctype_base
+   {
+     // Non-standard typedefs.
+     typedef const unsigned char*	__to_type;
+ 
+     // NB: Offsets into ctype<char>::_M_table force a particular size
+     // on the mask type. Because of this, we don't use an enum.
+     typedef short		mask;
+     static const mask upper    	= _UP;
+     static const mask lower 	= _LO;
+     static const mask alpha 	= _LO | _UP | _XA;
+     static const mask digit 	= _DI;
+     static const mask xdigit 	= _XD;
+     static const mask space 	= _CN | _SP | _XS;
+     static const mask print 	= _DI | _LO | _PU | _SP | _UP | _XA;
+     static const mask graph 	= _DI | _LO | _PU | _UP | _XA;
+     static const mask cntrl 	= _BB;
+     static const mask punct 	= _PU;
+     static const mask alnum 	= _DI | _LO | _UP | _XA;
+   };
Index: config/os/qnx/qnx6.1/bits/ctype_inline.h
===================================================================
RCS file: config/os/qnx/qnx6.1/bits/ctype_inline.h
diff -N config/os/qnx/qnx6.1/bits/ctype_inline.h
*** /dev/null	1 Jan 1970 00:00:00 -0000
--- config/os/qnx/qnx6.1/bits/ctype_inline.h	11 Jun 2002 16:11:14 -0000
***************
*** 0 ****
--- 1,67 ----
+ // Locale support -*- C++ -*-
+ 
+ // Copyright (C) 2002 Free Software Foundation, Inc.
+ //
+ // This file is part of the GNU ISO C++ Library.  This library is free
+ // software; you can redistribute it and/or modify it under the
+ // terms of the GNU General Public License as published by the
+ // Free Software Foundation; either version 2, or (at your option)
+ // any later version.
+ 
+ // This library is distributed in the hope that it will be useful,
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ // GNU General Public License for more details.
+ 
+ // You should have received a copy of the GNU General Public License along
+ // with this library; see the file COPYING.  If not, write to the Free
+ // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ // USA.
+ 
+ // As a special exception, you may use this file as part of a free software
+ // library without restriction.  Specifically, if other files instantiate
+ // templates or use macros or inline functions from this file, or you compile
+ // this file and link it with other files to produce an executable, this
+ // file does not by itself cause the resulting executable to be covered by
+ // the GNU General Public License.  This exception does not however
+ // invalidate any other reasons why the executable file might be covered by
+ // the GNU General Public License.
+ 
+ //
+ // ISO C++ 14882: 22.1  Locales
+ //
+   
+ // ctype bits to be inlined go here. Non-inlinable (ie virtual do_*)
+ // functions go in ctype.cc
+   
+   bool
+   ctype<char>::
+   is(mask __m, char __c) const
+   { return _M_table[(unsigned char)(__c)] & __m; }
+ 
+   const char*
+   ctype<char>::
+   is(const char* __low, const char* __high, mask* __vec) const
+   {
+     while (__low < __high)
+       *__vec++ = _M_table[*__low++];
+     return __high;
+   }
+ 
+   const char*
+   ctype<char>::
+   scan_is(mask __m, const char* __low, const char* __high) const
+   {
+     while (__low < __high && !this->is(__m, *__low))
+       ++__low;
+     return __low;
+   }
+ 
+   const char*
+   ctype<char>::
+   scan_not(mask __m, const char* __low, const char* __high) const
+   {
+     while (__low < __high && this->is(__m, *__low) != 0)
+       ++__low;
+     return __low;
+   }
Index: config/os/qnx/qnx6.1/bits/ctype_noninline.h
===================================================================
RCS file: config/os/qnx/qnx6.1/bits/ctype_noninline.h
diff -N config/os/qnx/qnx6.1/bits/ctype_noninline.h
*** /dev/null	1 Jan 1970 00:00:00 -0000
--- config/os/qnx/qnx6.1/bits/ctype_noninline.h	11 Jun 2002 16:11:14 -0000
***************
*** 0 ****
--- 1,79 ----
+ // Locale support -*- C++ -*-
+ 
+ // Copyright (C) 2002 Free Software Foundation, Inc.
+ //
+ // This file is part of the GNU ISO C++ Library.  This library is free
+ // software; you can redistribute it and/or modify it under the
+ // terms of the GNU General Public License as published by the
+ // Free Software Foundation; either version 2, or (at your option)
+ // any later version.
+ 
+ // This library is distributed in the hope that it will be useful,
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ // GNU General Public License for more details.
+ 
+ // You should have received a copy of the GNU General Public License along
+ // with this library; see the file COPYING.  If not, write to the Free
+ // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ // USA.
+ 
+ // As a special exception, you may use this file as part of a free software
+ // library without restriction.  Specifically, if other files instantiate
+ // templates or use macros or inline functions from this file, or you compile
+ // this file and link it with other files to produce an executable, this
+ // file does not by itself cause the resulting executable to be covered by
+ // the GNU General Public License.  This exception does not however
+ // invalidate any other reasons why the executable file might be covered by
+ // the GNU General Public License.
+ 
+ //
+ // ISO C++ 14882: 22.1  Locales
+ //
+   
+ // Information as gleaned from /usr/include/ctype.h
+   
+   const ctype_base::mask*
+   ctype<char>::classic_table() throw()
+   { return 0; }
+ 
+   ctype<char>::ctype(__c_locale, const mask* __table, bool __del, 
+ 		     size_t __refs) 
+   : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
+   _M_toupper(NULL), _M_tolower(NULL), _M_table(__table ? __table : _Ctype)
+   { }
+ 
+   ctype<char>::ctype(const mask* __table, bool __del, size_t __refs) 
+   : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
+   _M_toupper(NULL), _M_tolower(NULL), _M_table(__table ? __table : _Ctype)
+   { }
+ 
+   char
+   ctype<char>::do_toupper(char __c) const
+   { return ::toupper((int) __c); }
+ 
+   const char*
+   ctype<char>::do_toupper(char* __low, const char* __high) const
+   {
+     while (__low < __high)
+       {
+ 	*__low = ::toupper((int) *__low);
+ 	++__low;
+       }
+     return __high;
+   }
+ 
+   char
+   ctype<char>::do_tolower(char __c) const
+   { return ::tolower((int) __c); }
+ 
+   const char* 
+   ctype<char>::do_tolower(char* __low, const char* __high) const
+   {
+     while (__low < __high)
+       {
+ 	*__low = ::tolower((int) *__low);
+ 	++__low;
+       }
+     return __high;
+   }
Index: config/os/qnx/qnx6.1/bits/os_defines.h
===================================================================
RCS file: config/os/qnx/qnx6.1/bits/os_defines.h
diff -N config/os/qnx/qnx6.1/bits/os_defines.h
*** /dev/null	1 Jan 1970 00:00:00 -0000
--- config/os/qnx/qnx6.1/bits/os_defines.h	11 Jun 2002 16:11:14 -0000
***************
*** 0 ****
--- 1,36 ----
+ // Specific definitions for QNX 6.1  -*- C++ -*-
+ 
+ // Copyright (C) 2002 Free Software Foundation, Inc.
+ //
+ // This file is part of the GNU ISO C++ Library.  This library is free
+ // software; you can redistribute it and/or modify it under the
+ // terms of the GNU General Public License as published by the
+ // Free Software Foundation; either version 2, or (at your option)
+ // any later version.
+ 
+ // This library is distributed in the hope that it will be useful,
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ // GNU General Public License for more details.
+ 
+ // You should have received a copy of the GNU General Public License along
+ // with this library; see the file COPYING.  If not, write to the Free
+ // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ // USA.
+ 
+ // As a special exception, you may use this file as part of a free software
+ // library without restriction.  Specifically, if other files instantiate
+ // templates or use macros or inline functions from this file, or you compile
+ // this file and link it with other files to produce an executable, this
+ // file does not by itself cause the resulting executable to be covered by
+ // the GNU General Public License.  This exception does not however
+ // invalidate any other reasons why the executable file might be covered by
+ // the GNU General Public License.
+ 
+ #ifndef _GLIBCPP_OS_DEFINES
+ #define _GLIBCPP_OS_DEFINES 1
+ 
+ // System-specific #define, typedefs, corrections, etc, go here.  This
+ // file will come before all others.
+ 
+ #endif



More information about the Libstdc++ mailing list