gnat-4.8-4.8.2/0000755000000000000000000000000012320221550007643 5ustar gnat-4.8-4.8.2/debian/0000755000000000000000000000000012323510546011076 5ustar gnat-4.8-4.8.2/debian/README.maintainers0000644000000000000000000001563312253102623014272 0ustar -*- Outline -*- Read this file if you are a Debian Developer or would like to become one, or if you would like to create your own binary packages of GCC. * Overview From the GCC sources, Debian currently builds 3 source packages and almost 100 binary packages, using a single set of build scripts. The 3 source packages are: gcc-x.y: C, C++, Fortran, Objective-C and Objective-C++, plus many common libraries like libssp and libgcc. gcj-x.y: Java. gnat-x.y: Ada. The way we do this is quite peculiar, so listen up :) When we build from the gcc-x.y source package, we produce, among many others, a gcc-x.y-source binary package that contains the pristine upstream tarball and some Debian-specific patches. Any user can then install this package on their Debian system, and will have the full souces in /usr/src/gcc-x.y/gcc-.tar.bz2, along with the Makefile snippets that unpack and patch them. The intended use for this package is twofold: (a) allow users to build their own cross-compilers, and (b) build the other two packages, gcj-x.y and gnat-x.y. - gcc-x.y requires only a C compiler to build and produces C, C++, Fortran, Go and Objective-C compilers and libraries. It also produces the binary package gcc-x.y-source containing all the sources and patches in a tarball. - gcj-x.y build-depends on gcc-x.y-source and C++ and Java compilers. Its .orig.tar.bz2 file only contains an empty directory; the real sources from which it builds the binary packages are in gcc-x.y-source. - gnat-x.y build-depends on gcc-x.y-source and an Ada compiler. It does not even have an .orig.tar.bz2 package; it is a Debian native package. The benefits of this split are many: - bootstrapping a subset of languages is much faster than bootstrapping all languages and libraries (which can take a full week on slow architectures like mips or arm) - the language maintainers don't have to wait for each other - for new ports, the absence of a port of, say, gnat-x.y does not block the porting of gcc-x.y. gcc-x.y-source is also intended for interested users to build cross-compiler packages. Debian cannot provide all possible cross-compiler packages (i.e. all possible host, target, language and library combinations), so instead tries to facilitate building them. * The build sequence As for all other Debian packages, you build GCC by calling debian/rules. The first thing debian/rules does it to look at the top-most entry in debian/changelog: this tells it which source package it is building. For example, if the first entry in debian/changelog reads: gcj-4.3 (4.3-20070609-1) unstable; urgency=low * Upload as gcj-4.3. -- Ludovic Brenta Tue, 26 Jun 2007 00:26:42 +0200 then, debian/rules will build only the Java binary packages. The second step is to build debian/control from debian/control.m4 and a complex set of rules specified in debian/rules.conf. The resulting control file contains only the binary packages to be built. The third step is to select which patches to apply (this is done in debian/rules.defs), and then to apply the selected patches (see debian/rules.patch). The result of this step is a generated debian/patches/series file for use by quilt. The fourth step is to unpack the GCC source tarball. This tarball is either in the build directory (when building gcc-x.y), or in /usr/src/gcc-x.y/gcc-x.y.z.tar.xz (when building the other source packages). The fifth step is to apply all patches to the unpacked sources with quilt. The sixth step is to create a "build" directory, cd into it, call ../src/configure, and bootstrap the compiler and libraries selected. This is in debian/rules2. The seventh step is to call "make install" in the build directory: this installs the compiler and libraries into debian/tmp (i.e. debian/tmp/usr/bin/gcc, etc.) The eighth step is to run the GCC test suite. This actually takes at least as much time as bootstrapping, and you can disable it by setting WITHOUT_CHECK to "yes" in the environment. The ninth step is to build the binary packages, i.e. the .debs. This is done by a set of language- and architecture-dependent Makefile snippets in the debian/rules.d/ directory, which move files from the debian/tmp tree to the debian/ trees. * Making your own packages In this example, we will build our own gnat-x.y package. 1) Install gcc-x.y-source, which contains the real sources: # aptitude install gcc-x.y-source 2) Create a build directory: $ mkdir gnat-x.y-x.y.z; cd gnat-x.y-x.y.z 3) Checkout from Subversion: $ svn checkout svn://svn.debian.org/gcccvs/branches/sid/gcc-x.y/debian 4) Edit the debian/changelog file, adding a new entry at the top that starts with "gnat-x.y". 5) Generate the debian/control file, adjusted for gnat: $ debian/rules control 8) Build: $ dpkg-buildpackage * Hints You need a powerful machine to build GCC. The larger, the better. The build scripts take advantage of as many CPU threads as are available in your box (for example: 2 threads on a dual-core amd64; 4 threads on a dual-core POWER5; 32 threads on an 8-core UltraSPARC T1, etc.). If you have 2 GB or more of physical RAM, you can achieve maximum performance by building in a tmpfs, like this: 1) as root, create the new tmpfs: # mount -t tmpfs -o size=1280m none /home/lbrenta/src/debian/ram By default, the tmpfs will be limited to half your physical RAM. The beauty of it is that it only consumes as much physical RAM as necessary to hold the files in it; deleting files frees up RAM. 2) As your regular user, create the working directory in the tmpfs $ cp --archive ~/src/debian/gcc-x.y-x.y.z ~/src/debian/ram 3) Build in there. On my dual-core, 2 GHz amd64, it takes 34 minutes to build gnat, and the tmpfs takes 992 MiB of physical RAM but exceeds 1 GiB during the build. Note that the build process uses a lot of temporary files. Your $TEMP directory should therefore also be in a ram disk. You can achieve that either by mounting it as tmpfs, or by setting TEMP to point to ~/src/debian/ram. Also note that each thread in your processor(s) will run a compiler in it and use up RAM. Therefore your physical memory should be: Physical_RAM >= 1.2 + 0.4 * Threads (in GiB) (this is an estimate; your mileage may vary). If you have less physical RAM than recommended, reduce the number of threads allocated to the build process, or do not use a tmpfs to build. * Patching GCC Debian applies a large number of patches to GCC as part of the build process. It uses quilt but the necessary debian/patches/series is not part of the packaging scripts; instead, "debian/rules patch" generates this file by looking at debian/control (which is itself generated!), debian/changelog and other files. Then it applies all the patches. At this point, you can use quilt as usual: $ cd ~/src/debian/gcc-x.y $ export QUILT_PATCHES=$PWD/debian/patches $ quilt series If you add new patches, remember to add them to the version control system too. -- Ludovic Brenta, 2012-04-02. gnat-4.8-4.8.2/debian/libgcjGCJ.overrides0000644000000000000000000000047212173542725014612 0ustar # pick up the exact version, in case another gcj version is installed libgcj@GCJ@ binary: binary-or-shlib-defines-rpath # intended libgcj@GCJ@ binary: unused-shlib-entry-in-control-file libgcj@GCJ@ binary: shlibs-declares-dependency-on-other-package # keep patched ltdl copy libgcj@GCJ@ binary: embedded-library gnat-4.8-4.8.2/debian/control.m40000644000000000000000000047754512320221247013040 0ustar divert(-1) define(`checkdef',`ifdef($1, , `errprint(`error: undefined macro $1 ')m4exit(1)')') define(`errexit',`errprint(`error: undefined macro `$1' ')m4exit(1)') dnl The following macros must be defined, when called: dnl ifdef(`SRCNAME', , errexit(`SRCNAME')) dnl ifdef(`PV', , errexit(`PV')) dnl ifdef(`ARCH', , errexit(`ARCH')) dnl The architecture will also be defined (-D__i386__, -D__powerpc__, etc.) define(`PN', `$1') ifdef(`PRI', `', ` define(`PRI', `$1') ') define(`MAINTAINER', `Debian GCC Maintainers ') define(`depifenabled', `ifelse(index(enabled_languages, `$1'), -1, `', `$2')') define(`ifenabled', `ifelse(index(enabled_languages, `$1'), -1, `dnl', `$2')') define(`CROSS_ARCH', ifdef(`CROSS_ARCH', CROSS_ARCH, `all')) define(`libdep', `lib$2$1`'LS`'AQ (ifelse(`$3',`',`>=',`$3') ifelse(`$4',`',`${gcc:Version}',`$4'))') define(`libdevdep', `lib$2$1`'LS`'AQ (ifelse(`$3',`',`=',`$3') ifelse(`$4',`',`${gcc:Version}',`$4'))') define(`libdbgdep', `lib$2$1`'LS`'AQ (ifelse(`$3',`',`>=',`$3') ifelse(`$4',`',`${gcc:Version}',`$4'))') define(`BUILT_USING', ifelse(add_built_using,yes,`Built-Using: ${Built-Using} ')) divert`'dnl dnl -------------------------------------------------------------------------- Source: SRCNAME Section: devel Priority: PRI(optional) ifelse(DIST,`Ubuntu',`dnl ifelse(regexp(SRCNAME, `gnat\|gdc-'),0,`dnl Maintainer: Ubuntu MOTU Developers ', `dnl Maintainer: Ubuntu Core developers ')dnl SRCNAME XSBC-Original-Maintainer: MAINTAINER ', `dnl Maintainer: MAINTAINER ')dnl DIST ifelse(regexp(SRCNAME, `gnat'),0,`dnl Uploaders: Ludovic Brenta ', regexp(SRCNAME, `gdc'),0,`dnl Uploaders: Iain Buclaw , Matthias Klose ', `dnl Uploaders: Matthias Klose ')dnl SRCNAME Standards-Version: 3.9.5 ifdef(`TARGET',`dnl cross Build-Depends: debhelper (>= 5.0.62), LIBC_BUILD_DEP, LIBC_BIARCH_BUILD_DEP LIBUNWIND_BUILD_DEP LIBATOMIC_OPS_BUILD_DEP AUTOGEN_BUILD_DEP AUTO_BUILD_DEP SOURCE_BUILD_DEP CROSS_BUILD_DEP CLOOG_BUILD_DEP MPC_BUILD_DEP MPFR_BUILD_DEP GMP_BUILD_DEP, zlib1g-dev, gawk, lzma, xz-utils, patchutils, bison (>= 1:2.3), flex, realpath (>= 1.9.12), lsb-release, quilt ',`dnl native Build-Depends: debhelper (>= 5.0.62), GCC_MULTILIB_BUILD_DEP LIBC_BUILD_DEP, LIBC_BIARCH_BUILD_DEP LIBC_DBG_DEP kfreebsd-kernel-headers (>= 0.84) [kfreebsd-any], AUTO_BUILD_DEP AUTOGEN_BUILD_DEP libunwind7-dev (>= 0.98.5-6) [ia64], libatomic-ops-dev [ia64], zlib1g-dev, gawk, lzma, xz-utils, patchutils, BINUTILS_BUILD_DEP, binutils-hppa64 (>= BINUTILSBDV) [hppa], gperf (>= 3.0.1), bison (>= 1:2.3), flex, gettext, texinfo (>= 4.3), locales, sharutils, procps, FORTRAN_BUILD_DEP JAVA_BUILD_DEP GNAT_BUILD_DEP GO_BUILD_DEP GDC_BUILD_DEP CLOOG_BUILD_DEP MPC_BUILD_DEP MPFR_BUILD_DEP GMP_BUILD_DEP CHECK_BUILD_DEP realpath (>= 1.9.12), chrpath, lsb-release, quilt Build-Depends-Indep: LIBSTDCXX_BUILD_INDEP JAVA_BUILD_INDEP ')dnl ifelse(regexp(SRCNAME, `gnat'),0,`dnl Homepage: http://gcc.gnu.org/ ', regexp(SRCNAME, `gdc'),0,`dnl Homepage: http://gdcproject.org/ ', `dnl Homepage: http://gcc.gnu.org/ ')dnl SRCNAME XS-Vcs-Browser: http://svn.debian.org/viewsvn/gcccvs/branches/sid/gcc`'PV/ XS-Vcs-Svn: svn://svn.debian.org/svn/gcccvs/branches/sid/gcc`'PV ifelse(regexp(SRCNAME, `gcc-snapshot'),0,`dnl Package: gcc-snapshot`'TS Architecture: any Section: devel Priority: extra Depends: binutils`'TS (>= ${binutils:Version}), ${dep:libcbiarchdev}, ${dep:libcdev}, ${dep:libunwinddev}, ${snap:depends}, ${shlibs:Depends}, ${dep:ecj}, python, ${misc:Depends} Recommends: ${snap:recommends} Suggests: ${dep:gold} Provides: c++-compiler`'TS`'ifdef(`TARGET',`',`, c++abi2-dev') BUILT_USING`'dnl Description: A SNAPSHOT of the GNU Compiler Collection This package contains a recent development SNAPSHOT of all files contained in the GNU Compiler Collection (GCC). . The source code for this package has been exported from SVN trunk. . DO NOT USE THIS SNAPSHOT FOR BUILDING DEBIAN PACKAGES! . This package will NEVER hit the testing distribution. It is used for tracking gcc bugs submitted to the Debian BTS in recent development versions of gcc. ',`dnl gcc-X.Y dnl default base package dependencies define(`BASETARGET', `') define(`BASEDEP', `gcc`'PV-base (= ${gcc:Version})') define(`SOFTBASEDEP', `gcc`'PV-base (>= ${gcc:SoftVersion})') dnl base, when building libgcc out of the gcj source; needed if new symbols dnl in libgcc are used in libgcj. ifelse(index(SRCNAME, `gcj'), 0, ` define(`BASEDEP', `gcj`'PV-base (= ${gcj:Version})') define(`SOFTBASEDEP', `gcj`'PV-base (>= ${gcj:SoftVersion})') ') ifelse(index(SRCNAME, `gnat'), 0, ` define(`BASEDEP', `gnat`'PV-base (= ${gnat:Version})') define(`SOFTBASEDEP', `gnat`'PV-base (>= ${gnat:SoftVersion})') ') ifdef(`TARGET', `', ` ifenabled(`gccbase',` Package: gcc`'PV-base Architecture: any ifdef(`MULTIARCH', `Multi-Arch: same ')`'dnl Section: libs Priority: PRI(required) Depends: ${misc:Depends} Replaces: ${base:Replaces} Breaks: gcc-4.4-base (<< 4.4.7), gcj-4.4-base (<< 4.4.6-9~), gnat-4.4-base (<< 4.4.6-3~), gcj-4.6-base (<< 4.6.1-4~), gnat-4.6 (<< 4.6.1-5~), gcc-4.7-base (<< 4.7.3), dehydra (<= 0.9.hg20110609-2) BUILT_USING`'dnl Description: GCC, the GNU Compiler Collection (base package) This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC). ifdef(`BASE_ONLY', `dnl . This version of GCC is not yet available for this architecture. Please use the compilers from the gcc-snapshot package for testing. ')`'dnl ')`'dnl ')`'dnl native ifenabled(`gccxbase',` dnl override default base package dependencies to cross version dnl This creates a toolchain that doesnt depend on the system -base packages define(`BASETARGET', `PV`'TS') define(`BASEDEP', `gcc`'BASETARGET-base (= ${gcc:Version})') define(`SOFTBASEDEP', `gcc`'BASETARGET-base (>= ${gcc:SoftVersion})') Package: gcc`'BASETARGET-base Architecture: any Section: devel Priority: PRI(extra) Depends: ${misc:Depends} BUILT_USING`'dnl Description: GCC, the GNU Compiler Collection (base package) This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC). ')`'dnl ifenabled(`java',` ifdef(`TARGET', `', ` ifenabled(`gcjbase',` Package: gcj`'PV-base Architecture: any ifdef(`MULTIARCH', `Multi-Arch: same ')`'dnl Section: libs Priority: PRI(optional) Depends: ${misc:Depends} BUILT_USING`'dnl Description: GCC, the GNU Compiler Collection (gcj base package) This package contains files common to all java related packages built from the GNU Compiler Collection (GCC). ')`'dnl gccbase ')`'dnl native ifenabled(`gcjxbase',` dnl override default base package dependencies to cross version dnl This creates a toolchain that doesnt depend on the system -base packages define(`BASETARGET', `PV`'TS') define(`BASEDEP', `gcj`'BASETARGET-base (= ${gcc:Version})') define(`SOFTBASEDEP', `gcj`'BASETARGET-base (>= ${gcc:SoftVersion})') Package: gcj`'BASETARGET-base Architecture: any Section: devel Priority: PRI(extra) Depends: ${misc:Depends} BUILT_USING`'dnl Description: GCC, the GNU Compiler Collection (gcj base package) This package contains files common to all java related packages built from the GNU Compiler Collection (GCC). ')`'dnl ')`'dnl java ifenabled(`ada',` Package: gnat`'PV-base`'TS Architecture: any Section: libs Priority: PRI(optional) Depends: ${misc:Depends} Breaks: gcc-4.6 (<< 4.6.1-8~) BUILT_USING`'dnl Description: GNU Ada compiler (common files) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . This package contains files common to all GNAT related packages. ')`'dnl ada ifenabled(`libgcc',` Package: libgcc1`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',required) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libgcc1-TARGET-dcv1', ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support Breaks: ${multiarch:breaks} ')`Provides: libgcc1-armel [armel], libgcc1-armhf [armhf]') BUILT_USING`'dnl Description: GCC support library`'ifdef(`TARGET)',` (TARGET)', `') Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libgcc1-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(gcc1,,=,${gcc:EpochVersion}), ${misc:Depends} ifdef(`TARGET',`',`dnl ifdef(`MULTIARCH',`Multi-Arch: same ')dnl Provides: libgcc1-dbg-armel [armel], libgcc1-dbg-armhf [armhf] ')dnl BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libgcc2`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`m68k') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',required) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libgcc2-TARGET-dcv1 ',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support Breaks: ${multiarch:breaks} '))`'dnl BUILT_USING`'dnl Description: GCC support library`'ifdef(`TARGET)',` (TARGET)', `') Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libgcc2-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`m68k') Section: debug Priority: extra Depends: BASEDEP, libdep(gcc2,,=,${gcc:Version}), ${misc:Depends} ifdef(`TARGET',`',ifdef(`MULTIARCH', `Multi-Arch: same '))`'dnl BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libgcc ifenabled(`cdev',` Package: libgcc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: BASEDEP, ${dep:libgcc}, ${dep:libssp}, ${dep:libgomp}, ${dep:libitm}, ${dep:libatomic}, ${dep:libbtrace}, ${dep:libasan}, ${dep:libtsan}, ${dep:libqmath}, ${dep:libunwinddev}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`',ifdef(`MULTIARCH', `Multi-Arch: same '))`'dnl BUILT_USING`'dnl Description: GCC support library (development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. ')`'dnl libgcc ifenabled(`lib4gcc',` Package: libgcc4`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`hppa') ifdef(`TARGET',`',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support Breaks: ${multiarch:breaks} '))`'dnl Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',required) Depends: ifdef(`STANDALONEJAVA',`gcj`'PV-base (>= ${gcj:Version})',`BASEDEP'), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC support library`'ifdef(`TARGET)',` (TARGET)', `') Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libgcc4-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`hppa') ifdef(`TARGET',`',ifdef(`MULTIARCH', `Multi-Arch: same '))`'dnl Section: debug Priority: extra Depends: BASEDEP, libdep(gcc4,,=,${gcc:Version}), ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl lib4gcc ifenabled(`lib64gcc',` Package: lib64gcc1`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${misc:Depends} ifdef(`TARGET',`Provides: lib64gcc1-TARGET-dcv1 ',`')`'dnl Conflicts: libdep(gcc`'GCC_SO,,<=,1:3.3-0pre9) BUILT_USING`'dnl Description: GCC support library`'ifdef(`TARGET)',` (TARGET)', `') (64bit) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: lib64gcc1-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gcc1,64,=,${gcc:EpochVersion}), ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl lib64gcc ifenabled(`cdev',` Package: lib64gcc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: BASEDEP, ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (64bit development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. ')`'dnl cdev ifenabled(`lib32gcc',` Package: lib32gcc1`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: extra Depends: BASEDEP, ${dep:libcbiarch}, ${misc:Depends} Conflicts: ${confl:lib32} ifdef(`TARGET',`Provides: lib32gcc1-TARGET-dcv1 ',`')`'dnl BUILT_USING`'dnl Description: GCC support library (32 bit Version) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: lib32gcc1-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gcc1,32,=,${gcc:EpochVersion}), ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl lib32gcc1 ifenabled(`cdev',` Package: lib32gcc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: BASEDEP, ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (32 bit development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. ')`'dnl cdev ifenabled(`libneongcc',` Package: libgcc1-neon`'LS Architecture: NEON_ARCHS Section: libs Priority: extra Depends: BASEDEP, libc6-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC support library [neon optimized] Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneongcc1 ifenabled(`libhfgcc',` Package: libhfgcc1`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${misc:Depends} ifdef(`TARGET',`Provides: libhfgcc1-TARGET-dcv1 ',`Conflicts: libgcc1-armhf [biarchhf_archs] ')`'dnl BUILT_USING`'dnl Description: GCC support library`'ifdef(`TARGET)',` (TARGET)', `') (hard float ABI) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libhfgcc1-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gcc1,hf,=,${gcc:EpochVersion}), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgcc1-dbg-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libhfgcc ifenabled(`cdev',` ifenabled(`armml',` Package: libhfgcc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: BASEDEP, ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (hard float ABI development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. ')`'dnl armml ')`'dnl cdev ifenabled(`libsfgcc',` Package: libsfgcc1`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${misc:Depends} ifdef(`TARGET',`Provides: libsfgcc1-TARGET-dcv1 ',`Conflicts: libgcc1-armel [biarchsf_archs] ')`'dnl BUILT_USING`'dnl Description: GCC support library`'ifdef(`TARGET)',` (TARGET)', `') (soft float ABI) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libsfgcc1-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gcc1,sf,=,${gcc:EpochVersion}), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgcc1-dbg-armel [biarchsf_archs]') BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libsfgcc ifenabled(`cdev',` ifenabled(`armml',` Package: libsfgcc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: BASEDEP, ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (soft float ABI development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. ')`'dnl armml ')`'dnl cdev ifenabled(`libn32gcc',` Package: libn32gcc1`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${misc:Depends} Conflicts: libdep(gcc`'GCC_SO,,<=,1:3.3-0pre9) ifdef(`TARGET',`Provides: libn32gcc1-TARGET-dcv1 ',`')`'dnl BUILT_USING`'dnl Description: GCC support library`'ifdef(`TARGET)',` (TARGET)', `') (n32) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libn32gcc1-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gcc1,n32,=,${gcc:EpochVersion}), ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libn32gcc ifenabled(`cdev',` Package: libn32gcc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: BASEDEP, ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (n32 development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. ')`'dnl cdev ifenabled(`libx32gcc',` Package: libx32gcc1`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${misc:Depends} ifdef(`TARGET',`Provides: libx32gcc1-TARGET-dcv1 ',`')`'dnl BUILT_USING`'dnl Description: GCC support library`'ifdef(`TARGET)',` (TARGET)', `') (x32) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libx32gcc1-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gcc1,x32,=,${gcc:EpochVersion}), ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (debug symbols)`'ifdef(`TARGET)',` (TARGET)', `') Debug symbols for the GCC support library. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libx32gcc ifenabled(`cdev',` ifenabled(`x32dev',` Package: libx32gcc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: BASEDEP, ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC support library (x32 development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. ')`'dnl x32dev ')`'dnl cdev ifdef(`TARGET', `', ` ifenabled(`libgmath',` Package: libgccmath`'GCCMATH_SO`'LS Architecture: i386 ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ')`'dnl Section: libs Priority: PRI(optional) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC math support library Support library for GCC. Package: lib32gccmath`'GCCMATH_SO`'LS Architecture: amd64 Section: libs Priority: PRI(optional) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC math support library (32bit) Support library for GCC. Package: lib64gccmath`'GCCMATH_SO`'LS Architecture: i386 Section: libs Priority: PRI(optional) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC math support library (64bit) Support library for GCC. ')`'dnl ')`'dnl native ifenabled(`cdev',` Package: gcc`'PV`'TS Architecture: any Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: cpp`'PV`'TS (= ${gcc:Version}),ifenabled(`gccbase',` BASEDEP,') binutils`'TS (>= ${binutils:Version}), depifenabled(`libgcc',`libdevdep(gcc`'PV-dev`',), ')${shlibs:Depends}, ${misc:Depends} Recommends: ${dep:libcdev} Suggests: ${gcc:multilib}, gcc`'PV-doc (>= ${gcc:SoftVersion}), gcc`'PV-locales (>= ${gcc:SoftVersion}), libdbgdep(gcc`'GCC_SO-dbg,,>=,${libgcc:Version}), libdbgdep(gomp`'GOMP_SO-dbg,), libdbgdep(itm`'ITM_SO-dbg,), libdbgdep(atomic`'ATOMIC_SO-dbg,), libdbgdep(asan`'ASAN_SO-dbg,), libdbgdep(tsan`'TSAN_SO-dbg,), libdbgdep(backtrace`'BTRACE_SO-dbg,), libdbgdep(quadmath`'QMATH_SO-dbg,), ${dep:libcloog}, ${dep:gold} Provides: c-compiler`'TS ifdef(`TARGET',`Conflicts: gcc-multilib ')`'dnl BUILT_USING`'dnl Description: GNU C compiler`'ifdef(`TARGET)',` (cross compiler for TARGET architecture)', `') This is the GNU C compiler, a fairly portable optimizing compiler for C. ifdef(`TARGET', `dnl . This package contains C cross-compiler for TARGET architecture. ')`'dnl ifenabled(`multilib',` Package: gcc`'PV-multilib`'TS Architecture: ifdef(`TARGET',`any',MULTILIB_ARCHS) Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gcc`'PV`'TS (= ${gcc:Version}), ${dep:libcbiarchdev}, ${dep:libgccbiarchdev}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU C compiler (multilib files)`'ifdef(`TARGET)',` (cross compiler for TARGET architecture)', `') This is the GNU C compiler, a fairly portable optimizing compiler for C. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). ')`'dnl multilib ifenabled(`plugindev',` Package: gcc`'PV-plugin-dev`'TS Architecture: any Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gcc`'PV`'TS (= ${gcc:Version}), GMP_BUILD_DEP ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Files for GNU GCC plugin development. This package contains (header) files for GNU GCC plugin development. It is only used for the development of GCC plugins, but not needed to run plugins. ')`'dnl plugindev ')`'dnl cdev ifenabled(`cdev',` Package: gcc`'PV-hppa64 Architecture: ifdef(`TARGET',`any',hppa) Section: devel Priority: PRI(optional) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} Conflicts: gcc-3.3-hppa64 (<= 1:3.3.4-5), gcc-3.4-hppa64 (<= 3.4.1-3) BUILT_USING`'dnl Description: GNU C compiler (cross compiler for hppa64) This is the GNU C compiler, a fairly portable optimizing compiler for C. ')`'dnl cdev ifenabled(`cdev',` Package: cpp`'PV`'TS Architecture: any Section: ifdef(`TARGET',`devel',`interpreters') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} Suggests: gcc`'PV-locales (>= ${gcc:SoftVersion}) Replaces: gcc-4.6 (<< 4.6.1-9) BUILT_USING`'dnl Description: GNU C preprocessor A macro processor that is used automatically by the GNU C compiler to transform programs before actual compilation. . This package has been separated from gcc for the benefit of those who require the preprocessor but not the compiler. ifdef(`TARGET', `dnl . This package contains preprocessor configured for TARGET architecture. ')`'dnl ifdef(`TARGET', `', ` ifenabled(`gfdldoc',` Package: cpp`'PV-doc Architecture: all Section: doc Priority: PRI(optional) Depends: gcc`'PV-base (>= ${gcc:SoftVersion}), dpkg (>= 1.15.4) | install-info, ${misc:Depends} Description: Documentation for the GNU C preprocessor (cpp) Documentation for the GNU C preprocessor in info `format'. ')`'dnl gfdldoc ')`'dnl native ifdef(`TARGET', `', ` Package: gcc`'PV-locales Architecture: all Section: devel Priority: PRI(optional) Depends: SOFTBASEDEP, cpp`'PV (>= ${gcc:SoftVersion}), ${misc:Depends} Recommends: gcc`'PV (>= ${gcc:SoftVersion}) Description: GCC, the GNU compiler collection (native language support files) Native language support for GCC. Lets GCC speak your language, if translations are available. . Please do NOT submit bug reports in other languages than "C". Always reset your language settings to use the "C" locales. ')`'dnl native ')`'dnl cdev ifenabled(`c++',` ifenabled(`c++dev',` Package: g++`'PV`'TS Architecture: any Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gcc`'PV`'TS (= ${gcc:Version}), libdevdep(stdc++`'PV-dev,,=), ${shlibs:Depends}, ${misc:Depends} Provides: c++-compiler`'TS`'ifdef(`TARGET)',`',`, c++abi2-dev') Suggests: ${gxx:multilib}, gcc`'PV-doc (>= ${gcc:SoftVersion}), libdbgdep(stdc++CXX_SO`'PV-dbg,) BUILT_USING`'dnl Description: GNU C++ compiler`'ifdef(`TARGET)',` (cross compiler for TARGET architecture)', `') This is the GNU C++ compiler, a fairly portable optimizing compiler for C++. ifdef(`TARGET', `dnl . This package contains C++ cross-compiler for TARGET architecture. ')`'dnl ifenabled(`multilib',` Package: g++`'PV-multilib`'TS Architecture: ifdef(`TARGET',`any',MULTILIB_ARCHS) Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, g++`'PV`'TS (= ${gcc:Version}), gcc`'PV-multilib`'TS (= ${gcc:Version}), ${dep:libcxxbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${dep:libcxxbiarchdbg} BUILT_USING`'dnl Description: GNU C++ compiler (multilib files)`'ifdef(`TARGET)',` (cross compiler for TARGET architecture)', `') This is the GNU C++ compiler, a fairly portable optimizing compiler for C++. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). ')`'dnl multilib ')`'dnl c++dev ')`'dnl c++ ifdef(`TARGET', `', ` ifenabled(`ssp',` Package: libssp`'SSP_SO`'LS Architecture: any ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ')`'dnl Section: libs Priority: PRI(optional) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC stack smashing protection library GCC can now emit code for protecting applications from stack-smashing attacks. The protection is realized by buffer overflow detection and reordering of stack variables to avoid pointer corruption. Package: lib32ssp`'SSP_SO`'LS Architecture: biarch32_archs Section: libs Priority: PRI(optional) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libssp0 (<< 4.1) Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: GCC stack smashing protection library (32bit) GCC can now emit code for protecting applications from stack-smashing attacks. The protection is realized by buffer overflow detection and reordering of stack variables to avoid pointer corruption. Package: lib64ssp`'SSP_SO`'LS Architecture: biarch64_archs Section: libs Priority: PRI(optional) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libssp0 (<< 4.1) BUILT_USING`'dnl Description: GCC stack smashing protection library (64bit) GCC can now emit code for protecting applications from stack-smashing attacks. The protection is realized by buffer overflow detection and reordering of stack variables to avoid pointer corruption. Package: libn32ssp`'SSP_SO`'LS Architecture: biarchn32_archs Section: libs Priority: PRI(optional) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libssp0 (<< 4.1) BUILT_USING`'dnl Description: GCC stack smashing protection library (n32) GCC can now emit code for protecting applications from stack-smashing attacks. The protection is realized by buffer overflow detection and reordering of stack variables to avoid pointer corruption. Package: libx32ssp`'SSP_SO`'LS Architecture: biarchx32_archs Section: libs Priority: PRI(optional) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libssp0 (<< 4.1) BUILT_USING`'dnl Description: GCC stack smashing protection library (x32) GCC can now emit code for protecting applications from stack-smashing attacks. The protection is realized by buffer overflow detection and reordering of stack variables to avoid pointer corruption. Package: libhfssp`'SSP_SO`'LS Architecture: biarchhf_archs Section: libs Priority: PRI(optional) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC stack smashing protection library (hard float ABI) GCC can now emit code for protecting applications from stack-smashing attacks. The protection is realized by buffer overflow detection and reordering of stack variables to avoid pointer corruption. Package: libsfssp`'SSP_SO`'LS Architecture: biarchsf_archs Section: libs Priority: PRI(optional) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC stack smashing protection library (soft float ABI) GCC can now emit code for protecting applications from stack-smashing attacks. The protection is realized by buffer overflow detection and reordering of stack variables to avoid pointer corruption. ')`'dnl ')`'dnl native ifenabled(`libgomp',` Package: libgomp`'GOMP_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support Breaks: ${multiarch:breaks} ')`Provides: libgomp'GOMP_SO`-armel [armel], libgomp'GOMP_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libgomp`'GOMP_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(gomp`'GOMP_SO,,=), ${misc:Depends} ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libgomp'GOMP_SO`-dbg-armel [armel], libgomp'GOMP_SO`-dbg-armhf [armhf]') BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib32gomp`'GOMP_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (32bit) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib32gomp`'GOMP_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gomp`'GOMP_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (32 bit debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib64gomp`'GOMP_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (64bit) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib64gomp`'GOMP_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gomp`'GOMP_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (64bit debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libn32gomp`'GOMP_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (n32) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libn32gomp`'GOMP_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gomp`'GOMP_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (n32 debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers ifenabled(`libx32gomp',` Package: libx32gomp`'GOMP_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (x32) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libx32gomp`'GOMP_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gomp`'GOMP_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (x32 debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers ')`'dnl libx32gomp ifenabled(`libhfgomp',` Package: libhfgomp`'GOMP_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgomp'GOMP_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (hard float ABI) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libhfgomp`'GOMP_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gomp`'GOMP_SO,hf,=), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgomp'GOMP_SO`-dbg-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (hard float ABI debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers ')`'dnl libhfgomp ifenabled(`libsfgomp',` Package: libsfgomp`'GOMP_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgomp'GOMP_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (soft float ABI) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libsfgomp`'GOMP_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(gomp`'GOMP_SO,sf,=), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgomp'GOMP_SO`-dbg-armel [biarchsf_archs]') BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library (soft float ABI debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers ')`'dnl libsfgomp ifenabled(`libneongomp',` Package: libgomp`'GOMP_SO-neon`'LS Architecture: NEON_ARCHS Section: libs Priority: extra Depends: BASEDEP, libc6-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC OpenMP (GOMP) support library [neon optimized] GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneongomp ')`'dnl libgomp ifenabled(`libitm',` Package: libitm`'ITM_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ')`Provides: libitm'ITM_SO`-armel [armel], libitm'ITM_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libitm`'ITM_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(itm`'ITM_SO,,=), ${misc:Depends} ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libitm'ITM_SO`-dbg-armel [armel], libitm'ITM_SO`-dbg-armhf [armhf]') BUILT_USING`'dnl Description: GNU Transactional Memory Library (debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib32itm`'ITM_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: GNU Transactional Memory Library (32bit) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib32itm`'ITM_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(itm`'ITM_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (32 bit debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib64itm`'ITM_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (64bit) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib64itm`'ITM_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(itm`'ITM_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (64bit debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libn32itm`'ITM_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (n32) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libn32itm`'ITM_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(itm`'ITM_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (n32 debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. ifenabled(`libx32itm',` Package: libx32itm`'ITM_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (x32) This manual documents the usage and internals of libitm. It provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libx32itm`'ITM_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(itm`'ITM_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (x32 debug symbols) This manual documents the usage and internals of libitm. It provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. ')`'dnl libx32itm ifenabled(`libhfitm',` Package: libhfitm`'ITM_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libitm'ITM_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: GNU Transactional Memory Library (hard float ABI) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libhfitm`'ITM_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(itm`'ITM_SO,hf,=), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libitm'ITM_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: GNU Transactional Memory Library (hard float ABI debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. ')`'dnl libhfitm ifenabled(`libsfitm',` Package: libsfitm`'ITM_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (soft float ABI) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libsfitm`'ITM_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(itm`'ITM_SO,sf,=), ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library (soft float ABI debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. ')`'dnl libsfitm ifenabled(`libneonitm',` Package: libitm`'ITM_SO-neon`'LS Architecture: NEON_ARCHS Section: libs Priority: extra Depends: BASEDEP, libc6-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Transactional Memory Library [neon optimized] GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneonitm ')`'dnl libitm ifenabled(`libatomic',` Package: libatomic`'ATOMIC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ')`Provides: libatomic'ATOMIC_SO`-armel [armel], libatomic'ATOMIC_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libatomic`'ATOMIC_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(atomic`'ATOMIC_SO,,=), ${misc:Depends} ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libatomic'ATOMIC_SO`-dbg-armel [armel], libatomic'ATOMIC_SO`-dbg-armhf [armhf]') BUILT_USING`'dnl Description: support library providing __atomic built-in functions (debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib32atomic`'ATOMIC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (32bit) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib32atomic`'ATOMIC_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(atomic`'ATOMIC_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (32 bit debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib64atomic`'ATOMIC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (64bit) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib64atomic`'ATOMIC_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(atomic`'ATOMIC_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (64bit debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libn32atomic`'ATOMIC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (n32) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libn32atomic`'ATOMIC_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(atomic`'ATOMIC_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (n32 debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. ifenabled(`libx32atomic',` Package: libx32atomic`'ATOMIC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (x32) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libx32atomic`'ATOMIC_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(atomic`'ATOMIC_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (x32 debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. ')`'dnl libx32atomic ifenabled(`libhfatomic',` Package: libhfatomic`'ATOMIC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libatomic'ATOMIC_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: support library providing __atomic built-in functions (hard float ABI) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libhfatomic`'ATOMIC_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(atomic`'ATOMIC_SO,hf,=), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libatomic'ATOMIC_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: support library providing __atomic built-in functions (hard float ABI debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. ')`'dnl libhfatomic ifenabled(`libsfatomic',` Package: libsfatomic`'ATOMIC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (soft float ABI) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libsfatomic`'ATOMIC_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(atomic`'ATOMIC_SO,sf,=), ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions (soft float ABI debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. ')`'dnl libsfatomic ifenabled(`libneonatomic',` Package: libatomic`'ATOMIC_SO-neon`'LS Architecture: NEON_ARCHS Section: libs Priority: extra Depends: BASEDEP, libc6-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: support library providing __atomic built-in functions [neon optimized] library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneonatomic ')`'dnl libatomic ifenabled(`libasan',` Package: libasan`'ASAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ')`Provides: libasan'ASAN_SO`-armel [armel], libasan'ASAN_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libasan`'ASAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(asan`'ASAN_SO,,=), ${misc:Depends} ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libasan'ASAN_SO`-dbg-armel [armel], libasan'ASAN_SO`-dbg-armhf [armhf]') BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib32asan`'ASAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (32bit) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib32asan`'ASAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(asan`'ASAN_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (32 bit debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib64asan`'ASAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (64bit) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib64asan`'ASAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(asan`'ASAN_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (64bit debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libn32asan`'ASAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',`PRI(extra)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (n32) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libn32asan`'ASAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(asan`'ASAN_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (n32 debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. ifenabled(`libx32asan',` Package: libx32asan`'ASAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (x32) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libx32asan`'ASAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(asan`'ASAN_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (x32 debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. ')`'dnl libx32asan ifenabled(`libhfasan',` Package: libhfasan`'ASAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',`PRI(extra)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libasan'ASAN_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (hard float ABI) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libhfasan`'ASAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(asan`'ASAN_SO,hf,=), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libasan'ASAN_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (hard float ABI debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. ')`'dnl libhfasan ifenabled(`libsfasan',` Package: libsfasan`'ASAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',`PRI(extra)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (soft float ABI) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libsfasan`'ASAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(asan`'ASAN_SO,sf,=), ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector (soft float ABI debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. ')`'dnl libsfasan ifenabled(`libneonasan',` Package: libasan`'ASAN_SO-neon`'LS Architecture: NEON_ARCHS Section: libs Priority: extra Depends: BASEDEP, libc6-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: AddressSanitizer -- a fast memory error detector [neon optimized] AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneonasan ')`'dnl libasan ifenabled(`libtsan',` Package: libtsan`'TSAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ')`Provides: libtsan'TSAN_SO`-armel [armel], libtsan'TSAN_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (runtime) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libtsan`'TSAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(tsan`'TSAN_SO,,=), ${misc:Depends} ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libtsan'TSAN_SO`-dbg-armel [armel], libtsan'TSAN_SO`-dbg-armhf [armhf]') BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. ifenabled(`lib32tsan',` Package: lib32tsan`'TSAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (32bit) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib32tsan`'TSAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(tsan`'TSAN_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (32 bit debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. ')`'dnl lib32tsan ifenabled(`lib64tsan',` Package: lib64tsan`'TSAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (64bit) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib64tsan`'TSAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(tsan`'TSAN_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (64bit debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. ')`'dnl lib64tsan ifenabled(`libn32tsan',` Package: libn32tsan`'TSAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (n32) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libn32tsan`'TSAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(tsan`'TSAN_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (n32 debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. ')`'dnl libn32tsan ifenabled(`libx32tsan',` Package: libx32tsan`'TSAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (x32) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libx32tsan`'TSAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(tsan`'TSAN_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (x32 debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. ')`'dnl libx32tsan ifenabled(`libhftsan',` Package: libhftsan`'TSAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libtsan'TSAN_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (hard float ABI) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libhftsan`'TSAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(tsan`'TSAN_SO,hf,=), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libtsan'TSAN_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (hard float ABI debug symbols) ')`'dnl libhftsan ifenabled(`libsftsan',` Package: libsftsan`'TSAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (soft float ABI) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libsftsan`'TSAN_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(tsan`'TSAN_SO,sf,=), ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races (soft float ABI debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. ')`'dnl libsftsan ifenabled(`libneontsan',` Package: libtsan`'TSAN_SO-neon`'LS Architecture: NEON_ARCHS Section: libs Priority: extra Depends: BASEDEP, libc6-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: ThreadSanitizer -- a Valgrind-based detector of data races [neon optimized] ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneontsan ')`'dnl libtsan ifenabled(`libbacktrace',` Package: libbacktrace`'BTRACE_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ')`Provides: libbacktrace'BTRACE_SO`-armel [armel], libbacktrace'BTRACE_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: libbacktrace`'BTRACE_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(backtrace`'BTRACE_SO,,=), ${misc:Depends} ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libbacktrace'BTRACE_SO`-dbg-armel [armel], libbacktrace'BTRACE_SO`-dbg-armhf [armhf]') BUILT_USING`'dnl Description: stack backtrace library (debug symbols) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: lib32backtrace`'BTRACE_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: stack backtrace library (32bit) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: lib32backtrace`'BTRACE_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(backtrace`'BTRACE_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (32 bit debug symbols) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: lib64backtrace`'BTRACE_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (64bit) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: lib64backtrace`'BTRACE_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(backtrace`'BTRACE_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (64bit debug symbols) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: libn32backtrace`'BTRACE_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (n32) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: libn32backtrace`'BTRACE_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(backtrace`'BTRACE_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (n32 debug symbols) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. ifenabled(`libx32backtrace',` Package: libx32backtrace`'BTRACE_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (x32) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: libx32backtrace`'BTRACE_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(backtrace`'BTRACE_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (x32 debug symbols) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. ')`'dnl libx32backtrace ifenabled(`libhfbacktrace',` Package: libhfbacktrace`'BTRACE_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libbacktrace'BTRACE_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: stack backtrace library (hard float ABI) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: libhfbacktrace`'BTRACE_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(backtrace`'BTRACE_SO,hf,=), ${misc:Depends} wifdef(`TARGET',`dnl',`Conflicts: libbacktrace'BTRACE_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: stack backtrace library (hard float ABI debug symbols) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. ')`'dnl libhfbacktrace ifenabled(`libsfbacktrace',` Package: libsfbacktrace`'BTRACE_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (soft float ABI) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. Package: libsfbacktrace`'BTRACE_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(backtrace`'BTRACE_SO,sf,=), ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library (soft float ABI debug symbols) libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. ')`'dnl libsfbacktrace ifenabled(`libneonbacktrace',` Package: libbacktrace`'BTRACE_SO-neon`'LS Architecture: NEON_ARCHS Section: libs Priority: extra Depends: BASEDEP, libc6-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: stack backtrace library [neon optimized] libbacktrace uses the GCC unwind interface to collect a stack trace, and parses DWARF debug info to get file/line/function information. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneonbacktrace ')`'dnl libbacktrace ifenabled(`libqmath',` Package: libquadmath`'QMATH_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support '))`'dnl Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. The library is used to provide on such targets the REAL(16) type in the GNU Fortran compiler. Package: libquadmath`'QMATH_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(quadmath`'QMATH_SO,,=), ${misc:Depends} ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same '))`'dnl BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (debug symbols) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. Package: lib32quadmath`'QMATH_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (32bit) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. The library is used to provide on such targets the REAL(16) type in the GNU Fortran compiler. Package: lib32quadmath`'QMATH_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(quadmath`'QMATH_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (32 bit debug symbols) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. Package: lib64quadmath`'QMATH_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (64bit) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. The library is used to provide on such targets the REAL(16) type in the GNU Fortran compiler. Package: lib64quadmath`'QMATH_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(quadmath`'QMATH_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (64bit debug symbols) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. Package: libn32quadmath`'QMATH_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (n32) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. The library is used to provide on such targets the REAL(16) type in the GNU Fortran compiler. Package: libn32quadmath`'QMATH_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(quadmath`'QMATH_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (n32 debug symbols) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. ifenabled(`libx32qmath',` Package: libx32quadmath`'QMATH_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (x32) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. The library is used to provide on such targets the REAL(16) type in the GNU Fortran compiler. Package: libx32quadmath`'QMATH_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(quadmath`'QMATH_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (x32 debug symbols) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. ')`'dnl libx32qmath ifenabled(`libhfqmath',` Package: libhfquadmath`'QMATH_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (hard float ABI) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. The library is used to provide on such targets the REAL(16) type in the GNU Fortran compiler. Package: libhfquadmath`'QMATH_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(quadmath`'QMATH_SO,hf,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (hard float ABI debug symbols) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. ')`'dnl libhfqmath ifenabled(`libsfqmath',` Package: libsfquadmath`'QMATH_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (soft float ABI) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. The library is used to provide on such targets the REAL(16) type in the GNU Fortran compiler. Package: libsfquadmath`'QMATH_SO-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(quadmath`'QMATH_SO,sf,=), ${misc:Depends} BUILT_USING`'dnl Description: GCC Quad-Precision Math Library (hard float ABI debug symbols) A library, which provides quad-precision mathematical functions on targets supporting the __float128 datatype. ')`'dnl libsfqmath ')`'dnl libqmath ifenabled(`objpp',` ifenabled(`objppdev',` Package: gobjc++`'PV`'TS Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gobjc`'PV`'TS (= ${gcc:Version}), g++`'PV`'TS (= ${gcc:Version}), ${shlibs:Depends}, libdevdep(objc`'PV-dev,,=), ${misc:Depends} Suggests: ${gobjcxx:multilib}, gcc`'PV-doc (>= ${gcc:SoftVersion}) Provides: objc++-compiler`'TS BUILT_USING`'dnl Description: GNU Objective-C++ compiler This is the GNU Objective-C++ compiler, which compiles Objective-C++ on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. ')`'dnl obcppdev ifenabled(`multilib',` Package: gobjc++`'PV-multilib`'TS Architecture: ifdef(`TARGET',`any',MULTILIB_ARCHS) Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gobjc++`'PV`'TS (= ${gcc:Version}), g++`'PV-multilib`'TS (= ${gcc:Version}), gobjc`'PV-multilib`'TS (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Objective-C++ compiler (multilib files) This is the GNU Objective-C++ compiler, which compiles Objective-C++ on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). ')`'dnl multilib ')`'dnl obcpp ifenabled(`objc',` ifenabled(`objcdev',` Package: gobjc`'PV`'TS Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gcc`'PV`'TS (= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, libdevdep(objc`'PV-dev,,=), ${misc:Depends} Suggests: ${gobjc:multilib}, gcc`'PV-doc (>= ${gcc:SoftVersion}), libdbgdep(objc`'OBJC_SO-dbg,) Provides: objc-compiler`'TS ifdef(`__sparc__',`Conflicts: gcc`'PV-sparc64', `dnl') BUILT_USING`'dnl Description: GNU Objective-C compiler This is the GNU Objective-C compiler, which compiles Objective-C on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. ifenabled(`multilib',` Package: gobjc`'PV-multilib`'TS Architecture: ifdef(`TARGET',`any',MULTILIB_ARCHS) Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gobjc`'PV`'TS (= ${gcc:Version}), gcc`'PV-multilib`'TS (= ${gcc:Version}), ${dep:libobjcbiarchdev}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Objective-C compiler (multilib files)`'ifdef(`TARGET)',` (cross compiler for TARGET architecture)', `') This is the GNU Objective-C compiler, which compiles Objective-C on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). ')`'dnl multilib Package: libobjc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev,), libdep(objc`'OBJC_SO,), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`',ifdef(`MULTIARCH', `Multi-Arch: same '))`'dnl BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: lib64objc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev,64), libdep(objc`'OBJC_SO,64), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (64bit development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: lib32objc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev,32), libdep(objc`'OBJC_SO,32), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (32bit development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libn32objc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev,n32), libdep(objc`'OBJC_SO,n32), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (n32 development files) This package contains the headers and static library files needed to build GNU ObjC applications. ifenabled(`x32dev',` Package: libx32objc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev,x32), libdep(objc`'OBJC_SO,x32), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (x32 development files) This package contains the headers and static library files needed to build GNU ObjC applications. ')`'dnl libx32objc ifenabled(`armml',` Package: libhfobjc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev,hf), libdep(objc`'OBJC_SO,hf), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (hard float ABI development files) This package contains the headers and static library files needed to build GNU ObjC applications. ')`'dnl armml ifenabled(`armml',` Package: libsfobjc`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev,sf), libdep(objc`'OBJC_SO,sf), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (soft float development files) This package contains the headers and static library files needed to build GNU ObjC applications. ')`'dnl armml ')`'dnl objcdev ifenabled(`libobjc',` Package: libobjc`'OBJC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ifelse(OBJC_SO,`2',`Breaks: ${multiarch:breaks} ',`')')`Provides: libobjc'OBJC_SO`-armel [armel], libobjc'OBJC_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications Library needed for GNU ObjC applications linked against the shared library. Package: libobjc`'OBJC_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libobjc'OBJC_SO`-dbg-armel [armel], libobjc'OBJC_SO`-dbg-armhf [armhf]') Priority: extra Depends: BASEDEP, libdep(objc`'OBJC_SO,,=), libdbgdep(gcc`'GCC_SO-dbg,,>=,${libgcc:Version}), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (debug symbols) Library needed for GNU ObjC applications linked against the shared library. ')`'dnl libobjc ifenabled(`lib64objc',` Package: lib64objc`'OBJC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (64bit) Library needed for GNU ObjC applications linked against the shared library. Package: lib64objc`'OBJC_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: extra Depends: BASEDEP, libdep(objc`'OBJC_SO,64,=), libdbgdep(gcc`'GCC_SO-dbg,64,>=,${gcc:EpochVersion}), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (64 bit debug symbols) Library needed for GNU ObjC applications linked against the shared library. ')`'dnl lib64objc ifenabled(`lib32objc',` Package: lib32objc`'OBJC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (32bit) Library needed for GNU ObjC applications linked against the shared library. Package: lib32objc`'OBJC_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: extra Depends: BASEDEP, libdep(objc`'OBJC_SO,32,=), libdbgdep(gcc`'GCC_SO-dbg,32,>=,${gcc:EpochVersion}), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (32 bit debug symbols) Library needed for GNU ObjC applications linked against the shared library. ')`'dnl lib32objc ifenabled(`libn32objc',` Package: libn32objc`'OBJC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (n32) Library needed for GNU ObjC applications linked against the shared library. Package: libn32objc`'OBJC_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: extra Depends: BASEDEP, libdep(objc`'OBJC_SO,n32,=), libdbgdep(gcc`'GCC_SO-dbg,n32,>=,${gcc:EpochVersion}), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (n32 debug symbols) Library needed for GNU ObjC applications linked against the shared library. ')`'dnl libn32objc ifenabled(`libx32objc',` Package: libx32objc`'OBJC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (x32) Library needed for GNU ObjC applications linked against the shared library. Package: libx32objc`'OBJC_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: extra Depends: BASEDEP, libdep(objc`'OBJC_SO,x32,=), libdbgdep(gcc`'GCC_SO-dbg,x32,>=,${gcc:EpochVersion}), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (x32 debug symbols) Library needed for GNU ObjC applications linked against the shared library. ')`'dnl libx32objc ifenabled(`libhfobjc',` Package: libhfobjc`'OBJC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libobjc'OBJC_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (hard float ABI) Library needed for GNU ObjC applications linked against the shared library. Package: libhfobjc`'OBJC_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: extra Depends: BASEDEP, libdep(objc`'OBJC_SO,hf,=), libdbgdep(gcc`'GCC_SO-dbg,hf,>=,${gcc:EpochVersion}), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libobjc'OBJC_SO`-dbg-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (hard float ABI debug symbols) Library needed for GNU ObjC applications linked against the shared library. ')`'dnl libhfobjc ifenabled(`libsfobjc',` Package: libsfobjc`'OBJC_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libobjc'OBJC_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (soft float ABI) Library needed for GNU ObjC applications linked against the shared library. Package: libsfobjc`'OBJC_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: extra Depends: BASEDEP, libdep(objc`'OBJC_SO,sf,=), libdbgdep(gcc`'GCC_SO-dbg,sf,>=,${gcc:EpochVersion}), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libobjc'OBJC_SO`-dbg-armel [biarchsf_archs]') BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications (soft float ABI debug symbols) Library needed for GNU ObjC applications linked against the shared library. ')`'dnl libsfobjc ifenabled(`libneonobjc',` Package: libobjc`'OBJC_SO-neon`'LS Section: libs Architecture: NEON_ARCHS Priority: PRI(optional) Depends: BASEDEP, libc6-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Objective-C applications [NEON version] Library needed for GNU ObjC applications linked against the shared library. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneonobjc ')`'dnl objc ifenabled(`fortran',` ifenabled(`fdev',` Package: gfortran`'PV`'TS Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gcc`'PV`'TS (= ${gcc:Version}), libdevdep(gfortran`'PV-dev,,=), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Provides: fortran95-compiler, ${fortran:mod-version} Suggests: ${gfortran:multilib}, gfortran`'PV-doc, libdbgdep(gfortran`'FORTRAN_SO-dbg,) BUILT_USING`'dnl Description: GNU Fortran compiler This is the GNU Fortran compiler, which compiles Fortran on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. ifenabled(`multilib',` Package: gfortran`'PV-multilib`'TS Architecture: ifdef(`TARGET',`any',MULTILIB_ARCHS) Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gfortran`'PV`'TS (= ${gcc:Version}), gcc`'PV-multilib`'TS (= ${gcc:Version}), ${dep:libgfortranbiarchdev}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Fortran compiler (multilib files)`'ifdef(`TARGET)',` (cross compiler for TARGET architecture)', `') This is the GNU Fortran compiler, which compiles Fortran on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). ')`'dnl multilib ifenabled(`gfdldoc',` Package: gfortran`'PV-doc Architecture: all Section: doc Priority: PRI(optional) Depends: gcc`'PV-base (>= ${gcc:SoftVersion}), dpkg (>= 1.15.4) | install-info, ${misc:Depends} Description: Documentation for the GNU Fortran compiler (gfortran) Documentation for the GNU Fortran compiler in info `format'. ')`'dnl gfdldoc Package: libgfortran`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: ifdef(`TARGET',`devel',`libdevel') Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev`',), libdep(gfortran`'FORTRAN_SO,), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`',ifdef(`MULTIARCH', `Multi-Arch: same '))`'dnl BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: lib64gfortran`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev`',64), libdep(gfortran`'FORTRAN_SO,64), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (64bit development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: lib32gfortran`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev`',32), libdep(gfortran`'FORTRAN_SO,32), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (32bit development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libn32gfortran`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev`',n32), libdep(gfortran`'FORTRAN_SO,n32), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (n32 development files) This package contains the headers and static library files needed to build GNU Fortran applications. ifenabled(`x32dev',` Package: libx32gfortran`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev`',x32), libdep(gfortran`'FORTRAN_SO,x32), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (x32 development files) This package contains the headers and static library files needed to build GNU Fortran applications. ')`'dnl libx32gfortran ifenabled(`armml',` Package: libhfgfortran`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev`',hf), libdep(gfortran`'FORTRAN_SO,hf), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (hard float ABI development files) This package contains the headers and static library files needed to build GNU Fortran applications. ')`'dnl armml ifenabled(`armml',` Package: libsfgfortran`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: libdevel Priority: optional Depends: BASEDEP, libdevdep(gcc`'PV-dev`',sf), libdep(gfortran`'FORTRAN_SO,sf), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (soft float ABI development files) This package contains the headers and static library files needed to build GNU Fortran applications. ')`'dnl armml ')`'dnl fdev ifenabled(`libgfortran',` Package: libgfortran`'FORTRAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support Breaks: ${multiarch:breaks} ')`Provides: libgfortran'FORTRAN_SO`-armel [armel], libgfortran'FORTRAN_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications Library needed for GNU Fortran applications linked against the shared library. Package: libgfortran`'FORTRAN_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libgfortran'FORTRAN_SO`-dbg-armel [armel], libgfortran'FORTRAN_SO`-dbg-armhf [armhf]') Priority: extra Depends: BASEDEP, libdep(gfortran`'FORTRAN_SO,,=), libdbgdep(gcc`'GCC_SO-dbg,,>=,${libgcc:Version}), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (debug symbols) Library needed for GNU Fortran applications linked against the shared library. ')`'dnl libgfortran ifenabled(`lib64gfortran',` Package: lib64gfortran`'FORTRAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (64bit) Library needed for GNU Fortran applications linked against the shared library. Package: lib64gfortran`'FORTRAN_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: extra Depends: BASEDEP, libdep(gfortran`'FORTRAN_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (64bit debug symbols) Library needed for GNU Fortran applications linked against the shared library. ')`'dnl lib64gfortran ifenabled(`lib32gfortran',` Package: lib32gfortran`'FORTRAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (32bit) Library needed for GNU Fortran applications linked against the shared library. Package: lib32gfortran`'FORTRAN_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: extra Depends: BASEDEP, libdep(gfortran`'FORTRAN_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (32 bit debug symbols) Library needed for GNU Fortran applications linked against the shared library. ')`'dnl lib32gfortran ifenabled(`libn32gfortran',` Package: libn32gfortran`'FORTRAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (n32) Library needed for GNU Fortran applications linked against the shared library. Package: libn32gfortran`'FORTRAN_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: extra Depends: BASEDEP, libdep(gfortran`'FORTRAN_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (n32 debug symbols) Library needed for GNU Fortran applications linked against the shared library. ')`'dnl libn32gfortran ifenabled(`libx32gfortran',` Package: libx32gfortran`'FORTRAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (x32) Library needed for GNU Fortran applications linked against the shared library. Package: libx32gfortran`'FORTRAN_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: extra Depends: BASEDEP, libdep(gfortran`'FORTRAN_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (x32 debug symbols) Library needed for GNU Fortran applications linked against the shared library. ')`'dnl libx32gfortran ifenabled(`libhfgfortran',` Package: libhfgfortran`'FORTRAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgfortran'FORTRAN_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (hard float ABI) Library needed for GNU Fortran applications linked against the shared library. Package: libhfgfortran`'FORTRAN_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Priority: extra Depends: BASEDEP, libdep(gfortran`'FORTRAN_SO,hf,=), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgfortran'FORTRAN_SO`-dbg-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (hard float ABI debug symbols) Library needed for GNU Fortran applications linked against the shared library. ')`'dnl libhfgfortran ifenabled(`libsfgfortran',` Package: libsfgfortran`'FORTRAN_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgfortran'FORTRAN_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (soft float ABI) Library needed for GNU Fortran applications linked against the shared library. Package: libsfgfortran`'FORTRAN_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Priority: extra Depends: BASEDEP, libdep(gfortran`'FORTRAN_SO,sf,=), ${misc:Depends} ifdef(`TARGET',`dnl',`Conflicts: libgfortran'FORTRAN_SO`-dbg-armel [biarchsf_archs]') BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications (hard float ABI debug symbols) Library needed for GNU Fortran applications linked against the shared library. ')`'dnl libsfgfortran ifenabled(`libneongfortran',` Package: libgfortran`'FORTRAN_SO-neon`'LS Section: libs Architecture: NEON_ARCHS ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support Breaks: ${multiarch:breaks} ')`'dnl Priority: extra Depends: BASEDEP, libgcc1-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Fortran applications [NEON version] Library needed for GNU Fortran applications linked against the shared library. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl libneongfortran ')`'dnl fortran ifenabled(`ggo',` ifenabled(`godev',` Package: gccgo`'PV`'TS Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ifdef(`STANDALONEGO',,`gcc`'PV`'TS (= ${gcc:Version}), ')libdep(go`'GO_SO,), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Provides: go-compiler Suggests: ${go:multilib}, gccgo`'PV-doc, libdbgdep(go`'GO_SO-dbg,) BUILT_USING`'dnl Description: GNU Go compiler This is the GNU Go compiler, which compiles Go on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. ifenabled(`multilib',` Package: gccgo`'PV-multilib`'TS Architecture: ifdef(`TARGET',`any',MULTILIB_ARCHS) Section: devel Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gccgo`'PV`'TS (= ${gcc:Version}), ifdef(`STANDALONEGO',,`gcc`'PV-multilib`'TS (= ${gcc:Version}), ')${dep:libgobiarch}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${dep:libgobiarchdbg} BUILT_USING`'dnl Description: GNU Go compiler (multilib files)`'ifdef(`TARGET)',` (cross compiler for TARGET architecture)', `') This is the GNU Go compiler, which compiles Go on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). ')`'dnl multilib ifenabled(`gfdldoc',` Package: gccgo`'PV-doc Architecture: all Section: doc Priority: PRI(optional) Depends: gcc`'PV-base (>= ${gcc:SoftVersion}), dpkg (>= 1.15.4) | install-info, ${misc:Depends} BUILT_USING`'dnl Description: Documentation for the GNU Go compiler (gccgo) Documentation for the GNU Go compiler in info `format'. ')`'dnl gfdldoc ')`'dnl fdev ifenabled(`libggo',` Package: libgo`'GO_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support ')`Provides: libgo'GO_SO`-armel [armel], libgo'GO_SO`-armhf [armhf]') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} Replaces: libgo3`'LS BUILT_USING`'dnl Description: Runtime library for GNU Go applications Library needed for GNU Go applications linked against the shared library. Package: libgo`'GO_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same ')`Provides: libgo'GO_SO`-dbg-armel [armel], libgo'GO_SO`-dbg-armhf [armhf]') Priority: extra Depends: BASEDEP, libdep(go`'GO_SO,,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Go applications (debug symbols) Library needed for GNU Go applications linked against the shared library. ')`'dnl libgo ifenabled(`lib64ggo',` Package: lib64go`'GO_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: lib64go3`'LS BUILT_USING`'dnl Description: Runtime library for GNU Go applications (64bit) Library needed for GNU Go applications linked against the shared library. Package: lib64go`'GO_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Priority: extra Depends: BASEDEP, libdep(go`'GO_SO,64,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Go applications (64bit debug symbols) Library needed for GNU Go applications linked against the shared library. ')`'dnl lib64go ifenabled(`lib32ggo',` Package: lib32go`'GO_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Replaces: lib32go3`'LS BUILT_USING`'dnl Description: Runtime library for GNU Go applications (32bit) Library needed for GNU Go applications linked against the shared library. Package: lib32go`'GO_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Priority: extra Depends: BASEDEP, libdep(go`'GO_SO,32,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Go applications (32 bit debug symbols) Library needed for GNU Go applications linked against the shared library. ')`'dnl lib32go ifenabled(`libn32ggo',` Package: libn32go`'GO_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libn32go3`'LS BUILT_USING`'dnl Description: Runtime library for GNU Go applications (n32) Library needed for GNU Go applications linked against the shared library. Package: libn32go`'GO_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Priority: extra Depends: BASEDEP, libdep(go`'GO_SO,n32,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Go applications (n32 debug symbols) Library needed for GNU Go applications linked against the shared library. ')`'dnl libn32go ifenabled(`libx32ggo',` Package: libx32go`'GO_SO`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libx32go3`'LS BUILT_USING`'dnl Description: Runtime library for GNU Go applications (x32) Library needed for GNU Go applications linked against the shared library. Package: libx32go`'GO_SO-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Priority: extra Depends: BASEDEP, libdep(go`'GO_SO,x32,=), ${misc:Depends} BUILT_USING`'dnl Description: Runtime library for GNU Go applications (x32 debug symbols) Library needed for GNU Go applications linked against the shared library. ')`'dnl libx32go ')`'dnl ggo ifenabled(`java',` ifenabled(`gcj',` Package: gcj`'PV`'TS Section: java Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:gcj}, ${dep:gcjcross}, ${dep:libcdev}, ${dep:ecj}, ${shlibs:Depends}, dpkg (>= 1.15.4) | install-info, ${misc:Depends} Recommends: libecj-java-gcj Conflicts: gcj-4.4, cpp-4.1 (<< 4.1.1), gcc-4.1 (<< 4.1.1) Replaces: libgcj11 (<< 4.5-20100101-1), gcj`'PV-jdk`'TS (<< 4.8.1-4) BUILT_USING`'dnl Description: GCJ byte code and native compiler for Java(TM) GCJ is a front end to the GCC compiler which can natively compile both Java(tm) source and bytecode files. The compiler can also generate class files. ')`'dnl gcj ifenabled(`libgcj',` ifenabled(`libgcjcommon',` Package: libgcj-common Section: java Architecture: all Priority: PRI(optional) Depends: BASEDEP, ${misc:Depends} Conflicts: classpath (<= 0.04-4) Replaces: java-gcj-compat (<< 1.0.65-3), java-gcj-compat-dev (<< 1.0.65-3) BUILT_USING`'dnl Description: Java runtime library (common files) This package contains files shared by Classpath and libgcj libraries. ')`'dnl libgcjcommon Package: gcj`'PV-jdk`'TS Section: java Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, ${dep:gcj}, ${dep:libcdev}, gcj`'PV`'TS (= ${gcj:Version}), gcj`'PV-jre`'TS (= ${gcj:Version}), libdevdep(gcj`'GCJ_SO-dev,,=,${gcj:Version}), fastjar, libgcj-bc`'LS, java-common, libantlr-java, ${shlibs:Depends}, dpkg (>= 1.15.4) | install-info, ${misc:Depends} Recommends: libecj-java-gcj Suggests: gcj`'PV-source (>= ${gcj:SoftVersion}), libdbgdep(gcj`'GCJ_SO-dbg,) Provides: java-compiler, java-sdk, java2-sdk, java5-sdk Conflicts: gcj-4.4, cpp-4.1 (<< 4.1.1), gcc-4.1 (<< 4.1.1) Replaces: libgcj11 (<< 4.5-20100101-1) BUILT_USING`'dnl Description: GCJ and Classpath development tools for Java(TM) GCJ is a front end to the GCC compiler which can natively compile both Java(tm) source and bytecode files. The compiler can also generate class files. Other java development tools from classpath are included in this package. . The package contains as well a collection of wrapper scripts and symlinks. It is meant to provide a Java-SDK-like interface to the GCJ tool set. Package: gcj`'PV-jre-headless`'TS Priority: ifdef(`TARGET',`extra',`PRI(optional)') Section: java Architecture: any Depends: BASEDEP, gcj`'PV-jre-lib`'TS (>= ${gcj:SoftVersion}), libdep(gcj`'LIBGCJ_EXT,,=,${gcj:Version}), ${dep:prctl}, ${shlibs:Depends}, ${misc:Depends} Suggests: fastjar, gcj`'PV-jdk`'TS (= ${gcj:Version}), libdep(gcj`'LIBGCJ_EXT-awt,,=,${gcj:Version}) Conflicts: gij-4.4, java-gcj-compat (<< 1.0.76-4) Replaces: gcj-4.8-jre-lib`'TS (<< 4.8-20121219-0) Provides: java5-runtime-headless, java2-runtime-headless, java1-runtime-headless, java-runtime-headless BUILT_USING`'dnl Description: Java runtime environment using GIJ/Classpath (headless version) GIJ is a Java bytecode interpreter, not limited to interpreting bytecode. It includes a class loader which can dynamically load shared objects, so it is possible to give it the name of a class which has been compiled and put into a shared library on the class path. . The package contains as well a collection of wrapper scripts and symlinks. It is meant to provide a Java-RTE-like interface to the GIJ/GCJ tool set, limited to the headless tools and libraries. Package: gcj`'PV-jre`'TS Section: java Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: BASEDEP, gcj`'PV-jre-headless`'TS (= ${gcj:Version}), libdep(gcj`'LIBGCJ_EXT-awt,,=,${gcj:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: java5-runtime, java2-runtime, java1-runtime, java-runtime Replaces: gcj-4.8-jre-headless`'TS (<< 4.8.2-2) BUILT_USING`'dnl Description: Java runtime environment using GIJ/Classpath GIJ is a Java bytecode interpreter, not limited to interpreting bytecode. It includes a class loader which can dynamically load shared objects, so it is possible to give it the name of a class which has been compiled and put into a shared library on the class path. . The package contains as well a collection of wrapper scripts and symlinks. It is meant to provide a Java-RTE-like interface to the GIJ/GCJ tool set. Package: libgcj`'LIBGCJ_EXT`'LS Section: libs Architecture: any Priority: PRI(optional) ifdef(`MULTIARCH', `Pre-Depends: multiarch-support Multi-Arch: same ')`'dnl Depends: SOFTBASEDEP, libgcj-common (>= 1:4.1.1-21), ${shlibs:Depends}, ${misc:Depends} Recommends: gcj`'PV-jre-lib`'TS (>= ${gcj:SoftVersion}) Suggests: libdbgdep(gcj`'GCJ_SO-dbg,), libdep(gcj`'LIBGCJ_EXT-awt,,=,${gcj:Version}) Replaces: gij-4.4 (<< 4.4.0-1), gcj-4.8-jre-headless`'TS (<< 4.8.2-5) BUILT_USING`'dnl Description: Java runtime library for use with gcj This is the runtime that goes along with the gcj front end to gcc. libgcj includes parts of the Java Class Libraries, plus glue to connect the libraries to the compiler and the underlying OS. . To show file names and line numbers in stack traces, the packages libgcj`'GCJ_SO-dbg and binutils are required. Package: gcj`'PV-jre-lib`'TS Section: java Architecture: all Priority: PRI(optional) Depends: SOFTBASEDEP, libdep(gcj`'LIBGCJ_EXT,,>=,${gcj:SoftVersion}), ${misc:Depends} BUILT_USING`'dnl Description: Java runtime library for use with gcj (jar files) This is the jar file that goes along with the gcj front end to gcc. ifenabled(`gcjbc',` Package: libgcj-bc Section: java Architecture: any Priority: PRI(optional) ifdef(`MULTIARCH', `Pre-Depends: multiarch-support Multi-Arch: same ')`'dnl Depends: BASEDEP, libdep(gcj`'LIBGCJ_EXT,,>=,${gcj:Version}), ${misc:Depends} BUILT_USING`'dnl Description: Link time only library for use with gcj A fake library that is used at link time only. It ensures that binaries built with the BC-ABI link against a constant SONAME. This way, BC-ABI binaries continue to work if the SONAME underlying libgcj.so changes. ')`'dnl gcjbc Package: libgcj`'LIBGCJ_EXT-awt`'LS Section: libs Architecture: any Priority: PRI(optional) ifdef(`MULTIARCH', `Pre-Depends: multiarch-support Multi-Arch: same ')`'dnl Depends: SOFTBASEDEP, libdep(gcj`'LIBGCJ_EXT,,=,${gcj:Version}), ${shlibs:Depends}, ${misc:Depends} Suggests: ${pkg:gcjqt} BUILT_USING`'dnl Description: AWT peer runtime libraries for use with gcj These are runtime libraries holding the AWT peer implementations for libgcj (currently the GTK+ based peer library is required, the QT bases library is not built). ifenabled(`gtkpeer',` Package: libgcj`'GCJ_SO-awt-gtk`'LS Section: libs Architecture: any Priority: PRI(optional) ifdef(`MULTIARCH', `Pre-Depends: multiarch-support Multi-Arch: same ')`'dnl Depends: SOFTBASEDEP, libgcj`'LIBGCJ_EXT-awt`'LS (= ${gcj:Version}), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: AWT GTK+ peer runtime library for use with libgcj This is the runtime library holding the GTK+ based AWT peer implementation for libgcj. ')`'dnl gtkpeer ifenabled(`qtpeer',` Package: libgcj`'GCJ_SO-awt-qt`'LS Section: libs Architecture: any Priority: PRI(optional) ifdef(`MULTIARCH', `Pre-Depends: multiarch-support Multi-Arch: same ')`'dnl Depends: SOFTBASEDEP, libdep(gcj`'LIBGCJ_EXT-awt,,=,${gcj:Version}), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: AWT QT peer runtime library for use with libgcj This is the runtime library holding the QT based AWT peer implementation for libgcj. ')`'dnl qtpeer ')`'dnl libgcj ifenabled(`libgcjdev',` Package: libgcj`'GCJ_SO-dev`'LS Section: libdevel Architecture: any ifdef(`MULTIARCH', `Multi-Arch: same ')`'dnl Priority: PRI(optional) Depends: BASEDEP, libdep(gcj`'LIBGCJ_EXT-awt,,=,${gcj:Version}), libgcj-bc`'LS, ${pkg:gcjgtk}, ${pkg:gcjqt}, zlib1g-dev, ${shlibs:Depends}, ${misc:Depends} Suggests: libgcj-doc BUILT_USING`'dnl Description: Java development headers for use with gcj These are the development headers that go along with the gcj front end to gcc. libgcj includes parts of the Java Class Libraries, plus glue to connect the libraries to the compiler and the underlying OS. Package: libgcj`'GCJ_SO-dbg`'LS Section: debug Architecture: any Priority: extra ifdef(`MULTIARCH', `Pre-Depends: multiarch-support Multi-Arch: same ')`'dnl Depends: BASEDEP, libdep(gcj`'LIBGCJ_EXT,,=,${gcj:Version}), ${misc:Depends} Recommends: binutils, libc6-dbg | libc-dbg BUILT_USING`'dnl Description: Debugging symbols for libraries provided in libgcj`'GCJ_SO-dev The package provides debugging symbols for the libraries provided in libgcj`'GCJ_SO-dev. . binutils is required to show file names and line numbers in stack traces. ifenabled(`gcjsrc',` Package: gcj`'PV-source Section: java Architecture: all Priority: PRI(optional) Depends: SOFTBASEDEP, gcj`'PV-jdk (>= ${gcj:SoftVersion}), ${misc:Depends} BUILT_USING`'dnl Description: GCJ java sources for use in IDEs like eclipse and netbeans These are the java source files packaged as a zip file for use in development environments like eclipse and netbeans. ')`'dnl ifenabled(`gcjdoc',` Package: libgcj-doc Section: doc Architecture: all Priority: PRI(optional) Depends: SOFTBASEDEP, ${misc:Depends} Enhances: libgcj`'GCJ_SO-dev Provides: classpath-doc BUILT_USING`'dnl Description: libgcj API documentation and example programs Autogenerated documentation describing the API of the libgcj library. Sources and precompiled example programs from the Classpath library. ')`'dnl gcjdoc ')`'dnl libgcjdev ')`'dnl java ifenabled(`c++',` ifenabled(`libcxx',` Package: libstdc++CXX_SO`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(important)) Depends: BASEDEP, ${dep:libc}, ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libstdc++CXX_SO-TARGET-dcv1', ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support Breaks: ${multiarch:breaks} ')`Provides: libstdc++'CXX_SO`-armel [armel], libstdc++'CXX_SO`-armhf [armhf]') Conflicts: scim (<< 1.4.2-1) BUILT_USING`'dnl Description: GNU Standard C++ Library v3`'ifdef(`TARGET)',` (TARGET)', `') This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libcxx ifenabled(`lib32cxx',` Package: lib32stdc++CXX_SO`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: extra Depends: BASEDEP, libdep(gcc1,32), ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} ifdef(`TARGET',`Provides: lib32stdc++CXX_SO-TARGET-dcv1 ',`')`'dnl BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (32 bit Version) This package contains an additional runtime library for C++ programs built with the GNU compiler. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl lib32cxx ifenabled(`lib64cxx',` Package: lib64stdc++CXX_SO`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdep(gcc1,64), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: lib64stdc++CXX_SO-TARGET-dcv1 ',`')`'dnl BUILT_USING`'dnl Description: GNU Standard C++ Library v3`'ifdef(`TARGET)',` (TARGET)', `') (64bit) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl lib64cxx ifenabled(`libn32cxx',` Package: libn32stdc++CXX_SO`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdep(gcc1,n32), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libn32stdc++CXX_SO-TARGET-dcv1 ',`')`'dnl BUILT_USING`'dnl Description: GNU Standard C++ Library v3`'ifdef(`TARGET)',` (TARGET)', `') (n32) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libn32cxx ifenabled(`libx32cxx',` Package: libx32stdc++CXX_SO`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdep(gcc1,x32), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libx32stdc++CXX_SO-TARGET-dcv1 ',`')`'dnl BUILT_USING`'dnl Description: GNU Standard C++ Library v3`'ifdef(`TARGET)',` (TARGET)', `') (x32) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libx32cxx ifenabled(`libhfcxx',` Package: libhfstdc++CXX_SO`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdep(gcc1,hf), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libhfstdc++CXX_SO-TARGET-dcv1 ',`')`'dnl ifdef(`TARGET',`dnl',`Conflicts: libstdc++'CXX_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: GNU Standard C++ Library v3`'ifdef(`TARGET)',` (TARGET)', `') (hard float ABI) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libhfcxx ifenabled(`libsfcxx',` Package: libsfstdc++CXX_SO`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: ifdef(`TARGET',`devel',`libs') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdep(gcc1,sf), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libsfstdc++CXX_SO-TARGET-dcv1 ',`')`'dnl ifdef(`TARGET',`dnl',`Conflicts: libstdc++'CXX_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: GNU Standard C++ Library v3`'ifdef(`TARGET)',` (TARGET)', `') (soft float ABI) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libsfcxx ifenabled(`libneoncxx',` Package: libstdc++CXX_SO-neon`'LS Architecture: NEON_ARCHS Section: libs Priority: extra Depends: BASEDEP, libc6-neon`'LS, libgcc1-neon`'LS, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: GNU Standard C++ Library v3 [NEON version] This package contains an additional runtime library for C++ programs built with the GNU compiler. . This set of libraries is optimized to use a NEON coprocessor, and will be selected instead when running under systems which have one. ')`'dnl ifenabled(`c++dev',` Package: libstdc++`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`',ifdef(`MULTIARCH', `Multi-Arch: same '))`'dnl Section: ifdef(`TARGET',`devel',`libdevel') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdevdep(gcc`'PV-dev,,=), libdep(stdc++CXX_SO,,>=), ${dep:libcdev}, ${misc:Depends} ifdef(`TARGET',`',`dnl native Conflicts: libg++27-dev, libg++272-dev (<< 2.7.2.8-1), libstdc++2.8-dev, libg++2.8-dev, libstdc++2.9-dev, libstdc++2.9-glibc2.1-dev, libstdc++2.10-dev (<< 1:2.95.3-2), libstdc++3.0-dev Suggests: libstdc++`'PV-doc ')`'dnl native Provides: libstdc++-dev`'LS`'ifdef(`TARGET',`, libstdc++-dev-TARGET-dcv1') BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (development files)`'ifdef(`TARGET)',` (TARGET)', `') This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libstdc++`'PV-pic`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`',ifdef(`MULTIARCH', `Multi-Arch: same '))`'dnl Section: ifdef(`TARGET',`devel',`libdevel') Priority: extra Depends: BASEDEP, libdep(stdc++CXX_SO,), libdevdep(stdc++`'PV-dev,), ${misc:Depends} ifdef(`TARGET',`Provides: libstdc++-pic-TARGET-dcv1 ',`')`'dnl BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (shared library subset kit)`'ifdef(`TARGET)',` (TARGET)', `') This is used to develop subsets of the libstdc++ shared libraries for use on custom installation floppies and in embedded systems. . Unless you are making one of those, you will not need this package. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libstdc++CXX_SO`'PV-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Section: debug Priority: extra Depends: BASEDEP, libdep(stdc++CXX_SO,), libdbgdep(gcc`'GCC_SO-dbg,,>=,${libgcc:Version}), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libstdc++CXX_SO-dbg-TARGET-dcv1',`dnl ifdef(`MULTIARCH', `Multi-Arch: same',`dnl') Provides: libstdc++'CXX_SO`'PV`-dbg-armel [armel], libstdc++'CXX_SO`'PV`-dbg-armhf [armhf]dnl ') Recommends: libdevdep(stdc++`'PV-dev,) Conflicts: libstdc++5-dbg`'LS, libstdc++5-3.3-dbg`'LS, libstdc++6-dbg`'LS, libstdc++6-4.0-dbg`'LS, libstdc++6-4.1-dbg`'LS, libstdc++6-4.2-dbg`'LS, libstdc++6-4.3-dbg`'LS, libstdc++6-4.4-dbg`'LS, libstdc++6-4.5-dbg`'LS, libstdc++6-4.6-dbg`'LS, libstdc++6-4.7-dbg`'LS BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (debugging files)`'ifdef(`TARGET)',` (TARGET)', `') This package contains the shared library of libstdc++ compiled with debugging symbols. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: lib32stdc++`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: ifdef(`TARGET',`devel',`libdevel') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdevdep(gcc`'PV-dev,32), libdep(stdc++CXX_SO,32), libdevdep(stdc++`'PV-dev,), ${misc:Depends} BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (development files)`'ifdef(`TARGET',` (TARGET)', `') This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: lib32stdc++CXX_SO`'PV-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(stdc++CXX_SO,32), libdevdep(stdc++`'PV-dev,), libdbgdep(gcc`'GCC_SO-dbg,32,>=,${gcc:EpochVersion}), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: lib32stdc++CXX_SO-dbg-TARGET-dcv1 ',`')`'dnl Conflicts: lib32stdc++6-dbg`'LS, lib32stdc++6-4.0-dbg`'LS, lib32stdc++6-4.1-dbg`'LS, lib32stdc++6-4.2-dbg`'LS, lib32stdc++6-4.3-dbg`'LS, lib32stdc++6-4.4-dbg`'LS, lib32stdc++6-4.5-dbg`'LS, lib32stdc++6-4.6-dbg`'LS, lib32stdc++6-4.7-dbg`'LS, BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (debugging files)`'ifdef(`TARGET)',` (TARGET)', `') This package contains the shared library of libstdc++ compiled with debugging symbols. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: lib64stdc++`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: ifdef(`TARGET',`devel',`libdevel') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdevdep(gcc`'PV-dev,64), libdep(stdc++CXX_SO,64), libdevdep(stdc++`'PV-dev,), ${misc:Depends} BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (development files)`'ifdef(`TARGET',` (TARGET)', `') This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: lib64stdc++CXX_SO`'PV-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarch64_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(stdc++CXX_SO,64), libdevdep(stdc++`'PV-dev,), libdbgdep(gcc`'GCC_SO-dbg,64,>=,${gcc:EpochVersion}), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: lib64stdc++CXX_SO-dbg-TARGET-dcv1 ',`')`'dnl Conflicts: lib64stdc++6-dbg`'LS, lib64stdc++6-4.0-dbg`'LS, lib64stdc++6-4.1-dbg`'LS, lib64stdc++6-4.2-dbg`'LS, lib64stdc++6-4.3-dbg`'LS, lib64stdc++6-4.4-dbg`'LS, lib64stdc++6-4.5-dbg`'LS, lib64stdc++6-4.6-dbg`'LS, lib64stdc++6-4.7-dbg`'LS BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (debugging files)`'ifdef(`TARGET)',` (TARGET)', `') This package contains the shared library of libstdc++ compiled with debugging symbols. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libn32stdc++`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: ifdef(`TARGET',`devel',`libdevel') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdevdep(gcc`'PV-dev,n32), libdep(stdc++CXX_SO,n32), libdevdep(stdc++`'PV-dev,), ${misc:Depends} BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (development files)`'ifdef(`TARGET',` (TARGET)', `') This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libn32stdc++CXX_SO`'PV-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchn32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(stdc++CXX_SO,n32), libdevdep(stdc++`'PV-dev,), libdbgdep(gcc`'GCC_SO-dbg,n32,>=,${gcc:EpochVersion}), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libn32stdc++CXX_SO-dbg-TARGET-dcv1 ',`')`'dnl Conflicts: libn32stdc++6-dbg`'LS, libn32stdc++6-4.0-dbg`'LS, libn32stdc++6-4.1-dbg`'LS, libn32stdc++6-4.2-dbg`'LS, libn32stdc++6-4.3-dbg`'LS, libn32stdc++6-4.4-dbg`'LS, libn32stdc++6-4.5-dbg`'LS, libn32stdc++6-4.6-dbg`'LS, libn32stdc++6-4.7-dbg`'LS BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (debugging files)`'ifdef(`TARGET)',` (TARGET)', `') This package contains the shared library of libstdc++ compiled with debugging symbols. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ifenabled(`x32dev',` Package: libx32stdc++`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: ifdef(`TARGET',`devel',`libdevel') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdevdep(gcc`'PV-dev,x32), libdep(stdc++CXX_SO,x32), libdevdep(stdc++`'PV-dev,), ${misc:Depends} BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (development files)`'ifdef(`TARGET',` (TARGET)', `') This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl x32dev ifenabled(`libx32dbgcxx',` Package: libx32stdc++CXX_SO`'PV-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchx32_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(stdc++CXX_SO,x32), libdevdep(stdc++`'PV-dev,), libdbgdep(gcc`'GCC_SO-dbg,x32,>=,${gcc:EpochVersion}), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libx32stdc++CXX_SO-dbg-TARGET-dcv1 ',`')`'dnl Conflicts: libx32stdc++6-dbg`'LS, libx32stdc++6-4.6-dbg`'LS, libx32stdc++6-4.7-dbg`'LS BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (debugging files)`'ifdef(`TARGET)',` (TARGET)', `') This package contains the shared library of libstdc++ compiled with debugging symbols. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libx32dbgcxx ifenabled(`libhfdbgcxx',` Package: libhfstdc++`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: ifdef(`TARGET',`devel',`libdevel') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdevdep(gcc`'PV-dev,hf), libdep(stdc++CXX_SO,hf), libdevdep(stdc++`'PV-dev,), ${misc:Depends} BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (development files)`'ifdef(`TARGET',` (TARGET)', `') This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libhfstdc++CXX_SO`'PV-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchhf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(stdc++CXX_SO,hf), libdevdep(stdc++`'PV-dev,), libdbgdep(gcc`'GCC_SO-dbg,hf,>=,${gcc:EpochVersion}), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libhfstdc++CXX_SO-dbg-TARGET-dcv1 ',`')`'dnl ifdef(`TARGET',`dnl',`Conflicts: libhfstdc++6-dbg`'LS, libhfstdc++6-4.3-dbg`'LS, libhfstdc++6-4.4-dbg`'LS, libhfstdc++6-4.5-dbg`'LS, libhfstdc++6-4.6-dbg`'LS, libhfstdc++6-4.7-dbg`'LS, libstdc++'CXX_SO`-armhf [biarchhf_archs]') BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (debugging files)`'ifdef(`TARGET)',` (TARGET)', `') This package contains the shared library of libstdc++ compiled with debugging symbols. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libhfdbgcxx ifenabled(`libsfdbgcxx',` Package: libsfstdc++`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: ifdef(`TARGET',`devel',`libdevel') Priority: ifdef(`TARGET',`extra',PRI(optional)) Depends: BASEDEP, libdevdep(gcc`'PV-dev,sf), libdep(stdc++CXX_SO,sf), libdevdep(stdc++`'PV-dev,), ${misc:Depends} BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (development files)`'ifdef(`TARGET',` (TARGET)', `') This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl Package: libsfstdc++CXX_SO`'PV-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`biarchsf_archs') Section: debug Priority: extra Depends: BASEDEP, libdep(stdc++CXX_SO,sf), libdevdep(stdc++`'PV-dev,), libdbgdep(gcc`'GCC_SO-dbg,sf,>=,${gcc:EpochVersion}), ${shlibs:Depends}, ${misc:Depends} ifdef(`TARGET',`Provides: libsfstdc++CXX_SO-dbg-TARGET-dcv1 ',`')`'dnl ifdef(`TARGET',`dnl',`Conflicts: libsfstdc++6-dbg`'LS, libsfstdc++6-4.3-dbg`'LS, libsfstdc++6-4.4-dbg`'LS, libsfstdc++6-4.5-dbg`'LS, libsfstdc++6-4.6-dbg`'LS, libsfstdc++6-4.7-dbg`'LS, libstdc++'CXX_SO`-armel [biarchsf_archs]') BUILT_USING`'dnl Description: GNU Standard C++ Library v3 (debugging files)`'ifdef(`TARGET)',` (TARGET)', `') This package contains the shared library of libstdc++ compiled with debugging symbols. ifdef(`TARGET', `dnl . This package contains files for TARGET architecture, for use in cross-compile environment. ')`'dnl ')`'dnl libsfdbgcxx ifdef(`TARGET', `', ` Package: libstdc++`'PV-doc Architecture: all Section: doc Priority: PRI(optional) Depends: gcc`'PV-base (>= ${gcc:SoftVersion}), ${misc:Depends}, libjs-jquery Conflicts: libstdc++5-doc, libstdc++5-3.3-doc, libstdc++6-doc, libstdc++6-4.0-doc, libstdc++6-4.1-doc, libstdc++6-4.2-doc, libstdc++6-4.3-doc, libstdc++6-4.4-doc, libstdc++6-4.5-doc, libstdc++6-4.6-doc, libstdc++6-4.7-doc Description: GNU Standard C++ Library v3 (documentation files) This package contains documentation files for the GNU stdc++ library. . One set is the distribution documentation, the other set is the source documentation including a namespace list, class hierarchy, alphabetical list, compound list, file list, namespace members, compound members and file members. ')`'dnl native ')`'dnl c++dev ')`'dnl c++ ifenabled(`ada',` Package: gnat`'-GNAT_V`'TS Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') ifdef(`MULTIARCH', `Pre-Depends: multiarch-support ')`'dnl Depends: BASEDEP, gcc`'PV`'TS (>= ${gcc:SoftVersion}), ${dep:libgnat}, ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: gnat`'PV-doc, ada-reference-manual-html, ada-reference-manual-info, ada-reference-manual-pdf, ada-reference-manual-text, gnat`'-GNAT_V-sjlj Conflicts: gnat (<< 4.1), gnat-3.1, gnat-3.2, gnat-3.3, gnat-3.4, gnat-3.5, gnat-4.0, gnat-4.1, gnat-4.2, gnat-4.3, gnat-4.4, gnat-4.6 BUILT_USING`'dnl Description: GNU Ada compiler GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . This package provides the compiler, tools and runtime library that handles exceptions using the default zero-cost mechanism. Package: gnat`'-GNAT_V-sjlj`'TS Architecture: any Priority: extra ifdef(`MULTIARCH', `Pre-Depends: multiarch-support ')`'dnl Depends: BASEDEP, gnat`'-GNAT_V`'TS (= ${gnat:Version}), ${misc:Depends} BUILT_USING`'dnl Description: GNU Ada compiler (setjump/longjump runtime library) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . This package provides an alternative runtime library that handles exceptions using the setjump/longjump mechanism (as a static library only). You can install it to supplement the normal compiler. ifenabled(`libgnat',` Package: libgnat`'-GNAT_V`'LS Section: ifdef(`TARGET',`devel',`libs') Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support '))`'dnl Priority: PRI(optional) Depends: BASEDEP, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: runtime for applications compiled with GNAT (shared library) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . The libgnat library provides runtime components needed by most applications produced with GNAT. . This package contains the runtime shared library. Package: libgnat`'-GNAT_V-dbg`'LS Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support '))`'dnl Priority: extra Depends: BASEDEP, libgnat`'-GNAT_V`'LS (= ${gnat:Version}), ${misc:Depends} BUILT_USING`'dnl Description: runtime for applications compiled with GNAT (debugging symbols) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . The libgnat library provides runtime components needed by most applications produced with GNAT. . This package contains the debugging symbols. Package: libgnatvsn`'GNAT_V-dev`'LS Section: libdevel Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Priority: extra Depends: BASEDEP, gnat`'PV`'LS (= ${gnat:Version}), libgnatvsn`'GNAT_V`'LS (= ${gnat:Version}), ${misc:Depends} Conflicts: libgnatvsn-dev (<< `'GNAT_V), libgnatvsn4.1-dev, libgnatvsn4.3-dev, libgnatvsn4.4-dev, libgnatvsn4.5-dev, libgnatvsn4.6-dev BUILT_USING`'dnl Description: GNU Ada compiler selected components (development files) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . The libgnatvsn library exports selected GNAT components for use in other packages, most notably ASIS tools. It is licensed under the GNAT-Modified GPL, allowing to link proprietary programs with it. . This package contains the development files and static library. Package: libgnatvsn`'GNAT_V`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support '))`'dnl Priority: PRI(optional) Section: ifdef(`TARGET',`devel',`libs') Depends: BASEDEP, libgnat`'-GNAT_V`'LS (= ${gnat:Version}), ${misc:Depends} BUILT_USING`'dnl Description: GNU Ada compiler selected components (shared library) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . The libgnatvsn library exports selected GNAT components for use in other packages, most notably ASIS tools. It is licensed under the GNAT-Modified GPL, allowing to link proprietary programs with it. . This package contains the runtime shared library. Package: libgnatvsn`'GNAT_V-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support '))`'dnl Priority: extra Section: debug Depends: BASEDEP, libgnatvsn`'GNAT_V`'LS (= ${gnat:Version}), ${misc:Depends} Suggests: gnat BUILT_USING`'dnl Description: GNU Ada compiler selected components (debugging symbols) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . The libgnatvsn library exports selected GNAT components for use in other packages, most notably ASIS tools. It is licensed under the GNAT-Modified GPL, allowing to link proprietary programs with it. . This package contains the debugging symbols. Package: libgnatprj`'GNAT_V-dev`'LS Section: libdevel Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') Priority: extra Depends: BASEDEP, gnat`'PV`'TS (= ${gnat:Version}), libgnatprj`'GNAT_V`'LS (= ${gnat:Version}), libgnatvsn`'GNAT_V-dev`'LS (= ${gnat:Version}), ${misc:Depends} Conflicts: libgnatprj-dev (<< `'GNAT_V), libgnatprj4.1-dev, libgnatprj4.3-dev, libgnatprj4.4-dev, libgnatprj4.5-dev, libgnatprj4.6-dev BUILT_USING`'dnl Description: GNU Ada compiler Project Manager (development files) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . GNAT uses project files to organise source and object files in large-scale development efforts. The libgnatprj library exports GNAT project files management for use in other packages, most notably ASIS tools (package asis-programs) and GNAT Programming Studio (package gnat-gps). It is licensed under the pure GPL; all programs that use it must also be distributed under the GPL, or not distributed at all. . This package contains the development files and static library. Package: libgnatprj`'GNAT_V`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support '))`'dnl Priority: PRI(optional) Section: ifdef(`TARGET',`devel',`libs') Depends: BASEDEP, libgnat`'-GNAT_V`'LS (= ${gnat:Version}), libgnatvsn`'GNAT_V`'LS (= ${gnat:Version}), ${misc:Depends} BUILT_USING`'dnl Description: GNU Ada compiler Project Manager (shared library) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . GNAT uses project files to organise source and object files in large-scale development efforts. The libgnatprj library exports GNAT project files management for use in other packages, most notably ASIS tools (package asis-programs) and GNAT Programming Studio (package gnat-gps). It is licensed under the pure GPL; all programs that use it must also be distributed under the GPL, or not distributed at all. . This package contains the runtime shared library. Package: libgnatprj`'GNAT_V-dbg`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`any') ifdef(`TARGET',`dnl',ifdef(`MULTIARCH', `Multi-Arch: same Pre-Depends: multiarch-support '))`'dnl Priority: extra Section: debug Depends: BASEDEP, libgnatprj`'GNAT_V`'LS (= ${gnat:Version}), ${misc:Depends} Suggests: gnat BUILT_USING`'dnl Description: GNU Ada compiler Project Manager (debugging symbols) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . GNAT uses project files to organise source and object files in large-scale development efforts. The libgnatprj library exports GNAT project files management for use in other packages, most notably ASIS tools (package asis-programs) and GNAT Programming Studio (package gnat-gps). It is licensed under the pure GPL; all programs that use it must also be distributed under the GPL, or not distributed at all. . This package contains the debugging symbols. ')`'dnl libgnat ifenabled(`lib64gnat',` Package: lib64gnat`'-GNAT_V Section: libs Architecture: biarch64_archs Priority: PRI(optional) Depends: BASEDEP, ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: runtime for applications compiled with GNAT (64 bits shared library) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . The libgnat library provides runtime components needed by most applications produced with GNAT. . This package contains the runtime shared library for 64 bits architectures. ')`'dnl libgnat ifenabled(`gfdldoc',` Package: gnat`'PV-doc Architecture: all Section: doc Priority: PRI(optional) Depends: dpkg (>= 1.15.4) | install-info, ${misc:Depends} Suggests: gnat`'PV Conflicts: gnat-4.1-doc, gnat-4.2-doc, gnat-4.3-doc, gnat-4.4-doc, gnat-4.6-doc BUILT_USING`'dnl Description: GNU Ada compiler (documentation) GNAT is a compiler for the Ada programming language. It produces optimized code on platforms supported by the GNU Compiler Collection (GCC). . The libgnat library provides runtime components needed by most applications produced with GNAT. . This package contains the documentation in info `format'. ')`'dnl gfdldoc ')`'dnl ada ifenabled(`d ',` Package: gdc`'PV`'TS Architecture: any Priority: ifdef(`TARGET',`extra',`PRI(optional)') Depends: SOFTBASEDEP, g++`'PV`'TS (>= ${gcc:SoftVersion}), ${dep:gdccross}, ${dep:phobosdev}, ${shlibs:Depends}, ${misc:Depends} Provides: gdc, d-compiler, d-v2-compiler Replaces: gdc (<< 4.4.6-5) BUILT_USING`'dnl Description: GNU D compiler (version 2), based on the GCC backend This is the GNU D compiler, which compiles D on platforms supported by gcc. It uses the gcc backend to generate optimised code. . This compiler supports D language version 2. ifenabled(`libphobos',` Package: libphobos`'PV-dev`'LS Architecture: ifdef(`TARGET',`CROSS_ARCH',`libphobos_archs') Section: libdevel Priority: PRI(optional) Depends: BASEDEP, zlib1g-dev, ${shlibs:Depends}, ${misc:Depends} Provides: libphobos-dev Replaces: gdc`'PV`'TS (<< 4.8.2-19) BUILT_USING`'dnl Description: Phobos D standard library This is the Phobos standard library that comes with the D2 compiler. . For more information check http://www.dlang.org/phobos/ Package: libphobos`'PHOBOS_V`'PV`'TS-dbg Section: debug Architecture: ifdef(`TARGET',`CROSS_ARCH',`libphobos_archs') Priority: extra Depends: BASEDEP, libphobos`'PHOBOS_V`'PV-dev (= ${gdc:Version}), ${misc:Depends} Provides: libphobos`'PHOBOS_V`'TS-dbg BUILT_USING`'dnl Description: The Phobos D standard library (debug symbols) This is the Phobos standard library that comes with the D2 compiler. . For more information check http://www.dlang.org/phobos/ ')`'dnl libphobos ')`'dnl d ifdef(`TARGET',`',`dnl ifenabled(`libs',` Package: gcc`'PV-soft-float Architecture: arm armel armhf Priority: PRI(optional) Depends: BASEDEP, depifenabled(`cdev',`gcc`'PV (= ${gcc:Version}),') ${shlibs:Depends}, ${misc:Depends} Conflicts: gcc-4.4-soft-float, gcc-4.5-soft-float, gcc-4.6-soft-float BUILT_USING`'dnl Description: GCC soft-floating-point gcc libraries (ARM) These are versions of basic static libraries such as libgcc.a compiled with the -msoft-float option, for CPUs without a floating-point unit. ')`'dnl commonlibs ')`'dnl ifenabled(`fixincl',` Package: fixincludes Architecture: any Priority: PRI(optional) Depends: BASEDEP, gcc`'PV (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} BUILT_USING`'dnl Description: Fix non-ANSI header files FixIncludes was created to fix non-ANSI system header files. Many system manufacturers supply proprietary headers that are not ANSI compliant. The GNU compilers cannot compile non-ANSI headers. Consequently, the FixIncludes shell script was written to fix the header files. . Not all packages with header files are installed on the system, when the package is built, so we make fixincludes available at build time of other packages, such that checking tools like lintian can make use of it. ')`'dnl fixincl ifenabled(`cdev',` ifdef(`TARGET', `', ` ifenabled(`gfdldoc',` Package: gcc`'PV-doc Architecture: all Section: doc Priority: PRI(optional) Depends: gcc`'PV-base (>= ${gcc:SoftVersion}), dpkg (>= 1.15.4) | install-info, ${misc:Depends} Conflicts: gcc-docs (<< 2.95.2) Replaces: gcc (<=2.7.2.3-4.3), gcc-docs (<< 2.95.2) Description: Documentation for the GNU compilers (gcc, gobjc, g++) Documentation for the GNU compilers in info `format'. ')`'dnl gfdldoc ')`'dnl native ')`'dnl cdev ifdef(`TARGET',`',`dnl ifenabled(`libnof',` Package: gcc`'PV-nof Architecture: powerpc Priority: PRI(optional) Depends: BASEDEP, ${shlibs:Depends}ifenabled(`cdev',`, gcc`'PV (= ${gcc:Version})'), ${misc:Depends} Conflicts: gcc-3.2-nof BUILT_USING`'dnl Description: GCC no-floating-point gcc libraries (powerpc) These are versions of basic static libraries such as libgcc.a compiled with the -msoft-float option, for CPUs without a floating-point unit. ')`'dnl libnof ')`'dnl ifenabled(`source',` Package: gcc`'PV-source Architecture: all Priority: PRI(optional) Depends: make (>= 3.81), autoconf2.64, quilt, patchutils, gawk, ${misc:Depends} Description: Source of the GNU Compiler Collection This package contains the sources and patches which are needed to build the GNU Compiler Collection (GCC). ')`'dnl source dnl ')`'dnl gcc-X.Y dnl last line in file gnat-4.8-4.8.2/debian/libgfortran3.symbols.armel0000644000000000000000000000011612173542725016210 0ustar libgfortran.so.3 libgfortran3 #MINVER# #include "libgfortran3.symbols.common" gnat-4.8-4.8.2/debian/libstdc++6.symbols.64bit0000644000000000000000000010542312274247101015303 0ustar #include "libstdc++6.symbols.common" _ZN9__gnu_cxx17__pool_alloc_base16_M_get_free_listEm@GLIBCXX_3.4.2 4.1.1 _ZN9__gnu_cxx17__pool_alloc_base9_M_refillEm@GLIBCXX_3.4.2 4.1.1 _ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsgetnEPcl@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsputnEPKcl@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsgetnEPwl@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsputnEPKwl@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx6__poolILb0EE16_M_reclaim_blockEPcm@GLIBCXX_3.4.4 4.1.1 _ZN9__gnu_cxx6__poolILb0EE16_M_reserve_blockEmm@GLIBCXX_3.4.4 4.1.1 _ZN9__gnu_cxx6__poolILb1EE16_M_reclaim_blockEPcm@GLIBCXX_3.4.4 4.1.1 _ZN9__gnu_cxx6__poolILb1EE16_M_reserve_blockEmm@GLIBCXX_3.4.4 4.1.1 _ZN9__gnu_cxx9free_list6_M_getEm@GLIBCXX_3.4.4 4.1.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcElPKvPKS0_S2_@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv121__vmi_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_@CXXABI_1.3 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofERKS2_m@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofERKS2_m@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEmmPKc@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEmmPKc@GLIBCXX_3.4.5 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofERKS2_m@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofERKS2_m@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE2atEm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4copyEPwmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4findERKS2_m@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4findEwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE5rfindERKS2_m@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE6substrEmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmPKw@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmPKwm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmRKS2_@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmRKS2_mm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE8_M_checkEmPKc@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE8_M_limitEmm@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEEixEm@GLIBCXX_3.4 4.1.1 _ZNKSs12find_last_ofEPKcm@GLIBCXX_3.4 4.1.1 _ZNKSs12find_last_ofEPKcmm@GLIBCXX_3.4 4.1.1 _ZNKSs12find_last_ofERKSsm@GLIBCXX_3.4 4.1.1 _ZNKSs12find_last_ofEcm@GLIBCXX_3.4 4.1.1 _ZNKSs13find_first_ofEPKcm@GLIBCXX_3.4 4.1.1 _ZNKSs13find_first_ofEPKcmm@GLIBCXX_3.4 4.1.1 _ZNKSs13find_first_ofERKSsm@GLIBCXX_3.4 4.1.1 _ZNKSs13find_first_ofEcm@GLIBCXX_3.4 4.1.1 _ZNKSs15_M_check_lengthEmmPKc@GLIBCXX_3.4 4.1.1 _ZNKSs15_M_check_lengthEmmPKc@GLIBCXX_3.4.5 4.1.1 _ZNKSs16find_last_not_ofEPKcm@GLIBCXX_3.4 4.1.1 _ZNKSs16find_last_not_ofEPKcmm@GLIBCXX_3.4 4.1.1 _ZNKSs16find_last_not_ofERKSsm@GLIBCXX_3.4 4.1.1 _ZNKSs16find_last_not_ofEcm@GLIBCXX_3.4 4.1.1 _ZNKSs17find_first_not_ofEPKcm@GLIBCXX_3.4 4.1.1 _ZNKSs17find_first_not_ofEPKcmm@GLIBCXX_3.4 4.1.1 _ZNKSs17find_first_not_ofERKSsm@GLIBCXX_3.4 4.1.1 _ZNKSs17find_first_not_ofEcm@GLIBCXX_3.4 4.1.1 _ZNKSs2atEm@GLIBCXX_3.4 4.1.1 _ZNKSs4copyEPcmm@GLIBCXX_3.4 4.1.1 _ZNKSs4findEPKcm@GLIBCXX_3.4 4.1.1 _ZNKSs4findEPKcmm@GLIBCXX_3.4 4.1.1 _ZNKSs4findERKSsm@GLIBCXX_3.4 4.1.1 _ZNKSs4findEcm@GLIBCXX_3.4 4.1.1 _ZNKSs5rfindEPKcm@GLIBCXX_3.4 4.1.1 _ZNKSs5rfindEPKcmm@GLIBCXX_3.4 4.1.1 _ZNKSs5rfindERKSsm@GLIBCXX_3.4 4.1.1 _ZNKSs5rfindEcm@GLIBCXX_3.4 4.1.1 _ZNKSs6substrEmm@GLIBCXX_3.4 4.1.1 _ZNKSs7compareEmmPKc@GLIBCXX_3.4 4.1.1 _ZNKSs7compareEmmPKcm@GLIBCXX_3.4 4.1.1 _ZNKSs7compareEmmRKSs@GLIBCXX_3.4 4.1.1 _ZNKSs7compareEmmRKSsmm@GLIBCXX_3.4 4.1.1 _ZNKSs8_M_checkEmPKc@GLIBCXX_3.4 4.1.1 _ZNKSs8_M_limitEmm@GLIBCXX_3.4 4.1.1 _ZNKSsixEm@GLIBCXX_3.4 4.1.1 _ZNKSt11__timepunctIcE6_M_putEPcmPKcPK2tm@GLIBCXX_3.4 4.1.1 _ZNKSt11__timepunctIwE6_M_putEPwmPKwPK2tm@GLIBCXX_3.4 4.1.1 _ZNKSt7codecvtIcc11__mbstate_tE9do_lengthERS0_PKcS4_m@GLIBCXX_3.4 4.1.1 _ZNKSt7codecvtIwc11__mbstate_tE9do_lengthERS0_PKcS4_m@GLIBCXX_3.4 4.1.1 _ZNKSt7collateIcE12_M_transformEPcPKcm@GLIBCXX_3.4 4.1.1 _ZNKSt7collateIwE12_M_transformEPwPKwm@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE12_M_group_intEPKcmcRSt8ios_basePcS9_Ri@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE14_M_group_floatEPKcmcS6_PcS7_Ri@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6_M_padEclRSt8ios_basePcPKcRi@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE12_M_group_intEPKcmwRSt8ios_basePwS9_Ri@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE14_M_group_floatEPKcmwPKwPwS9_Ri@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6_M_padEwlRSt8ios_basePwPKwRi@GLIBCXX_3.4 4.1.1 _ZNKSt8__detail20_Prime_rehash_policy11_M_next_bktEm@GLIBCXX_3.4.18 4.8 _ZNKSt8__detail20_Prime_rehash_policy14_M_need_rehashEmmm@GLIBCXX_3.4.18 4.8 _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4 4.1.1 _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE15_M_extract_nameES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4 4.1.1 _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE24_M_extract_wday_or_monthES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4.14 4.5 _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4 4.1.1 _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE15_M_extract_nameES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4 4.1.1 _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE24_M_extract_wday_or_monthES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4.14 4.5 _ZNKSt8valarrayImE4sizeEv@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE10_S_compareEmm@GLIBCXX_3.4.16 4.6.0 _ZNSbIwSt11char_traitsIwESaIwEE12_S_constructEmwRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE14_M_replace_auxEmmmw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE15_M_replace_safeEmmPKwm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE18_S_construct_aux_2EmwRKS1_@GLIBCXX_3.4.14 4.5 _ZNSbIwSt11char_traitsIwESaIwEE2atEm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEm@GLIBCXX_3.4.5 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE4_Rep8_M_cloneERKS1_m@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE4_Rep9_S_createEmmRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6appendEPKwm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6appendEmw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6assignEmw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EEmw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEmPKw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEmPKwm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEmRKS2_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEmRKS2_mm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6resizeEm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6resizeEmw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwm@GLIBCXX_3.4.5 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwm@GLIBCXX_3.4.5 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKwm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_mw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKwm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_mm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmmw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7reserveEm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwmw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwmw@GLIBCXX_3.4.5 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE9_M_mutateEmmm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC1EPKwmRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mmRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC1EmwRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC2EPKwmRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mm@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mmRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC2EmwRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEixEm@GLIBCXX_3.4 4.1.1 _ZNSi3getEPcl@GLIBCXX_3.4 4.1.1 _ZNSi3getEPclc@GLIBCXX_3.4 4.1.1 _ZNSi4readEPcl@GLIBCXX_3.4 4.1.1 _ZNSi5seekgElSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSi6ignoreEl@GLIBCXX_3.4 4.1.1 _ZNSi6ignoreEl@GLIBCXX_3.4.5 4.1.1 _ZNSi6ignoreEli@GLIBCXX_3.4 4.1.1 _ZNSi7getlineEPcl@GLIBCXX_3.4 4.1.1 _ZNSi7getlineEPclc@GLIBCXX_3.4 4.1.1 _ZNSi8readsomeEPcl@GLIBCXX_3.4 4.1.1 _ZNSo5seekpElSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSo5writeEPKcl@GLIBCXX_3.4 4.1.1 _ZNSo8_M_writeEPKcl@GLIBCXX_3.4 4.1.1 _ZNSs10_S_compareEmm@GLIBCXX_3.4.16 4.6.0 _ZNSs12_S_constructEmcRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSs14_M_replace_auxEmmmc@GLIBCXX_3.4 4.1.1 _ZNSs15_M_replace_safeEmmPKcm@GLIBCXX_3.4 4.1.1 _ZNSs18_S_construct_aux_2EmcRKSaIcE@GLIBCXX_3.4.14 4.5 _ZNSs2atEm@GLIBCXX_3.4 4.1.1 _ZNSs4_Rep26_M_set_length_and_sharableEm@GLIBCXX_3.4 4.1.1 _ZNSs4_Rep26_M_set_length_and_sharableEm@GLIBCXX_3.4.5 4.1.1 _ZNSs4_Rep8_M_cloneERKSaIcEm@GLIBCXX_3.4 4.1.1 _ZNSs4_Rep9_S_createEmmRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSs5eraseEmm@GLIBCXX_3.4 4.1.1 _ZNSs6appendEPKcm@GLIBCXX_3.4 4.1.1 _ZNSs6appendERKSsmm@GLIBCXX_3.4 4.1.1 _ZNSs6appendEmc@GLIBCXX_3.4 4.1.1 _ZNSs6assignEPKcm@GLIBCXX_3.4 4.1.1 _ZNSs6assignERKSsmm@GLIBCXX_3.4 4.1.1 _ZNSs6assignEmc@GLIBCXX_3.4 4.1.1 _ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc@GLIBCXX_3.4 4.1.1 _ZNSs6insertEmPKc@GLIBCXX_3.4 4.1.1 _ZNSs6insertEmPKcm@GLIBCXX_3.4 4.1.1 _ZNSs6insertEmRKSs@GLIBCXX_3.4 4.1.1 _ZNSs6insertEmRKSsmm@GLIBCXX_3.4 4.1.1 _ZNSs6insertEmmc@GLIBCXX_3.4 4.1.1 _ZNSs6resizeEm@GLIBCXX_3.4 4.1.1 _ZNSs6resizeEmc@GLIBCXX_3.4 4.1.1 _ZNSs7_M_copyEPcPKcm@GLIBCXX_3.4 4.1.1 _ZNSs7_M_copyEPcPKcm@GLIBCXX_3.4.5 4.1.1 _ZNSs7_M_moveEPcPKcm@GLIBCXX_3.4 4.1.1 _ZNSs7_M_moveEPcPKcm@GLIBCXX_3.4.5 4.1.1 _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcm@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mc@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEmmPKc@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEmmPKcm@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEmmRKSs@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEmmRKSsmm@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEmmmc@GLIBCXX_3.4 4.1.1 _ZNSs7reserveEm@GLIBCXX_3.4 4.1.1 _ZNSs9_M_assignEPcmc@GLIBCXX_3.4 4.1.1 _ZNSs9_M_assignEPcmc@GLIBCXX_3.4.5 4.1.1 _ZNSs9_M_mutateEmmm@GLIBCXX_3.4 4.1.1 _ZNSsC1EPKcmRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC1ERKSsmm@GLIBCXX_3.4 4.1.1 _ZNSsC1ERKSsmmRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC1EmcRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC2EPKcmRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC2ERKSsmm@GLIBCXX_3.4 4.1.1 _ZNSsC2ERKSsmmRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC2EmcRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsixEm@GLIBCXX_3.4 4.1.1 _ZNSt10istrstreamC1EPKcl@GLIBCXX_3.4 4.1.1 _ZNSt10istrstreamC1EPcl@GLIBCXX_3.4 4.1.1 _ZNSt10istrstreamC2EPKcl@GLIBCXX_3.4 4.1.1 _ZNSt10istrstreamC2EPcl@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC1EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC1EPSt18__moneypunct_cacheIcLb0EEm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC2EPSt18__moneypunct_cacheIcLb0EEm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC1EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC1EPSt18__moneypunct_cacheIcLb1EEm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC2EPSt18__moneypunct_cacheIcLb1EEm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC1EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC1EPSt18__moneypunct_cacheIwLb0EEm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC2EPSt18__moneypunct_cacheIwLb0EEm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC1EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC1EPSt18__moneypunct_cacheIwLb1EEm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEm@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt11this_thread11__sleep_forENSt6chrono8durationIlSt5ratioILl1ELl1EEEENS1_IlS2_ILl1ELl1000000000EEEE@GLIBCXX_3.4.18 4.8 _ZNSt11__timepunctIcEC1EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC1EPSt17__timepunct_cacheIcEm@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC2EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEm@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC1EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC1EPSt17__timepunct_cacheIwEm@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC2EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEm@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcE6xsgetnEPcl@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcE6xsputnEPKcl@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcE7seekoffElSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcE8xsputn_2EPKclS2_l@GLIBCXX_3.4 4.1.1 _ZNSt12ctype_bynameIcEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt12ctype_bynameIcEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt12ctype_bynameIwEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt12ctype_bynameIwEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambuf6setbufEPcl@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambuf7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambuf8_M_allocEm@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambuf8_M_setupEPcS0_l@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPFPvmEPFvS0_E@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPKal@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPKcl@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPKhl@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPalS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPclS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPhlS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1El@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPFPvmEPFvS0_E@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPKal@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPKcl@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPKhl@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPalS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPclS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPhlS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2El@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE13_M_set_bufferEl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE22_M_convert_to_externalEPcl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPcl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE6xsgetnEPcl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE6xsputnEPKcl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE7_M_seekElSt12_Ios_Seekdir11__mbstate_t@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE13_M_set_bufferEl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE22_M_convert_to_externalEPwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE6xsgetnEPwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE6xsputnEPKwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE7_M_seekElSt12_Ios_Seekdir11__mbstate_t@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwlw@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE4readEPwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgElSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEl@GLIBCXX_3.4.5 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreElj@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwlw@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE8readsomeEPwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpElSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSt13basic_ostreamIwSt11char_traitsIwEE5writeEPKwl@GLIBCXX_3.4 4.1.1 _ZNSt13basic_ostreamIwSt11char_traitsIwEE8_M_writeEPKwl@GLIBCXX_3.4 4.1.1 _ZNSt14codecvt_bynameIcc11__mbstate_tEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt14codecvt_bynameIwc11__mbstate_tEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt14collate_bynameIcEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt14collate_bynameIcEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt14collate_bynameIwEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt14collate_bynameIwEC2EPKcm@GLIBCXX_3.4 4.1.1 (arch=!alpha !powerpc !ppc64 !ppc64el !s390 !s390x)_ZNSt14numeric_limitsIeE12max_digits10E@GLIBCXX_3.4.14 4.5.0 _ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE12__safe_gbumpEl@GLIBCXX_3.4.16 4.6.0 _ZNSt15basic_streambufIcSt11char_traitsIcEE12__safe_pbumpEl@GLIBCXX_3.4.16 4.6.0 _ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetnEPcl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE5sputnEPKcl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE6setbufEPcl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPcl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKcl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE9pubsetbufEPcl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE6setbufEPcl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcmm@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8_M_pbumpEPcS4_l@GLIBCXX_3.4.16 4.6.0 _ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetnEPwl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE5sputnEPKwl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE6setbufEPwl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE9pubsetbufEPwl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE12__safe_gbumpEl@GLIBCXX_3.4.16 4.6.0 _ZNSt15basic_streambufIwSt11char_traitsIwEE12__safe_pbumpEl@GLIBCXX_3.4.16 4.6.0 _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE6setbufEPwl@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7_M_syncEPwmm@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8_M_pbumpEPwS4_l@GLIBCXX_3.4.16 4.6.0 _ZNSt15messages_bynameIcEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15messages_bynameIcEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15messages_bynameIwEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15messages_bynameIwEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15numpunct_bynameIcEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15numpunct_bynameIcEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15numpunct_bynameIwEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15numpunct_bynameIwEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt16__numpunct_cacheIcEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt16__numpunct_cacheIcEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt16__numpunct_cacheIwEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt16__numpunct_cacheIwEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt17__timepunct_cacheIcEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt17__timepunct_cacheIcEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt17__timepunct_cacheIwEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt17__timepunct_cacheIwEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIcLb0EEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIcLb0EEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIcLb1EEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIcLb1EEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIwLb0EEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIwLb0EEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIwLb1EEC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIwLb1EEC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIcLb0EEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIcLb0EEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIcLb1EEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIcLb1EEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIwLb0EEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIwLb0EEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIwLb1EEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIwLb1EEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIcEC1EP15__locale_structPKtbm@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIcEC1EPKtbm@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIcEC2EP15__locale_structPKtbm@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIcEC2EPKtbm@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIwEC1EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIwEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIwEC2EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIwEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt6gslice8_IndexerC1EmRKSt8valarrayImES4_@GLIBCXX_3.4 4.1.1 _ZNSt6gslice8_IndexerC2EmRKSt8valarrayImES4_@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm@GLIBCXX_3.4.7 4.1.1 _ZNSt6locale5_ImplC1EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC1ERKS0_m@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC1Em@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC2EPKcm@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC2ERKS0_m@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC2Em@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIcc11__mbstate_tEC1EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIcc11__mbstate_tEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIcc11__mbstate_tEC2EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIcc11__mbstate_tEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIwc11__mbstate_tEC1EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIwc11__mbstate_tEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIwc11__mbstate_tEC2EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIwc11__mbstate_tEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt7collateIcEC1EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt7collateIcEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt7collateIcEC2EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt7collateIcEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt7collateIwEC1EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt7collateIwEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt7collateIwEC2EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt7collateIwEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIcEC1EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIcEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIcEC2EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIcEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIwEC1EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIwEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIwEC2EP15__locale_structPKcm@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIwEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC1EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC1EPSt16__numpunct_cacheIcEm@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC2EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEm@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC1EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC1EPSt16__numpunct_cacheIwEm@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC2EP15__locale_structm@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC2EPSt16__numpunct_cacheIwEm@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayImEC1ERKS0_@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayImEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayImEC2ERKS0_@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayImEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayImED1Ev@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayImED2Ev@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayImEixEm@GLIBCXX_3.4 4.1.1 _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_3.4 4.1.1 _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_3.4 4.1.1 _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_3.4 4.1.1 _ZSt11_Hash_bytesPKvmm@CXXABI_1.3.5 4.6 _ZSt15_Fnv_hash_bytesPKvmm@CXXABI_1.3.5 4.6 _ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l@GLIBCXX_3.4.9 4.2.1 _ZSt16__ostream_insertIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_l@GLIBCXX_3.4.9 4.2.1 _ZSt17__copy_streambufsIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_@GLIBCXX_3.4.8 4.1.1 _ZSt17__copy_streambufsIwSt11char_traitsIwEElPSt15basic_streambufIT_T0_ES6_@GLIBCXX_3.4.8 4.1.1 _ZSt17__verify_groupingPKcmRKSs@GLIBCXX_3.4.10 4.3 _ZSt21__copy_streambufs_eofIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_Rb@GLIBCXX_3.4.9 4.2.1 _ZSt21__copy_streambufs_eofIwSt11char_traitsIwEElPSt15basic_streambufIT_T0_ES6_Rb@GLIBCXX_3.4.9 4.2.1 _ZTIPKn@CXXABI_1.3.5 4.6 _ZTIPKo@CXXABI_1.3.5 4.6 _ZTIPn@CXXABI_1.3.5 4.6 _ZTIPo@CXXABI_1.3.5 4.6 _ZTIn@CXXABI_1.3.5 4.6 _ZTIo@CXXABI_1.3.5 4.6 _ZThn16_NSdD0Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSdD1Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt9strstreamD0Ev@GLIBCXX_3.4 4.1.1 _ZThn16_NSt9strstreamD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSdD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSdD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSiD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSiD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSoD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSoD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt10istrstreamD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt10istrstreamD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt10ostrstreamD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt10ostrstreamD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_ifstreamIcSt11char_traitsIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_ifstreamIcSt11char_traitsIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_ifstreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_ifstreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_ofstreamIcSt11char_traitsIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_ofstreamIcSt11char_traitsIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_ofstreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt14basic_ofstreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt9strstreamD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n24_NSt9strstreamD1Ev@GLIBCXX_3.4 4.1.1 _Znam@GLIBCXX_3.4 4.1.1 _ZnamRKSt9nothrow_t@GLIBCXX_3.4 4.1.1 _Znwm@GLIBCXX_3.4 4.1.1 _ZnwmRKSt9nothrow_t@GLIBCXX_3.4 4.1.1 __gxx_personality_v0@CXXABI_1.3 4.1.1 _ZNSt12__basic_fileIcEC1EP15pthread_mutex_t@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcEC2EP15pthread_mutex_t@GLIBCXX_3.4 4.1.1 gnat-4.8-4.8.2/debian/lib32gcc1.symbols.ppc640000644000000000000000000001036412173542725015127 0ustar libgcc_s.so.1 lib32gcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3.4@GCC_3.3.4 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.1.0@GCC_4.1.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __adddf3@GCC_3.0 1:4.1.1 __addsf3@GCC_3.0 1:4.1.1 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __ashldi3@GCC_3.0 1:4.1.1 __ashrdi3@GCC_3.0 1:4.1.1 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbsi2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzsi2@GCC_3.4 1:4.1.1 __cmpdi2@GCC_3.0 1:4.1.1 __ctzdi2@GCC_3.4 1:4.1.1 __ctzsi2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divdc3@GCC_4.0.0 1:4.1.1 __divdf3@GCC_3.0 1:4.1.1 __divdi3@GLIBC_2.0 1:4.1.1 __divsc3@GCC_4.0.0 1:4.1.1 __divsf3@GCC_3.0 1:4.1.1 __divtc3@GCC_4.1.0 1:4.1.1 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __eqdf2@GCC_3.0 1:4.1.1 __eqsf2@GCC_3.0 1:4.1.1 __extendsfdf2@GCC_3.0 1:4.1.1 __ffsdi2@GCC_3.0 1:4.1.1 __ffssi2@GCC_4.3.0 1:4.3 __fixdfdi@GCC_3.0 1:4.1.1 __fixdfsi@GCC_3.0 1:4.1.1 __fixsfdi@GCC_3.0 1:4.1.1 __fixsfsi@GCC_3.0 1:4.1.1 __fixtfdi@GCC_4.1.0 1:4.1.1 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfsi@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfsi@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_4.1.0 1:4.1.1 __floatdidf@GCC_3.0 1:4.1.1 __floatdisf@GCC_3.0 1:4.1.1 __floatditf@GCC_4.1.0 1:4.1.1 __floatsidf@GCC_3.0 1:4.1.1 __floatsisf@GCC_3.0 1:4.1.1 __floatundidf@GCC_4.2.0 1:4.2.1 __floatundisf@GCC_4.2.0 1:4.2.1 __floatunditf@GCC_4.2.0 1:4.2.1 __floatunsidf@GCC_4.2.0 1:4.2.1 __floatunsisf@GCC_4.2.0 1:4.2.1 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __gcc_qadd@GCC_4.1.0 1:4.1.1 __gcc_qdiv@GCC_4.1.0 1:4.1.1 __gcc_qmul@GCC_4.1.0 1:4.1.1 __gcc_qsub@GCC_4.1.0 1:4.1.1 __gedf2@GCC_3.0 1:4.1.1 __gesf2@GCC_3.0 1:4.1.1 __gtdf2@GCC_3.0 1:4.1.1 __gtsf2@GCC_3.0 1:4.1.1 __ledf2@GCC_3.0 1:4.1.1 __lesf2@GCC_3.0 1:4.1.1 __lshrdi3@GCC_3.0 1:4.1.1 __ltdf2@GCC_3.0 1:4.1.1 __ltsf2@GCC_3.0 1:4.1.1 __moddi3@GLIBC_2.0 1:4.1.1 __muldc3@GCC_4.0.0 1:4.1.1 __muldf3@GCC_3.0 1:4.1.1 __muldi3@GCC_3.0 1:4.1.1 __mulsc3@GCC_4.0.0 1:4.1.1 __mulsf3@GCC_3.0 1:4.1.1 __multc3@GCC_4.1.0 1:4.1.1 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __nedf2@GCC_3.0 1:4.1.1 __negdf2@GCC_3.0 1:4.1.1 __negdi2@GCC_3.0 1:4.1.1 __negsf2@GCC_3.0 1:4.1.1 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __nesf2@GCC_3.0 1:4.1.1 __paritydi2@GCC_3.4 1:4.1.1 __paritysi2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountsi2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.1.0 1:4.1.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __subdf3@GCC_3.0 1:4.1.1 __subsf3@GCC_3.0 1:4.1.1 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __trampoline_setup@GCC_3.4.2 1:4.1.1 __truncdfsf2@GCC_3.0 1:4.1.1 __ucmpdi2@GCC_3.0 1:4.1.1 __udivdi3@GLIBC_2.0 1:4.1.1 __udivmoddi4@GCC_3.0 1:4.1.1 __umoddi3@GLIBC_2.0 1:4.1.1 __unorddf2@GCC_3.3.4 1:4.1.1 __unordsf2@GCC_3.3.4 1:4.1.1 gnat-4.8-4.8.2/debian/libatomic1.symbols.common0000644000000000000000000000557712173542725016050 0ustar LIBATOMIC_1.0@LIBATOMIC_1.0 4.8 __atomic_add_fetch_1@LIBATOMIC_1.0 4.8 __atomic_add_fetch_2@LIBATOMIC_1.0 4.8 __atomic_add_fetch_4@LIBATOMIC_1.0 4.8 __atomic_add_fetch_8@LIBATOMIC_1.0 4.8 __atomic_and_fetch_1@LIBATOMIC_1.0 4.8 __atomic_and_fetch_2@LIBATOMIC_1.0 4.8 __atomic_and_fetch_4@LIBATOMIC_1.0 4.8 __atomic_and_fetch_8@LIBATOMIC_1.0 4.8 __atomic_compare_exchange@LIBATOMIC_1.0 4.8 __atomic_compare_exchange_1@LIBATOMIC_1.0 4.8 __atomic_compare_exchange_2@LIBATOMIC_1.0 4.8 __atomic_compare_exchange_4@LIBATOMIC_1.0 4.8 __atomic_compare_exchange_8@LIBATOMIC_1.0 4.8 __atomic_exchange@LIBATOMIC_1.0 4.8 __atomic_exchange_1@LIBATOMIC_1.0 4.8 __atomic_exchange_2@LIBATOMIC_1.0 4.8 __atomic_exchange_4@LIBATOMIC_1.0 4.8 __atomic_exchange_8@LIBATOMIC_1.0 4.8 __atomic_fetch_add_1@LIBATOMIC_1.0 4.8 __atomic_fetch_add_2@LIBATOMIC_1.0 4.8 __atomic_fetch_add_4@LIBATOMIC_1.0 4.8 __atomic_fetch_add_8@LIBATOMIC_1.0 4.8 __atomic_fetch_and_1@LIBATOMIC_1.0 4.8 __atomic_fetch_and_2@LIBATOMIC_1.0 4.8 __atomic_fetch_and_4@LIBATOMIC_1.0 4.8 __atomic_fetch_and_8@LIBATOMIC_1.0 4.8 __atomic_fetch_nand_1@LIBATOMIC_1.0 4.8 __atomic_fetch_nand_2@LIBATOMIC_1.0 4.8 __atomic_fetch_nand_4@LIBATOMIC_1.0 4.8 __atomic_fetch_nand_8@LIBATOMIC_1.0 4.8 __atomic_fetch_or_1@LIBATOMIC_1.0 4.8 __atomic_fetch_or_2@LIBATOMIC_1.0 4.8 __atomic_fetch_or_4@LIBATOMIC_1.0 4.8 __atomic_fetch_or_8@LIBATOMIC_1.0 4.8 __atomic_fetch_sub_1@LIBATOMIC_1.0 4.8 __atomic_fetch_sub_2@LIBATOMIC_1.0 4.8 __atomic_fetch_sub_4@LIBATOMIC_1.0 4.8 __atomic_fetch_sub_8@LIBATOMIC_1.0 4.8 __atomic_fetch_xor_1@LIBATOMIC_1.0 4.8 __atomic_fetch_xor_2@LIBATOMIC_1.0 4.8 __atomic_fetch_xor_4@LIBATOMIC_1.0 4.8 __atomic_fetch_xor_8@LIBATOMIC_1.0 4.8 __atomic_is_lock_free@LIBATOMIC_1.0 4.8 __atomic_load@LIBATOMIC_1.0 4.8 __atomic_load_1@LIBATOMIC_1.0 4.8 __atomic_load_2@LIBATOMIC_1.0 4.8 __atomic_load_4@LIBATOMIC_1.0 4.8 __atomic_load_8@LIBATOMIC_1.0 4.8 __atomic_nand_fetch_1@LIBATOMIC_1.0 4.8 __atomic_nand_fetch_2@LIBATOMIC_1.0 4.8 __atomic_nand_fetch_4@LIBATOMIC_1.0 4.8 __atomic_nand_fetch_8@LIBATOMIC_1.0 4.8 __atomic_or_fetch_1@LIBATOMIC_1.0 4.8 __atomic_or_fetch_2@LIBATOMIC_1.0 4.8 __atomic_or_fetch_4@LIBATOMIC_1.0 4.8 __atomic_or_fetch_8@LIBATOMIC_1.0 4.8 __atomic_store@LIBATOMIC_1.0 4.8 __atomic_store_1@LIBATOMIC_1.0 4.8 __atomic_store_2@LIBATOMIC_1.0 4.8 __atomic_store_4@LIBATOMIC_1.0 4.8 __atomic_store_8@LIBATOMIC_1.0 4.8 __atomic_sub_fetch_1@LIBATOMIC_1.0 4.8 __atomic_sub_fetch_2@LIBATOMIC_1.0 4.8 __atomic_sub_fetch_4@LIBATOMIC_1.0 4.8 __atomic_sub_fetch_8@LIBATOMIC_1.0 4.8 __atomic_test_and_set_1@LIBATOMIC_1.0 4.8 __atomic_test_and_set_2@LIBATOMIC_1.0 4.8 __atomic_test_and_set_4@LIBATOMIC_1.0 4.8 __atomic_test_and_set_8@LIBATOMIC_1.0 4.8 __atomic_xor_fetch_1@LIBATOMIC_1.0 4.8 __atomic_xor_fetch_2@LIBATOMIC_1.0 4.8 __atomic_xor_fetch_4@LIBATOMIC_1.0 4.8 __atomic_xor_fetch_8@LIBATOMIC_1.0 4.8 gnat-4.8-4.8.2/debian/libgcc1.symbols.lpia0000644000000000000000000001015712173542725014753 0ustar libgcc_s.so.1 libgcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.4.0@GCC_4.4.0 1:4.4.0 GCC_4.5.0@GCC_4.5.0 1:4.5.0 GCC_4.7.0@GCC_4.7.0 1:4.7 GCC_4.8.0@GCC_4.8.0 1:4.8 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __addtf3@GCC_4.4.0 1:4.4.0 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __ashldi3@GCC_3.0 1:4.1.1 __ashrdi3@GCC_3.0 1:4.1.1 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clzdi2@GCC_3.4 1:4.1.1 __clzsi2@GCC_3.4 1:4.1.1 __cmpdi2@GCC_3.0 1:4.1.1 __copysigntf3@GCC_4.4.0 1:4.4.0 __ctzdi2@GCC_3.4 1:4.1.1 __ctzsi2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divdc3@GCC_4.0.0 1:4.1.1 __divdi3@GLIBC_2.0 1:4.1.1 __divsc3@GCC_4.0.0 1:4.1.1 __divtc3@GCC_4.4.0 1:4.4.0 __divtf3@GCC_4.4.0 1:4.4.0 __divxc3@GCC_4.0.0 1:4.1.1 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __eqtf2@GCC_4.4.0 1:4.4.0 __extenddftf2@GCC_4.4.0 1:4.4.0 __extendsftf2@GCC_4.4.0 1:4.4.0 __fabstf2@GCC_4.4.0 1:4.4.0 __ffsdi2@GCC_3.0 1:4.1.1 __ffssi2@GCC_4.3.0 1:4.3 __fixdfdi@GCC_3.0 1:4.1.1 __fixsfdi@GCC_3.0 1:4.1.1 __fixtfdi@GCC_4.4.0 1:4.4.0 __fixtfsi@GCC_4.4.0 1:4.4.0 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfsi@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfsi@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_4.4.0 1:4.4.0 __fixunstfsi@GCC_4.4.0 1:4.4.0 __fixunsxfdi@GCC_3.0 1:4.1.1 __fixunsxfsi@GCC_3.0 1:4.1.1 __fixxfdi@GCC_3.0 1:4.1.1 __floatdidf@GCC_3.0 1:4.1.1 __floatdisf@GCC_3.0 1:4.1.1 __floatditf@GCC_4.4.0 1:4.4.0 __floatdixf@GCC_3.0 1:4.1.1 __floatsitf@GCC_4.4.0 1:4.4.0 __floatundidf@GCC_4.2.0 1:4.2.1 __floatundisf@GCC_4.2.0 1:4.2.1 __floatunditf@GCC_4.4.0 1:4.4.0 __floatundixf@GCC_4.2.0 1:4.2.1 __floatunsitf@GCC_4.4.0 1:4.4.0 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __getf2@GCC_4.4.0 1:4.4.0 __gttf2@GCC_4.4.0 1:4.4.0 __letf2@GCC_4.4.0 1:4.4.0 __lshrdi3@GCC_3.0 1:4.1.1 __lttf2@GCC_4.4.0 1:4.4.0 __moddi3@GLIBC_2.0 1:4.1.1 __muldc3@GCC_4.0.0 1:4.1.1 __muldi3@GCC_3.0 1:4.1.1 __mulsc3@GCC_4.0.0 1:4.1.1 __multc3@GCC_4.4.0 1:4.4.0 __multf3@GCC_4.4.0 1:4.4.0 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulxc3@GCC_4.0.0 1:4.1.1 __negdi2@GCC_3.0 1:4.1.1 __negtf2@GCC_4.4.0 1:4.4.0 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __netf2@GCC_4.4.0 1:4.4.0 __paritydi2@GCC_3.4 1:4.1.1 __paritysi2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountsi2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.4.0 1:4.4.0 __powixf2@GCC_4.0.0 1:4.1.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __subtf3@GCC_4.4.0 1:4.4.0 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __trunctfdf2@GCC_4.4.0 1:4.4.0 __trunctfsf2@GCC_4.4.0 1:4.4.0 __trunctfxf2@GCC_4.4.0 1:4.4.0 __ucmpdi2@GCC_3.0 1:4.1.1 __udivdi3@GLIBC_2.0 1:4.1.1 __udivmoddi4@GCC_3.0 1:4.1.1 __umoddi3@GLIBC_2.0 1:4.1.1 __unordtf2@GCC_4.4.0 1:4.4.0 gnat-4.8-4.8.2/debian/protoize.10000644000000000000000000000277612173542726013057 0ustar .TH PROTOIZE 1 .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .SH NAME protoize, unprotoize \- create/remove ANSI prototypes from C code .SH SYNOPSIS .B protoize .I "[options] files ...." .br .B unprotoize .I "[options] files ...." .SH "DESCRIPTION" This manual page documents briefly the .BR protoize , and .B unprotoize commands. This manual page was written for the Debian GNU/Linux distribution (but may be used by others), because the original program does not have a manual page. Instead, it has documentation in the GNU Info format; see below. .PP .B protoize is an optional part of GNU C. You can use it to add prototypes to a program, thus converting the program to ANSI C in one respect. The companion program `unprotoize' does the reverse: it removes argument types from any prototypes that are found. .PP When you run these programs, you must specify a set of source files as command line arguments. .SH OPTIONS These programs are non-trivial to operate, and it is neither possible nor desirable to properly summarize options in this man page. Read the info documentation for more information. .SH "SEE ALSO" The programs are documented fully by .IR "Gcc: The use and the internals of the GNU compiler", available via the Info system. The documentation for protoize/unprotoize can be found in the subsection "Invoking GCC", under "Running Protoize." .SH AUTHOR This manual page was written by Galen Hazelwood, for the Debian GNU/Linux system. gnat-4.8-4.8.2/debian/gcc-BV-multilib.overrides0000644000000000000000000000007112173542725015707 0ustar gcc-@BV@-multilib binary: binary-from-other-architecture gnat-4.8-4.8.2/debian/libstdc++-BV-doc.overrides0000644000000000000000000000015512173542725015654 0ustar libstdc++-@BV@-doc binary: hyphen-used-as-minus-sign libstdc++-@BV@-doc binary: manpage-has-bad-whatis-entry gnat-4.8-4.8.2/debian/lib64gomp1.symbols0000644000000000000000000000020612173542725014401 0ustar libgomp.so.1 lib64gomp1 #MINVER# #include "libgomp1.symbols.common" GOMP_atomic_end@GOMP_1.0 4.2.1 GOMP_atomic_start@GOMP_1.0 4.2.1 gnat-4.8-4.8.2/debian/libstdc++6.symbols.ppc640000644000000000000000000000066112173542725015315 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.64bit" #include "libstdc++6.symbols.128bit" #include "libstdc++6.symbols.excprop" _ZN9__gnu_cxx12__atomic_addEPVii@GLIBCXX_3.4 4.1.1 _ZN9__gnu_cxx18__exchange_and_addEPVii@GLIBCXX_3.4 4.1.1 #include "libstdc++6.symbols.glibcxxmath" #include "libstdc++6.symbols.ldbl.64bit" _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3.0~rc2 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3.0~rc2 gnat-4.8-4.8.2/debian/libgcc1.symbols.s390x0000644000000000000000000000660212173542725014714 0ustar libgcc_s.so.1 libgcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4.4@GCC_3.4.4 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.1.0@GCC_4.1.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.2@GLIBC_2.2 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __absvti2@GCC_3.4.4 1:4.1.1 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __addvti3@GCC_3.4.4 1:4.1.1 __ashlti3@GCC_3.0 1:4.1.1 __ashrti3@GCC_3.0 1:4.1.1 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbti2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzti2@GCC_3.4 1:4.1.1 __cmpti2@GCC_3.0 1:4.1.1 __ctzdi2@GCC_3.4 1:4.1.1 __ctzti2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.2 1:4.1.1 __deregister_frame_info@GLIBC_2.2 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divdc3@GCC_4.0.0 1:4.1.1 __divsc3@GCC_4.0.0 1:4.1.1 __divtc3@GCC_4.1.0 1:4.1.1 __divti3@GCC_3.0 1:4.1.1 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __ffsdi2@GCC_3.0 1:4.1.1 __ffsti2@GCC_3.0 1:4.1.1 __fixdfti@GCC_3.0 1:4.1.1 __fixsfti@GCC_3.0 1:4.1.1 __fixtfti@GCC_4.1.0 1:4.1.1 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfti@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfti@GCC_3.0 1:4.1.1 __fixunstfti@GCC_4.1.0 1:4.1.1 __floattidf@GCC_3.0 1:4.1.1 __floattisf@GCC_3.0 1:4.1.1 __floattitf@GCC_4.1.0 1:4.1.1 __floatuntidf@GCC_4.2.0 1:4.2.1 __floatuntisf@GCC_4.2.0 1:4.2.1 __floatuntitf@GCC_4.2.0 1:4.2.1 __frame_state_for@GLIBC_2.2 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __lshrti3@GCC_3.0 1:4.1.1 __modti3@GCC_3.0 1:4.1.1 __muldc3@GCC_4.0.0 1:4.1.1 __mulsc3@GCC_4.0.0 1:4.1.1 __multc3@GCC_4.1.0 1:4.1.1 __multi3@GCC_3.0 1:4.1.1 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulvti3@GCC_3.4.4 1:4.1.1 __negti2@GCC_3.0 1:4.1.1 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __negvti2@GCC_3.4.4 1:4.1.1 __paritydi2@GCC_3.4 1:4.1.1 __parityti2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountti2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.1.0 1:4.1.1 __register_frame@GLIBC_2.2 1:4.1.1 __register_frame_info@GLIBC_2.2 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.2 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.2 1:4.1.1 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __subvti3@GCC_3.4.4 1:4.1.1 __ucmpti2@GCC_3.0 1:4.1.1 __udivmodti4@GCC_3.0 1:4.1.1 __udivti3@GCC_3.0 1:4.1.1 __umodti3@GCC_3.0 1:4.1.1 gnat-4.8-4.8.2/debian/libstdc++6.symbols.hppa0000644000000000000000000000051712173542725015311 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.32bit" __gxx_personality_v0@CXXABI_1.3 4.1.1 #include "libstdc++6.symbols.excprop" # removed, see PR libstdc++/39491 __signbitl@GLIBCXX_3.4 4.2.1 #include "libstdc++6.symbols.glibcxxmath" _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3 gnat-4.8-4.8.2/debian/lib64atomic1.symbols0000644000000000000000000000015312173542725014714 0ustar libatomic.so.1 lib64atomic1 #MINVER# #include "libatomic1.symbols.common" #include "libatomic1.symbols.64" gnat-4.8-4.8.2/debian/libgfortran3.symbols.sh40000644000000000000000000000011612173542725015606 0ustar libgfortran.so.3 libgfortran3 #MINVER# #include "libgfortran3.symbols.common" gnat-4.8-4.8.2/debian/libgfortran3.symbols.100000644000000000000000000001020612173542725015331 0ustar __iso_c_binding_c_f_pointer_c10@GFORTRAN_1.0 4.3 __iso_c_binding_c_f_pointer_r10@GFORTRAN_1.0 4.3 _gfortran_arandom_r10@GFORTRAN_1.0 4.3 _gfortran_bessel_jn_r10@GFORTRAN_1.4 4.6 _gfortran_bessel_yn_r10@GFORTRAN_1.4 4.6 _gfortran_cpu_time_10@GFORTRAN_1.0 4.3 _gfortran_erfc_scaled_r10@GFORTRAN_1.1 4.4.0 _gfortran_exponent_r10@GFORTRAN_1.0 4.3 _gfortran_fraction_r10@GFORTRAN_1.0 4.3 _gfortran_matmul_c10@GFORTRAN_1.0 4.3 _gfortran_matmul_r10@GFORTRAN_1.0 4.3 _gfortran_maxloc0_4_r10@GFORTRAN_1.0 4.3 _gfortran_maxloc0_8_r10@GFORTRAN_1.0 4.3 _gfortran_maxloc1_4_r10@GFORTRAN_1.0 4.3 _gfortran_maxloc1_8_r10@GFORTRAN_1.0 4.3 _gfortran_maxval_r10@GFORTRAN_1.0 4.3 _gfortran_minloc0_4_r10@GFORTRAN_1.0 4.3 _gfortran_minloc0_8_r10@GFORTRAN_1.0 4.3 _gfortran_minloc1_4_r10@GFORTRAN_1.0 4.3 _gfortran_minloc1_8_r10@GFORTRAN_1.0 4.3 _gfortran_minval_r10@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_4_r10@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_8_r10@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_4_r10@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_8_r10@GFORTRAN_1.0 4.3 _gfortran_mmaxval_r10@GFORTRAN_1.0 4.3 _gfortran_mminloc0_4_r10@GFORTRAN_1.0 4.3 _gfortran_mminloc0_8_r10@GFORTRAN_1.0 4.3 _gfortran_mminloc1_4_r10@GFORTRAN_1.0 4.3 _gfortran_mminloc1_8_r10@GFORTRAN_1.0 4.3 _gfortran_mminval_r10@GFORTRAN_1.0 4.3 _gfortran_mproduct_c10@GFORTRAN_1.0 4.3 _gfortran_mproduct_r10@GFORTRAN_1.0 4.3 _gfortran_msum_c10@GFORTRAN_1.0 4.3 _gfortran_msum_r10@GFORTRAN_1.0 4.3 _gfortran_nearest_r10@GFORTRAN_1.0 4.3 _gfortran_pow_c10_i4@GFORTRAN_1.0 4.3 _gfortran_pow_c10_i8@GFORTRAN_1.0 4.3 _gfortran_pow_r10_i8@GFORTRAN_1.0 4.3 _gfortran_product_c10@GFORTRAN_1.0 4.3 _gfortran_product_r10@GFORTRAN_1.0 4.3 _gfortran_random_r10@GFORTRAN_1.0 4.3 _gfortran_reshape_c10@GFORTRAN_1.0 4.3 _gfortran_reshape_r10@GFORTRAN_1.0 4.3 _gfortran_rrspacing_r10@GFORTRAN_1.0 4.3 _gfortran_set_exponent_r10@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_4_r10@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_8_r10@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_4_r10@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_8_r10@GFORTRAN_1.0 4.3 _gfortran_smaxval_r10@GFORTRAN_1.0 4.3 _gfortran_sminloc0_4_r10@GFORTRAN_1.0 4.3 _gfortran_sminloc0_8_r10@GFORTRAN_1.0 4.3 _gfortran_sminloc1_4_r10@GFORTRAN_1.0 4.3 _gfortran_sminloc1_8_r10@GFORTRAN_1.0 4.3 _gfortran_sminval_r10@GFORTRAN_1.0 4.3 _gfortran_spacing_r10@GFORTRAN_1.0 4.3 _gfortran_specific__abs_c10@GFORTRAN_1.0 4.3 _gfortran_specific__abs_r10@GFORTRAN_1.0 4.3 _gfortran_specific__acos_r10@GFORTRAN_1.0 4.3 _gfortran_specific__acosh_r10@GFORTRAN_1.0 4.3 _gfortran_specific__aimag_c10@GFORTRAN_1.0 4.3 _gfortran_specific__aint_r10@GFORTRAN_1.0 4.3 _gfortran_specific__anint_r10@GFORTRAN_1.0 4.3 _gfortran_specific__asin_r10@GFORTRAN_1.0 4.3 _gfortran_specific__asinh_r10@GFORTRAN_1.0 4.3 _gfortran_specific__atan2_r10@GFORTRAN_1.0 4.3 _gfortran_specific__atan_r10@GFORTRAN_1.0 4.3 _gfortran_specific__atanh_r10@GFORTRAN_1.0 4.3 _gfortran_specific__conjg_10@GFORTRAN_1.0 4.3 _gfortran_specific__cos_c10@GFORTRAN_1.0 4.3 _gfortran_specific__cos_r10@GFORTRAN_1.0 4.3 _gfortran_specific__cosh_r10@GFORTRAN_1.0 4.3 _gfortran_specific__dim_r10@GFORTRAN_1.0 4.3 _gfortran_specific__exp_c10@GFORTRAN_1.0 4.3 _gfortran_specific__exp_r10@GFORTRAN_1.0 4.3 _gfortran_specific__log10_r10@GFORTRAN_1.0 4.3 _gfortran_specific__log_c10@GFORTRAN_1.0 4.3 _gfortran_specific__log_r10@GFORTRAN_1.0 4.3 _gfortran_specific__mod_r10@GFORTRAN_1.0 4.3 _gfortran_specific__nint_4_10@GFORTRAN_1.0 4.3 _gfortran_specific__nint_8_10@GFORTRAN_1.0 4.3 _gfortran_specific__sign_r10@GFORTRAN_1.0 4.3 _gfortran_specific__sin_c10@GFORTRAN_1.0 4.3 _gfortran_specific__sin_r10@GFORTRAN_1.0 4.3 _gfortran_specific__sinh_r10@GFORTRAN_1.0 4.3 _gfortran_specific__sqrt_c10@GFORTRAN_1.0 4.3 _gfortran_specific__sqrt_r10@GFORTRAN_1.0 4.3 _gfortran_specific__tan_r10@GFORTRAN_1.0 4.3 _gfortran_specific__tanh_r10@GFORTRAN_1.0 4.3 _gfortran_sproduct_c10@GFORTRAN_1.0 4.3 _gfortran_sproduct_r10@GFORTRAN_1.0 4.3 _gfortran_ssum_c10@GFORTRAN_1.0 4.3 _gfortran_ssum_r10@GFORTRAN_1.0 4.3 _gfortran_sum_c10@GFORTRAN_1.0 4.3 _gfortran_sum_r10@GFORTRAN_1.0 4.3 _gfortran_transpose_c10@GFORTRAN_1.0 4.3 _gfortran_transpose_r10@GFORTRAN_1.0 4.3 gnat-4.8-4.8.2/debian/libgfortran3.symbols.armhf0000644000000000000000000000011612173542725016205 0ustar libgfortran.so.3 libgfortran3 #MINVER# #include "libgfortran3.symbols.common" gnat-4.8-4.8.2/debian/rules.parameters0000644000000000000000000000151512320221352014306 0ustar # configuration parameters taken from upstream source files GCC_VERSION := 4.8.2 NEXT_GCC_VERSION := 4.8.3 BASE_VERSION := 4.8 SOURCE_VERSION := 4.8.2-8ubuntu2 DEB_VERSION := 4.8.2-8ubuntu2 DEB_EVERSION := 1:4.8.2-8ubuntu2 DEB_GDC_VERSION := DEB_SOVERSION := 4.8 DEB_SOEVERSION := 1:4.8 DEB_LIBGCC_SOVERSION := DEB_LIBGCC_VERSION := 1:4.8.2-8ubuntu2 DEB_STDCXX_SOVERSION := 4.8 DEB_GCJ_SOVERSION := 4.8 PKG_GCJ_EXT := 14 PKG_LIBGCJ_EXT := 14 DEB_GOMP_SOVERSION := 4.8 DEB_GCCMATH_SOVERSION := 4.8 GCC_SONAME := 1 CXX_SONAME := 6 FORTRAN_SONAME := 3 OBJC_SONAME := 4 GCJ_SONAME := 14 GDC_VERSION := GNAT_VERSION := 4.8 GNAT_SONAME := 4.8 FFI_SONAME := 4 SSP_SONAME := 0 GOMP_SONAME := 1 ITM_SONAME := 1 ATOMIC_SONAME := BTRACE_SONAME := ASAN_SONAME := 0 TSAN_SONAME := 0 QMATH_SONAME := GCCMATH_SONAME := GO_SONAME := LIBC_DEP := libc6 gnat-4.8-4.8.2/debian/lib32gfortran3.overrides0000644000000000000000000000014512173542725015572 0ustar # automake gets it wrong for the multilib build lib32gfortran3 binary: binary-or-shlib-defines-rpath gnat-4.8-4.8.2/debian/lib32stdc++CXX.postinst0000644000000000000000000000031312173542725015211 0ustar #! /bin/sh -e case "$1" in configure) docdir=/usr/share/doc/lib32stdc++@CXX@ if [ -d $docdir ] && [ ! -h $docdir ]; then rm -rf $docdir ln -s gcc-@BV@-base $docdir fi esac #DEBHELPER# gnat-4.8-4.8.2/debian/rules.sonames0000644000000000000000000000725512253102533013623 0ustar ifneq ($(vafilt_defined),1) $(error rules.defs must be included before rules.sonames) endif ifeq (,$(wildcard debian/soname-cache)) SONAME_VARS := $(shell \ cache=debian/soname-cache; \ rm -f $$cache; \ v=`awk -F= '/^libtool_VERSION/ {split($$2,v,":"); print v[1]}' \ $(srcdir)/libstdc++-v3/acinclude.m4`; \ echo CXX_SONAME=$$v >> $$cache; \ v=`awk -F= '/^VERSION/ {split($$2,v,":"); print v[1]}' \ $(srcdir)/libobjc/configure.ac`; \ echo OBJC_SONAME=$$v >> $$cache; \ v=`tail -1 $(srcdir)/libgfortran/libtool-version | cut -d: -f1`; \ echo FORTRAN_SONAME=$$v >> $$cache; \ v=`tail -1 $(srcdir)/libssp/libtool-version | cut -d: -f1`; \ echo SSP_SONAME=$$v >> $$cache; \ v=`tail -1 $(srcdir)/libjava/libtool-version | cut -d: -f1`; \ echo GCJ_SONAME=$$v >> $$cache; \ if [ "$$v" -ge 70 ]; then \ echo GCJ_SONAME1=`echo $$v | sed 's/.$$//'` >> $$cache; \ echo GCJ_SONAME2=`echo $$v | sed 's/.*\(.\)$$/\1/'` >> $$cache; \ else \ echo GCJ_SONAME1=$$v >> $$cache; \ echo GCJ_SONAME2= >> $$cache; \ fi; \ v=`tail -1 $(srcdir)/libffi/libtool-version | cut -d: -f1`; \ echo FFI_SONAME=$$v >> $$cache; \ v=`awk -F= '/^libtool_VERSION/ {split($$2,v,":"); print v[1]}' \ $(srcdir)/libgomp/configure.ac`; \ echo GOMP_SONAME=$$v >> $$cache; \ v=`tail -1 $(srcdir)/libsanitizer/libtool-version | cut -d: -f1`; \ echo ASAN_SONAME=$$v >> $$cache; \ v=`tail -1 $(srcdir)/libsanitizer/tsan/libtool-version | cut -d: -f1`; \ echo TSAN_SONAME=$$v >> $$cache; \ if [ "$(with_atomic)" = yes ]; then \ v=`awk -F= '/^libtool_VERSION/ {split($$2,v,":"); print v[1]}' \ $(srcdir)/libatomic/configure.ac`; \ echo ATOMIC_SONAME=$$v >> $$cache; \ fi; \ if [ "$(with_backtrace)" = yes ]; then \ v=`awk -F= '/^libtool_VERSION/ {split($$2,v,":"); print v[1]}' \ $(srcdir)/libbacktrace/configure.ac`; \ echo BTRACE_SONAME=$$v >> $$cache; \ fi; \ if [ "$(with_qmath)" = yes ]; then \ v=`tail -1 $(srcdir)/libquadmath/libtool-version | cut -d: -f1`; \ echo QUADMATH_SONAME=$$v >> $$cache; \ fi; \ if [ "$(with_libgmath)" = yes ]; then \ v=`tail -1 $(srcdir)/libgcc-math/libtool-version | cut -d: -f1`; \ echo GCCMATH_SONAME=$$v >> $$cache; \ fi; \ v=`grep '[^_]Library_Version.*:' $(srcdir)/gcc/ada/gnatvsn.ads \ | sed -e 's/.*"\([^"]*\)".*/\1/'`; \ echo GNAT_SONAME=$$v >> $$cache; \ if [ "$(with_go)" = yes ]; then \ v=`awk -F= '/^libtool_VERSION/ {split($$2,v,":"); print v[1]}' \ $(srcdir)/libgo/configure.ac`; \ echo GO_SONAME=$$v >> $$cache; \ fi; \ echo ITM_SONAME=1 >> $$cache; \ cat $$cache) else SONAME_VARS := $(shell cat debian/soname-cache) endif CXX_SONAME = $(call vafilt,$(SONAME_VARS),CXX_SONAME) OBJC_SONAME = $(call vafilt,$(SONAME_VARS),OBJC_SONAME) FORTRAN_SONAME = $(call vafilt,$(SONAME_VARS),FORTRAN_SONAME) SSP_SONAME = $(call vafilt,$(SONAME_VARS),SSP_SONAME) GCJ_SONAME = $(call vafilt,$(SONAME_VARS),GCJ_SONAME) GCJ_SONAME1 = $(call vafilt,$(SONAME_VARS),GCJ_SONAME1) GCJ_SONAME2 = $(call vafilt,$(SONAME_VARS),GCJ_SONAME2) FFI_SONAME = $(call vafilt,$(SONAME_VARS),FFI_SONAME) GOMP_SONAME = $(call vafilt,$(SONAME_VARS),GOMP_SONAME) ATOMIC_SONAME = $(call vafilt,$(SONAME_VARS),ATOMIC_SONAME) BTRACE_SONAME = $(call vafilt,$(SONAME_VARS),BTRACE_SONAME) ASAN_SONAME = $(call vafilt,$(SONAME_VARS),ASAN_SONAME) TSAN_SONAME = $(call vafilt,$(SONAME_VARS),TSAN_SONAME) GCCMATH_SONAME = $(call vafilt,$(SONAME_VARS),GCCMATH_SONAME) QUADMATH_SONAME = $(call vafilt,$(SONAME_VARS),QUADMATH_SONAME) GNAT_SONAME = $(call vafilt,$(SONAME_VARS),GNAT_SONAME) GO_SONAME = $(call vafilt,$(SONAME_VARS),GO_SONAME) ITM_SONAME = $(call vafilt,$(SONAME_VARS),ITM_SONAME) # alias GFORTRAN_SONAME = $(FORTRAN_SONAME) STDC++_SONAME = $(CXX_SONAME) gnat-4.8-4.8.2/debian/gij-wrapper-BV0000644000000000000000000000530012173542725013562 0ustar #!/usr/bin/perl -w # # Starts the GNU Java interpreter. # # Command-line arguments should be in the style of Sun's Java runtime; # these will be converted to gij arguments before being passed to the # gij itself. # # The Debian JNI module directory and any other specified JNI # directories will be included on the JNI search path. # # Copyright (C) 2002-2003 by Ben Burton # Based on the original gij-wrapper-3.2 shell script. use strict; # The real Java runtime: my $javaRuntime = '/usr/bin/gij-@BV@'; # The debian JNI module directory: my $debianJNIDir = '/usr/lib/jni'; # The command-line arguments to pass to the real Java runtime: my @commandLine; # The full JNI search path to use: my $JNIPath = ''; # Build the command-line from the arguments given. my $parsingOptions = 1; # Flag used to copy argument to -classpath or -cp. my $copyNext = 0; foreach my $arg (@ARGV) { if (not $parsingOptions) { # We're done parsing options; just copy all remaining arguments directly. push @commandLine, $arg; next; } if ($copyNext) { push @commandLine, $arg; $copyNext = 0; next; } # Try to interpret Sun-style options. if ($arg eq '-version') { push @commandLine, '--version'; } elsif ($arg eq '-h' or $arg eq '-help') { push @commandLine, '--help'; } elsif ($arg eq '-cp' or $arg eq '--cp') { push @commandLine, '-cp'; $copyNext = 1; } elsif ($arg eq '-classpath' or $arg eq '--classpath') { push @commandLine, '-classpath'; $copyNext = 1; } elsif ($arg =~ /^-Djava.library.path=(.+)$/) { # A component of the JNI search path has been given. if ($JNIPath) { $JNIPath = $JNIPath . ':' . $1; } else { $JNIPath = $1; } } elsif ($arg eq '-jar' or $arg =~ /^-D/) { # Copy the argument directly. push @commandLine, $arg; } elsif ($arg =~ /^-/) { # An unrecognised option has been passed - just drop it. } else { # Some non-option argument has been given. # Stop parsing options at this point. push @commandLine, $arg; $parsingOptions = 0; } } # Add the debian JNI module directory to the JNI search path if it's not # already there. if ($JNIPath !~ /(^|:)$debianJNIDir($|:)/) { if ($JNIPath) { $JNIPath = $JNIPath . ':' . $debianJNIDir; } else { $JNIPath = $debianJNIDir; } } # Use environment variable $LTDL_LIBRARY_PATH to store the JNI path, # since gij uses libltdl to dlopen JNI modules. if ($ENV{LTDL_LIBRARY_PATH}) { $ENV{LTDL_LIBRARY_PATH} = $ENV{LTDL_LIBRARY_PATH} . ':' . $JNIPath; } else { $ENV{LTDL_LIBRARY_PATH} = $JNIPath; } # Call the real Java runtime. my @fullCommandLine = ( $javaRuntime ); push @fullCommandLine, @commandLine; exec @fullCommandLine or exit(1); gnat-4.8-4.8.2/debian/libstdc++6.symbols.glibcxxmath0000644000000000000000000000107012173542725016666 0ustar acosl@GLIBCXX_3.4.3 4.1.1 asinl@GLIBCXX_3.4.3 4.1.1 atan2l@GLIBCXX_3.4 4.1.1 atanl@GLIBCXX_3.4.3 4.1.1 ceill@GLIBCXX_3.4.3 4.1.1 coshl@GLIBCXX_3.4 4.1.1 cosl@GLIBCXX_3.4 4.1.1 expl@GLIBCXX_3.4 4.1.1 floorl@GLIBCXX_3.4.3 4.1.1 fmodl@GLIBCXX_3.4.3 4.1.1 frexpl@GLIBCXX_3.4.3 4.1.1 hypotl@GLIBCXX_3.4 4.1.1 ldexpl@GLIBCXX_3.4.3 4.1.1 log10l@GLIBCXX_3.4 4.1.1 logl@GLIBCXX_3.4 4.1.1 modfl@GLIBCXX_3.4.3 4.1.1 powl@GLIBCXX_3.4 4.1.1 sinhl@GLIBCXX_3.4 4.1.1 sinl@GLIBCXX_3.4 4.1.1 sqrtl@GLIBCXX_3.4 4.1.1 tanhl@GLIBCXX_3.4 4.1.1 tanl@GLIBCXX_3.4 4.1.1 gnat-4.8-4.8.2/debian/libquadmath0.symbols.common0000644000000000000000000000436412173542725016370 0ustar QUADMATH_1.0@QUADMATH_1.0 4.6 acoshq@QUADMATH_1.0 4.6 acosq@QUADMATH_1.0 4.6 asinhq@QUADMATH_1.0 4.6 asinq@QUADMATH_1.0 4.6 atan2q@QUADMATH_1.0 4.6 atanhq@QUADMATH_1.0 4.6 atanq@QUADMATH_1.0 4.6 cabsq@QUADMATH_1.0 4.6 cacoshq@QUADMATH_1.0 4.6 cacosq@QUADMATH_1.0 4.6 cargq@QUADMATH_1.0 4.6 casinhq@QUADMATH_1.0 4.6 casinq@QUADMATH_1.0 4.6 catanhq@QUADMATH_1.0 4.6 catanq@QUADMATH_1.0 4.6 cbrtq@QUADMATH_1.0 4.6 ccoshq@QUADMATH_1.0 4.6 ccosq@QUADMATH_1.0 4.6 ceilq@QUADMATH_1.0 4.6 cexpiq@QUADMATH_1.0 4.6 cexpq@QUADMATH_1.0 4.6 cimagq@QUADMATH_1.0 4.6 clog10q@QUADMATH_1.0 4.6 clogq@QUADMATH_1.0 4.6 conjq@QUADMATH_1.0 4.6 copysignq@QUADMATH_1.0 4.6 coshq@QUADMATH_1.0 4.6 cosq@QUADMATH_1.0 4.6 cpowq@QUADMATH_1.0 4.6 cprojq@QUADMATH_1.0 4.6 crealq@QUADMATH_1.0 4.6 csinhq@QUADMATH_1.0 4.6 csinq@QUADMATH_1.0 4.6 csqrtq@QUADMATH_1.0 4.6 ctanhq@QUADMATH_1.0 4.6 ctanq@QUADMATH_1.0 4.6 erfcq@QUADMATH_1.0 4.6 erfq@QUADMATH_1.0 4.6 expm1q@QUADMATH_1.0 4.6 expq@QUADMATH_1.0 4.6 fabsq@QUADMATH_1.0 4.6 fdimq@QUADMATH_1.0 4.6 finiteq@QUADMATH_1.0 4.6 floorq@QUADMATH_1.0 4.6 fmaq@QUADMATH_1.0 4.6 fmaxq@QUADMATH_1.0 4.6 fminq@QUADMATH_1.0 4.6 fmodq@QUADMATH_1.0 4.6 frexpq@QUADMATH_1.0 4.6 hypotq@QUADMATH_1.0 4.6 ilogbq@QUADMATH_1.0 4.6 isinfq@QUADMATH_1.0 4.6 isnanq@QUADMATH_1.0 4.6 j0q@QUADMATH_1.0 4.6 j1q@QUADMATH_1.0 4.6 jnq@QUADMATH_1.0 4.6 ldexpq@QUADMATH_1.0 4.6 lgammaq@QUADMATH_1.0 4.6 llrintq@QUADMATH_1.0 4.6 llroundq@QUADMATH_1.0 4.6 log10q@QUADMATH_1.0 4.6 log1pq@QUADMATH_1.0 4.6 log2q@QUADMATH_1.0 4.6 logq@QUADMATH_1.0 4.6 lrintq@QUADMATH_1.0 4.6 lroundq@QUADMATH_1.0 4.6 modfq@QUADMATH_1.0 4.6 nanq@QUADMATH_1.0 4.6 nearbyintq@QUADMATH_1.0 4.6 nextafterq@QUADMATH_1.0 4.6 powq@QUADMATH_1.0 4.6 quadmath_snprintf@QUADMATH_1.0 4.6 remainderq@QUADMATH_1.0 4.6 remquoq@QUADMATH_1.0 4.6 rintq@QUADMATH_1.0 4.6 roundq@QUADMATH_1.0 4.6 scalblnq@QUADMATH_1.0 4.6 scalbnq@QUADMATH_1.0 4.6 signbitq@QUADMATH_1.0 4.6 sincosq@QUADMATH_1.0 4.6 sinhq@QUADMATH_1.0 4.6 sinq@QUADMATH_1.0 4.6 sqrtq@QUADMATH_1.0 4.6 strtoflt128@QUADMATH_1.0 4.6 tanhq@QUADMATH_1.0 4.6 tanq@QUADMATH_1.0 4.6 tgammaq@QUADMATH_1.0 4.6 truncq@QUADMATH_1.0 4.6 y0q@QUADMATH_1.0 4.6 y1q@QUADMATH_1.0 4.6 ynq@QUADMATH_1.0 4.6 gnat-4.8-4.8.2/debian/libasan0.symbols.640000644000000000000000000000013412173542725014436 0ustar _Znam@Base 4.8 _ZnamRKSt9nothrow_t@Base 4.8 _Znwm@Base 4.8 _ZnwmRKSt9nothrow_t@Base 4.8 gnat-4.8-4.8.2/debian/gcc-BV-source.overrides0000644000000000000000000000027312173542725015372 0ustar gcc-@BV@-source: changelog-file-not-compressed # these are patches taken over unmodified from 4.3 gcc-@BV@-source: script-not-executable gcc-@BV@-source: shell-script-fails-syntax-check gnat-4.8-4.8.2/debian/libgcjGCJ-awt.overrides0000644000000000000000000000017412173542725015402 0ustar # pick up the exact version, in case another gcj version is installed libgcj@GCJ@-awt binary: binary-or-shlib-defines-rpath gnat-4.8-4.8.2/debian/libstdc++6.symbols.arm0000644000000000000000000000035712173542725015142 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.32bit" __gxx_personality_sj0@CXXABI_1.3 4.1.1 #include "libstdc++6.symbols.glibcxxmath" _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3.0 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3.0 gnat-4.8-4.8.2/debian/lib32asan0.symbols0000644000000000000000000000014312173542725014353 0ustar libasan.so.0 lib32asan0 #MINVER# #include "libasan0.symbols.common" #include "libasan0.symbols.32" gnat-4.8-4.8.2/debian/libgcc1.symbols.kfreebsd-amd640000644000000000000000000001035012173542725016517 0ustar libgcc_s.so.1 libgcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4.4@GCC_3.4.4 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.7.0@GCC_4.7.0 1:4.7 GCC_4.8.0@GCC_4.8.0 1:4.8 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __absvti2@GCC_3.4.4 1:4.1.1 __addtf3@GCC_4.3.0 1:4.3 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __addvti3@GCC_3.4.4 1:4.1.1 __ashlti3@GCC_3.0 1:4.1.1 __ashrti3@GCC_3.0 1:4.1.1 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clzdi2@GCC_3.4 1:4.1.1 __clzti2@GCC_3.4 1:4.1.1 __cmpti2@GCC_3.0 1:4.1.1 __cpu_indicator_init@GCC_4.8.0 1:4.8 __cpu_model@GCC_4.8.0 1:4.8 __ctzdi2@GCC_3.4 1:4.1.1 __ctzti2@GCC_3.4 1:4.1.1 __deregister_frame@GCC_3.0 1:4.1.1 __deregister_frame_info@GCC_3.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divdc3@GCC_4.0.0 1:4.1.1 __divsc3@GCC_4.0.0 1:4.1.1 __divtc3@GCC_4.0.0 1:4.3 __divtf3@GCC_4.3.0 1:4.3 __divti3@GCC_3.0 1:4.1.1 __divxc3@GCC_4.0.0 1:4.1.1 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __eqtf2@GCC_4.3.0 1:4.3 __extenddftf2@GCC_4.3.0 1:4.3 __extendsftf2@GCC_4.3.0 1:4.3 __extendxftf2@GCC_4.3.0 1:4.3 __ffsdi2@GCC_3.0 1:4.1.1 __ffsti2@GCC_3.0 1:4.1.1 __fixdfti@GCC_3.0 1:4.1.1 __fixsfti@GCC_3.0 1:4.1.1 __fixtfdi@GCC_4.3.0 1:4.3 __fixtfsi@GCC_4.3.0 1:4.3 __fixtfti@GCC_4.3.0 1:4.3 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfti@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfti@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_4.3.0 1:4.3 __fixunstfsi@GCC_4.3.0 1:4.3 __fixunstfti@GCC_4.3.0 1:4.3 __fixunsxfdi@GCC_3.0 1:4.1.1 __fixunsxfti@GCC_3.0 1:4.1.1 __fixxfti@GCC_3.0 1:4.1.1 __floatditf@GCC_4.3.0 1:4.3 __floatsitf@GCC_4.3.0 1:4.3 __floattidf@GCC_3.0 1:4.1.1 __floattisf@GCC_3.0 1:4.1.1 __floattitf@GCC_4.3.0 1:4.3 __floattixf@GCC_3.0 1:4.1.1 __floatunditf@GCC_4.3.0 1:4.3 __floatunsitf@GCC_4.3.0 1:4.3 __floatuntidf@GCC_4.2.0 1:4.2.1 __floatuntisf@GCC_4.2.0 1:4.2.1 __floatuntitf@GCC_4.3.0 1:4.3 __floatuntixf@GCC_4.2.0 1:4.2.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __getf2@GCC_4.3.0 1:4.3 __gttf2@GCC_3.0 1:4.3 __letf2@GCC_4.3.0 1:4.3 __lshrti3@GCC_3.0 1:4.1.1 __lttf2@GCC_3.0 1:4.3 __modti3@GCC_3.0 1:4.1.1 __muldc3@GCC_4.0.0 1:4.1.1 __mulsc3@GCC_4.0.0 1:4.1.1 __multc3@GCC_4.0.0 1:4.3 __multf3@GCC_4.3.0 1:4.3 __multi3@GCC_3.0 1:4.1.1 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulvti3@GCC_3.4.4 1:4.1.1 __mulxc3@GCC_4.0.0 1:4.1.1 __negtf2@GCC_4.3.0 1:4.3 __negti2@GCC_3.0 1:4.1.1 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __negvti2@GCC_3.4.4 1:4.1.1 __netf2@GCC_3.0 1:4.3 __paritydi2@GCC_3.4 1:4.1.1 __parityti2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountti2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.0.0 1:4.3 __powixf2@GCC_4.0.0 1:4.1.1 __register_frame@GCC_3.0 1:4.1.1 __register_frame_info@GCC_3.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GCC_3.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GCC_3.0 1:4.1.1 __subtf3@GCC_4.3.0 1:4.3 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __subvti3@GCC_3.4.4 1:4.1.1 __trunctfdf2@GCC_4.3.0 1:4.3 __trunctfsf2@GCC_4.3.0 1:4.3 __trunctfxf2@GCC_4.3.0 1:4.3 __ucmpti2@GCC_3.0 1:4.1.1 __udivmodti4@GCC_3.0 1:4.1.1 __udivti3@GCC_3.0 1:4.1.1 __umodti3@GCC_3.0 1:4.1.1 __unordtf2@GCC_4.3.0 1:4.3 gnat-4.8-4.8.2/debian/libstdc++6.symbols.kfreebsd-i3860000644000000000000000000000034612173542725016635 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.32bit" #include "libstdc++6.symbols.excprop" __gxx_personality_v0@CXXABI_1.3 4.1.1 _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3 gnat-4.8-4.8.2/debian/libitm1.symbols.32bit0000644000000000000000000000020012173542725014772 0ustar _ZGTtnaj@LIBITM_1.0 4.7 _ZGTtnajRKSt9nothrow_t@LIBITM_1.0 4.7 _ZGTtnwj@LIBITM_1.0 4.7 _ZGTtnwjRKSt9nothrow_t@LIBITM_1.0 4.7 gnat-4.8-4.8.2/debian/gcc-BV-doc.doc-base.qmath0000644000000000000000000000073712173542725015430 0ustar Document: gcc-@BV@-qmath Title: The GCC Quad-Precision Math Library (for GCC @BV@) Author: Various Abstract: This manual documents the usage of libquadmath, the GCC Quad-Precision Math Library Application Programming Interface (API). Section: Programming Format: html Index: /usr/share/doc/gcc-@BV@-base/libquadmath.html Files: /usr/share/doc/gcc-@BV@-base/libquadmath.html Format: info Index: /usr/share/info/libquadmath-@BV@.info.gz Files: /usr/share/info/libquadmath-@BV@* gnat-4.8-4.8.2/debian/lib64stdc++CXX.postinst0000644000000000000000000000031312173542725015216 0ustar #! /bin/sh -e case "$1" in configure) docdir=/usr/share/doc/lib64stdc++@CXX@ if [ -d $docdir ] && [ ! -h $docdir ]; then rm -rf $docdir ln -s gcc-@BV@-base $docdir fi esac #DEBHELPER# gnat-4.8-4.8.2/debian/libgfortran3.symbols.mips0000644000000000000000000000011612173542725016060 0ustar libgfortran.so.3 libgfortran3 #MINVER# #include "libgfortran3.symbols.common" gnat-4.8-4.8.2/debian/libgfortran3.symbols.kfreebsd-amd640000644000000000000000000000026712173542725017615 0ustar libgfortran.so.3 libgfortran3 #MINVER# #include "libgfortran3.symbols.common" #include "libgfortran3.symbols.10" #include "libgfortran3.symbols.16" #include "libgfortran3.symbols.64" gnat-4.8-4.8.2/debian/relink0000644000000000000000000000347512173542726012326 0ustar #! /bin/sh # # Relink GNAT utilities using the shared library # set -e pwd=`pwd` # why? chmod a-w build/gcc/ada/rts/*.ali rm -rf tmp ln -s $pwd/build/gcc/ada/rts/libgnat.so.1 tmp/libgnat.so LD_LIBRARY_PATH=$pwd/tmp export LD_LIBRARY_PATH PATH=$pwd/debian:$pwd/tmp:$PATH export PATH echo "#! /bin/sh" > tmp/dgcc echo "$pwd/build/gcc/xgcc -B$pwd/build/gcc/ "'"$@"' >> tmp/dgcc chmod 755 tmp/dgcc echo "#! /bin/sh" > tmp/dgnatlink echo "$pwd/build/gcc/gnatlink --GCC=dgcc "'"$@"' >> tmp/dgnatlink chmod 755 tmp/dgnatlink GMCMD="$pwd/build/gcc/gnatmake -I- -Irts -I. -a -m --GNATBIND=$pwd/build/gcc/gnatbind --GNATLINK=dgnatlink --GCC=dgcc" #cd $pwd/build/gcc/ada #make CFLAGS="-O2" CC="../xgcc -B../" STAGE_PREFIX=../ a-link.o a-gmem.o #cd $pwd [ -f build/gcc/gnatmake.old ] || cp -p build/gcc/gnatmake build/gcc/gnatmake.old [ -f build/gcc/gnatlink.old ] || cp -p build/gcc/gnatlink build/gcc/gnatlink.old make -C build/gcc/ada \ CFLAGS='-gnatp -gnata -O2 ' \ ADA_INCLUDES="-I." \ CC="../xgcc -B../" \ STAGE_PREFIX=../ \ ../gnatmake ../gnatlink mv gnatmake bgnatmake mv gnatlink bgnatlink exit 0 cd build/gcc/ada for i in ../gnatchop ../gnatcmd \ ../gnatkr ../gnatlbr \ ../gnatls ../gnatmake \ ../gnatprep ../gnatpsys \ ../gnatxref ../gnatfind do rm -f $i $GMCMD -O2 -gnatp -o $i `basename $i`.adb -largs -L.. done rm -f ../gnatmem $GMCMD -O2 -gnatp -o ../gnatmem gnatmem.adb -largs -L.. a-gmem.o $GMCMD -O2 -gnatp -o ../gnatlink gnatlink -largs -L.. a-link.o rm -f ../gnatpsta make CFLAGS="-O2" CC="../xgcc -B../" a-gettty.o a-deftar.o $GMCMD -O2 -gnatp -o ../gnatpsta gnatpsta -largs -L.. a-gettty.o a-deftar.o rm -f ../gnatbl make CFLAGS="-O2" CC="../xgcc -B../" gnatbl.o ../xgcc -B../ -o ../gnatbl gnatbl.o -L.. -lgnat rm -f ../bgnatmake ../bgnatlink ../debian/dgcc ../debian/dgnatlink chmod +w rts/*.ali gnat-4.8-4.8.2/debian/libx32asan0.overrides0000644000000000000000000000014212173542725015054 0ustar # automake gets it wrong for the multilib build libx32asan0 binary: binary-or-shlib-defines-rpath gnat-4.8-4.8.2/debian/gcj-BV-jre-headless.overrides0000644000000000000000000000041012173542725016440 0ustar # pick up the exact version, in case another gcj version is installed gcj-@BV@-jre-headless binary: binary-or-shlib-defines-rpath # don't strip the binaries, keep the libgcj13-dbg package Multi-Arch: same gcj-@BV@-jre-headless binary: unstripped-binary-or-object gnat-4.8-4.8.2/debian/lib64objc4.symbols0000644000000000000000000000015212173542725014357 0ustar libobjc.so.4 lib64objc4 #MINVER# #include "libobjc4.symbols.common" __gnu_objc_personality_v0@Base 4.2.1 gnat-4.8-4.8.2/debian/libgcc1.symbols.alpha0000644000000000000000000000662512173542725015120 0ustar libgcc_s.so.1 libgcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4.4@GCC_3.4.4 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.7.0@GCC_4.7.0 1:4.7 GCC_LDBL_4.0.0@GCC_LDBL_4.0.0 1:4.2.1 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __absvti2@GCC_3.4.4 1:4.1.1 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __addvti3@GCC_3.4.4 1:4.1.1 __ashlti3@GCC_3.0 1:4.1.1 __ashrti3@GCC_3.0 1:4.1.1 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbti2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzti2@GCC_3.4 1:4.1.1 __cmpti2@GCC_3.0 1:4.1.1 __ctzdi2@GCC_3.4 1:4.1.1 __ctzti2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divdc3@GCC_4.0.0 1:4.1.1 __divsc3@GCC_4.0.0 1:4.1.1 __divtc3@GCC_LDBL_4.0.0 1:4.2.1 __divti3@GCC_3.0 1:4.1.1 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __ffsdi2@GCC_3.0 1:4.1.1 __ffsti2@GCC_3.0 1:4.1.1 __fixdfti@GCC_3.0 1:4.1.1 __fixsfti@GCC_3.0 1:4.1.1 __fixtfti@GCC_3.0 1:4.2.1 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfti@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfti@GCC_3.0 1:4.1.1 __fixunstfti@GCC_3.0 1:4.2.1 __floattidf@GCC_3.0 1:4.1.1 __floattisf@GCC_3.0 1:4.1.1 __floattitf@GCC_3.0 1:4.2.1 __floatuntidf@GCC_4.2.0 1:4.2.1 __floatuntisf@GCC_4.2.0 1:4.2.1 __floatuntitf@GCC_4.2.0 1:4.2.1 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __lshrti3@GCC_3.0 1:4.1.1 __modti3@GCC_3.0 1:4.1.1 __muldc3@GCC_4.0.0 1:4.1.1 __mulsc3@GCC_4.0.0 1:4.1.1 __multc3@GCC_LDBL_4.0.0 1:4.2.1 __multi3@GCC_3.0 1:4.1.1 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulvti3@GCC_3.4.4 1:4.1.1 __negti2@GCC_3.0 1:4.1.1 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __negvti2@GCC_3.4.4 1:4.1.1 __paritydi2@GCC_3.4 1:4.1.1 __parityti2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountti2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_LDBL_4.0.0 1:4.2.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __subvti3@GCC_3.4.4 1:4.1.1 __ucmpti2@GCC_3.0 1:4.1.1 __udivmodti4@GCC_3.0 1:4.1.1 __udivti3@GCC_3.0 1:4.1.1 __umodti3@GCC_3.0 1:4.1.1 gnat-4.8-4.8.2/debian/lib64gcc1.symbols.mips0000644000000000000000000015270212173542725015153 0ustar libgcc_s.so.1 lib64gcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3.4@GCC_3.3.4 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4.4@GCC_3.4.4 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.2.0 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.4.0@GCC_4.4.0 1:4.4 GCC_4.5.0@GCC_4.5.0 1:4.5 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __absvti2@GCC_3.4.4 1:4.1.1 __addda3@GCC_4.3.0 1:4.3 __adddf3@GCC_3.0 1:4.1.1 __adddq3@GCC_4.3.0 1:4.3 __addha3@GCC_4.3.0 1:4.3 __addhq3@GCC_4.3.0 1:4.3 __addqq3@GCC_4.3.0 1:4.3 __addsa3@GCC_4.3.0 1:4.3 __addsf3@GCC_3.0 1:4.1.1 __addsq3@GCC_4.3.0 1:4.3 __addta3@GCC_4.3.0 1:4.3 __addtf3@GCC_3.0 1:4.1.1 __addtq3@GCC_4.3.0 1:4.3 __adduda3@GCC_4.3.0 1:4.3 __addudq3@GCC_4.3.0 1:4.3 __adduha3@GCC_4.3.0 1:4.3 __adduhq3@GCC_4.3.0 1:4.3 __adduqq3@GCC_4.3.0 1:4.3 __addusa3@GCC_4.3.0 1:4.3 __addusq3@GCC_4.3.0 1:4.3 __adduta3@GCC_4.3.0 1:4.3 __addutq3@GCC_4.3.0 1:4.3 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __addvti3@GCC_3.4.4 1:4.1.1 __ashlda3@GCC_4.3.0 1:4.3 __ashldq3@GCC_4.3.0 1:4.3 __ashlha3@GCC_4.3.0 1:4.3 __ashlhq3@GCC_4.3.0 1:4.3 __ashlqq3@GCC_4.3.0 1:4.3 __ashlsa3@GCC_4.3.0 1:4.3 __ashlsq3@GCC_4.3.0 1:4.3 __ashlta3@GCC_4.3.0 1:4.3 __ashlti3@GCC_3.0 1:4.1.1 __ashltq3@GCC_4.3.0 1:4.3 __ashluda3@GCC_4.3.0 1:4.3 __ashludq3@GCC_4.3.0 1:4.3 __ashluha3@GCC_4.3.0 1:4.3 __ashluhq3@GCC_4.3.0 1:4.3 __ashluqq3@GCC_4.3.0 1:4.3 __ashlusa3@GCC_4.3.0 1:4.3 __ashlusq3@GCC_4.3.0 1:4.3 __ashluta3@GCC_4.3.0 1:4.3 __ashlutq3@GCC_4.3.0 1:4.3 __ashrda3@GCC_4.3.0 1:4.3 __ashrdq3@GCC_4.3.0 1:4.3 __ashrha3@GCC_4.3.0 1:4.3 __ashrhq3@GCC_4.3.0 1:4.3 __ashrqq3@GCC_4.3.0 1:4.3 __ashrsa3@GCC_4.3.0 1:4.3 __ashrsq3@GCC_4.3.0 1:4.3 __ashrta3@GCC_4.3.0 1:4.3 __ashrti3@GCC_3.0 1:4.1.1 __ashrtq3@GCC_4.3.0 1:4.3 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbti2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzti2@GCC_3.4 1:4.1.1 __cmpda2@GCC_4.3.0 1:4.3 __cmpdq2@GCC_4.3.0 1:4.3 __cmpha2@GCC_4.3.0 1:4.3 __cmphq2@GCC_4.3.0 1:4.3 __cmpqq2@GCC_4.3.0 1:4.3 __cmpsa2@GCC_4.3.0 1:4.3 __cmpsq2@GCC_4.3.0 1:4.3 __cmpta2@GCC_4.3.0 1:4.3 __cmpti2@GCC_3.0 1:4.1.1 __cmptq2@GCC_4.3.0 1:4.3 __cmpuda2@GCC_4.3.0 1:4.3 __cmpudq2@GCC_4.3.0 1:4.3 __cmpuha2@GCC_4.3.0 1:4.3 __cmpuhq2@GCC_4.3.0 1:4.3 __cmpuqq2@GCC_4.3.0 1:4.3 __cmpusa2@GCC_4.3.0 1:4.3 __cmpusq2@GCC_4.3.0 1:4.3 __cmputa2@GCC_4.3.0 1:4.3 __cmputq2@GCC_4.3.0 1:4.3 __ctzdi2@GCC_3.4 1:4.1.1 __ctzti2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divda3@GCC_4.3.0 1:4.3 __divdc3@GCC_4.0.0 1:4.1.1 __divdf3@GCC_3.0 1:4.1.1 __divdq3@GCC_4.3.0 1:4.3 __divha3@GCC_4.3.0 1:4.3 __divhq3@GCC_4.3.0 1:4.3 __divqq3@GCC_4.3.0 1:4.3 __divsa3@GCC_4.3.0 1:4.3 __divsc3@GCC_4.0.0 1:4.1.1 __divsf3@GCC_3.0 1:4.1.1 __divsq3@GCC_4.3.0 1:4.3 __divta3@GCC_4.3.0 1:4.3 __divtc3@GCC_4.0.0 1:4.1.1 __divtf3@GCC_3.0 1:4.1.1 __divti3@GCC_3.0 1:4.1.1 __divtq3@GCC_4.3.0 1:4.3 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __eqdf2@GCC_3.0 1:4.1.1 __eqsf2@GCC_3.0 1:4.1.1 __eqtf2@GCC_3.0 1:4.1.1 __extenddftf2@GCC_3.0 1:4.1.1 __extendsfdf2@GCC_3.0 1:4.1.1 __extendsftf2@GCC_3.0 1:4.1.1 __ffsdi2@GCC_3.0 1:4.1.1 __ffsti2@GCC_3.0 1:4.1.1 __fixdfdi@GCC_3.0 1:4.1.1 __fixdfsi@GCC_3.0 1:4.1.1 __fixdfti@GCC_3.0 1:4.1.1 __fixsfdi@GCC_3.0 1:4.1.1 __fixsfsi@GCC_3.0 1:4.1.1 __fixsfti@GCC_3.0 1:4.1.1 __fixtfdi@GCC_3.0 1:4.1.1 __fixtfsi@GCC_3.0 1:4.1.1 __fixtfti@GCC_3.0 1:4.1.1 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfsi@GCC_3.0 1:4.1.1 __fixunsdfti@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfsi@GCC_3.0 1:4.1.1 __fixunssfti@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_3.0 1:4.1.1 __fixunstfsi@GCC_3.0 1:4.1.1 __fixunstfti@GCC_3.0 1:4.1.1 __floatdidf@GCC_3.0 1:4.1.1 __floatdisf@GCC_3.0 1:4.1.1 __floatditf@GCC_3.0 1:4.1.1 __floatsidf@GCC_3.0 1:4.1.1 __floatsisf@GCC_3.0 1:4.1.1 __floatsitf@GCC_3.0 1:4.1.1 __floattidf@GCC_3.0 1:4.1.1 __floattisf@GCC_3.0 1:4.1.1 __floattitf@GCC_3.0 1:4.1.1 __floatundidf@GCC_4.2.0 1:4.2.1 __floatundisf@GCC_4.2.0 1:4.2.1 __floatunditf@GCC_4.2.0 1:4.2.1 __floatunsidf@GCC_4.2.0 1:4.2.1 __floatunsisf@GCC_4.2.0 1:4.2.1 __floatunsitf@GCC_4.2.0 1:4.2.1 __floatuntidf@GCC_4.2.0 1:4.2.1 __floatuntisf@GCC_4.2.0 1:4.2.1 __floatuntitf@GCC_4.2.0 1:4.2.1 __fractdadf@GCC_4.3.0 1:4.3 __fractdadi@GCC_4.3.0 1:4.3 __fractdadq@GCC_4.3.0 1:4.3 __fractdaha2@GCC_4.3.0 1:4.3 __fractdahi@GCC_4.3.0 1:4.3 __fractdahq@GCC_4.3.0 1:4.3 __fractdaqi@GCC_4.3.0 1:4.3 __fractdaqq@GCC_4.3.0 1:4.3 __fractdasa2@GCC_4.3.0 1:4.3 __fractdasf@GCC_4.3.0 1:4.3 __fractdasi@GCC_4.3.0 1:4.3 __fractdasq@GCC_4.3.0 1:4.3 __fractdata2@GCC_4.3.0 1:4.3 __fractdati@GCC_4.3.0 1:4.3 __fractdatq@GCC_4.3.0 1:4.3 __fractdauda@GCC_4.3.0 1:4.3 __fractdaudq@GCC_4.3.0 1:4.3 __fractdauha@GCC_4.3.0 1:4.3 __fractdauhq@GCC_4.3.0 1:4.3 __fractdauqq@GCC_4.3.0 1:4.3 __fractdausa@GCC_4.3.0 1:4.3 __fractdausq@GCC_4.3.0 1:4.3 __fractdauta@GCC_4.3.0 1:4.3 __fractdautq@GCC_4.3.0 1:4.3 __fractdfda@GCC_4.3.0 1:4.3 __fractdfdq@GCC_4.3.0 1:4.3 __fractdfha@GCC_4.3.0 1:4.3 __fractdfhq@GCC_4.3.0 1:4.3 __fractdfqq@GCC_4.3.0 1:4.3 __fractdfsa@GCC_4.3.0 1:4.3 __fractdfsq@GCC_4.3.0 1:4.3 __fractdfta@GCC_4.3.0 1:4.3 __fractdftq@GCC_4.3.0 1:4.3 __fractdfuda@GCC_4.3.0 1:4.3 __fractdfudq@GCC_4.3.0 1:4.3 __fractdfuha@GCC_4.3.0 1:4.3 __fractdfuhq@GCC_4.3.0 1:4.3 __fractdfuqq@GCC_4.3.0 1:4.3 __fractdfusa@GCC_4.3.0 1:4.3 __fractdfusq@GCC_4.3.0 1:4.3 __fractdfuta@GCC_4.3.0 1:4.3 __fractdfutq@GCC_4.3.0 1:4.3 __fractdida@GCC_4.3.0 1:4.3 __fractdidq@GCC_4.3.0 1:4.3 __fractdiha@GCC_4.3.0 1:4.3 __fractdihq@GCC_4.3.0 1:4.3 __fractdiqq@GCC_4.3.0 1:4.3 __fractdisa@GCC_4.3.0 1:4.3 __fractdisq@GCC_4.3.0 1:4.3 __fractdita@GCC_4.3.0 1:4.3 __fractditq@GCC_4.3.0 1:4.3 __fractdiuda@GCC_4.3.0 1:4.3 __fractdiudq@GCC_4.3.0 1:4.3 __fractdiuha@GCC_4.3.0 1:4.3 __fractdiuhq@GCC_4.3.0 1:4.3 __fractdiuqq@GCC_4.3.0 1:4.3 __fractdiusa@GCC_4.3.0 1:4.3 __fractdiusq@GCC_4.3.0 1:4.3 __fractdiuta@GCC_4.3.0 1:4.3 __fractdiutq@GCC_4.3.0 1:4.3 __fractdqda@GCC_4.3.0 1:4.3 __fractdqdf@GCC_4.3.0 1:4.3 __fractdqdi@GCC_4.3.0 1:4.3 __fractdqha@GCC_4.3.0 1:4.3 __fractdqhi@GCC_4.3.0 1:4.3 __fractdqhq2@GCC_4.3.0 1:4.3 __fractdqqi@GCC_4.3.0 1:4.3 __fractdqqq2@GCC_4.3.0 1:4.3 __fractdqsa@GCC_4.3.0 1:4.3 __fractdqsf@GCC_4.3.0 1:4.3 __fractdqsi@GCC_4.3.0 1:4.3 __fractdqsq2@GCC_4.3.0 1:4.3 __fractdqta@GCC_4.3.0 1:4.3 __fractdqti@GCC_4.3.0 1:4.3 __fractdqtq2@GCC_4.3.0 1:4.3 __fractdquda@GCC_4.3.0 1:4.3 __fractdqudq@GCC_4.3.0 1:4.3 __fractdquha@GCC_4.3.0 1:4.3 __fractdquhq@GCC_4.3.0 1:4.3 __fractdquqq@GCC_4.3.0 1:4.3 __fractdqusa@GCC_4.3.0 1:4.3 __fractdqusq@GCC_4.3.0 1:4.3 __fractdquta@GCC_4.3.0 1:4.3 __fractdqutq@GCC_4.3.0 1:4.3 __fracthada2@GCC_4.3.0 1:4.3 __fracthadf@GCC_4.3.0 1:4.3 __fracthadi@GCC_4.3.0 1:4.3 __fracthadq@GCC_4.3.0 1:4.3 __fracthahi@GCC_4.3.0 1:4.3 __fracthahq@GCC_4.3.0 1:4.3 __fracthaqi@GCC_4.3.0 1:4.3 __fracthaqq@GCC_4.3.0 1:4.3 __fracthasa2@GCC_4.3.0 1:4.3 __fracthasf@GCC_4.3.0 1:4.3 __fracthasi@GCC_4.3.0 1:4.3 __fracthasq@GCC_4.3.0 1:4.3 __fracthata2@GCC_4.3.0 1:4.3 __fracthati@GCC_4.3.0 1:4.3 __fracthatq@GCC_4.3.0 1:4.3 __fracthauda@GCC_4.3.0 1:4.3 __fracthaudq@GCC_4.3.0 1:4.3 __fracthauha@GCC_4.3.0 1:4.3 __fracthauhq@GCC_4.3.0 1:4.3 __fracthauqq@GCC_4.3.0 1:4.3 __fracthausa@GCC_4.3.0 1:4.3 __fracthausq@GCC_4.3.0 1:4.3 __fracthauta@GCC_4.3.0 1:4.3 __fracthautq@GCC_4.3.0 1:4.3 __fracthida@GCC_4.3.0 1:4.3 __fracthidq@GCC_4.3.0 1:4.3 __fracthiha@GCC_4.3.0 1:4.3 __fracthihq@GCC_4.3.0 1:4.3 __fracthiqq@GCC_4.3.0 1:4.3 __fracthisa@GCC_4.3.0 1:4.3 __fracthisq@GCC_4.3.0 1:4.3 __fracthita@GCC_4.3.0 1:4.3 __fracthitq@GCC_4.3.0 1:4.3 __fracthiuda@GCC_4.3.0 1:4.3 __fracthiudq@GCC_4.3.0 1:4.3 __fracthiuha@GCC_4.3.0 1:4.3 __fracthiuhq@GCC_4.3.0 1:4.3 __fracthiuqq@GCC_4.3.0 1:4.3 __fracthiusa@GCC_4.3.0 1:4.3 __fracthiusq@GCC_4.3.0 1:4.3 __fracthiuta@GCC_4.3.0 1:4.3 __fracthiutq@GCC_4.3.0 1:4.3 __fracthqda@GCC_4.3.0 1:4.3 __fracthqdf@GCC_4.3.0 1:4.3 __fracthqdi@GCC_4.3.0 1:4.3 __fracthqdq2@GCC_4.3.0 1:4.3 __fracthqha@GCC_4.3.0 1:4.3 __fracthqhi@GCC_4.3.0 1:4.3 __fracthqqi@GCC_4.3.0 1:4.3 __fracthqqq2@GCC_4.3.0 1:4.3 __fracthqsa@GCC_4.3.0 1:4.3 __fracthqsf@GCC_4.3.0 1:4.3 __fracthqsi@GCC_4.3.0 1:4.3 __fracthqsq2@GCC_4.3.0 1:4.3 __fracthqta@GCC_4.3.0 1:4.3 __fracthqti@GCC_4.3.0 1:4.3 __fracthqtq2@GCC_4.3.0 1:4.3 __fracthquda@GCC_4.3.0 1:4.3 __fracthqudq@GCC_4.3.0 1:4.3 __fracthquha@GCC_4.3.0 1:4.3 __fracthquhq@GCC_4.3.0 1:4.3 __fracthquqq@GCC_4.3.0 1:4.3 __fracthqusa@GCC_4.3.0 1:4.3 __fracthqusq@GCC_4.3.0 1:4.3 __fracthquta@GCC_4.3.0 1:4.3 __fracthqutq@GCC_4.3.0 1:4.3 __fractqida@GCC_4.3.0 1:4.3 __fractqidq@GCC_4.3.0 1:4.3 __fractqiha@GCC_4.3.0 1:4.3 __fractqihq@GCC_4.3.0 1:4.3 __fractqiqq@GCC_4.3.0 1:4.3 __fractqisa@GCC_4.3.0 1:4.3 __fractqisq@GCC_4.3.0 1:4.3 __fractqita@GCC_4.3.0 1:4.3 __fractqitq@GCC_4.3.0 1:4.3 __fractqiuda@GCC_4.3.0 1:4.3 __fractqiudq@GCC_4.3.0 1:4.3 __fractqiuha@GCC_4.3.0 1:4.3 __fractqiuhq@GCC_4.3.0 1:4.3 __fractqiuqq@GCC_4.3.0 1:4.3 __fractqiusa@GCC_4.3.0 1:4.3 __fractqiusq@GCC_4.3.0 1:4.3 __fractqiuta@GCC_4.3.0 1:4.3 __fractqiutq@GCC_4.3.0 1:4.3 __fractqqda@GCC_4.3.0 1:4.3 __fractqqdf@GCC_4.3.0 1:4.3 __fractqqdi@GCC_4.3.0 1:4.3 __fractqqdq2@GCC_4.3.0 1:4.3 __fractqqha@GCC_4.3.0 1:4.3 __fractqqhi@GCC_4.3.0 1:4.3 __fractqqhq2@GCC_4.3.0 1:4.3 __fractqqqi@GCC_4.3.0 1:4.3 __fractqqsa@GCC_4.3.0 1:4.3 __fractqqsf@GCC_4.3.0 1:4.3 __fractqqsi@GCC_4.3.0 1:4.3 __fractqqsq2@GCC_4.3.0 1:4.3 __fractqqta@GCC_4.3.0 1:4.3 __fractqqti@GCC_4.3.0 1:4.3 __fractqqtq2@GCC_4.3.0 1:4.3 __fractqquda@GCC_4.3.0 1:4.3 __fractqqudq@GCC_4.3.0 1:4.3 __fractqquha@GCC_4.3.0 1:4.3 __fractqquhq@GCC_4.3.0 1:4.3 __fractqquqq@GCC_4.3.0 1:4.3 __fractqqusa@GCC_4.3.0 1:4.3 __fractqqusq@GCC_4.3.0 1:4.3 __fractqquta@GCC_4.3.0 1:4.3 __fractqqutq@GCC_4.3.0 1:4.3 __fractsada2@GCC_4.3.0 1:4.3 __fractsadf@GCC_4.3.0 1:4.3 __fractsadi@GCC_4.3.0 1:4.3 __fractsadq@GCC_4.3.0 1:4.3 __fractsaha2@GCC_4.3.0 1:4.3 __fractsahi@GCC_4.3.0 1:4.3 __fractsahq@GCC_4.3.0 1:4.3 __fractsaqi@GCC_4.3.0 1:4.3 __fractsaqq@GCC_4.3.0 1:4.3 __fractsasf@GCC_4.3.0 1:4.3 __fractsasi@GCC_4.3.0 1:4.3 __fractsasq@GCC_4.3.0 1:4.3 __fractsata2@GCC_4.3.0 1:4.3 __fractsati@GCC_4.3.0 1:4.3 __fractsatq@GCC_4.3.0 1:4.3 __fractsauda@GCC_4.3.0 1:4.3 __fractsaudq@GCC_4.3.0 1:4.3 __fractsauha@GCC_4.3.0 1:4.3 __fractsauhq@GCC_4.3.0 1:4.3 __fractsauqq@GCC_4.3.0 1:4.3 __fractsausa@GCC_4.3.0 1:4.3 __fractsausq@GCC_4.3.0 1:4.3 __fractsauta@GCC_4.3.0 1:4.3 __fractsautq@GCC_4.3.0 1:4.3 __fractsfda@GCC_4.3.0 1:4.3 __fractsfdq@GCC_4.3.0 1:4.3 __fractsfha@GCC_4.3.0 1:4.3 __fractsfhq@GCC_4.3.0 1:4.3 __fractsfqq@GCC_4.3.0 1:4.3 __fractsfsa@GCC_4.3.0 1:4.3 __fractsfsq@GCC_4.3.0 1:4.3 __fractsfta@GCC_4.3.0 1:4.3 __fractsftq@GCC_4.3.0 1:4.3 __fractsfuda@GCC_4.3.0 1:4.3 __fractsfudq@GCC_4.3.0 1:4.3 __fractsfuha@GCC_4.3.0 1:4.3 __fractsfuhq@GCC_4.3.0 1:4.3 __fractsfuqq@GCC_4.3.0 1:4.3 __fractsfusa@GCC_4.3.0 1:4.3 __fractsfusq@GCC_4.3.0 1:4.3 __fractsfuta@GCC_4.3.0 1:4.3 __fractsfutq@GCC_4.3.0 1:4.3 __fractsida@GCC_4.3.0 1:4.3 __fractsidq@GCC_4.3.0 1:4.3 __fractsiha@GCC_4.3.0 1:4.3 __fractsihq@GCC_4.3.0 1:4.3 __fractsiqq@GCC_4.3.0 1:4.3 __fractsisa@GCC_4.3.0 1:4.3 __fractsisq@GCC_4.3.0 1:4.3 __fractsita@GCC_4.3.0 1:4.3 __fractsitq@GCC_4.3.0 1:4.3 __fractsiuda@GCC_4.3.0 1:4.3 __fractsiudq@GCC_4.3.0 1:4.3 __fractsiuha@GCC_4.3.0 1:4.3 __fractsiuhq@GCC_4.3.0 1:4.3 __fractsiuqq@GCC_4.3.0 1:4.3 __fractsiusa@GCC_4.3.0 1:4.3 __fractsiusq@GCC_4.3.0 1:4.3 __fractsiuta@GCC_4.3.0 1:4.3 __fractsiutq@GCC_4.3.0 1:4.3 __fractsqda@GCC_4.3.0 1:4.3 __fractsqdf@GCC_4.3.0 1:4.3 __fractsqdi@GCC_4.3.0 1:4.3 __fractsqdq2@GCC_4.3.0 1:4.3 __fractsqha@GCC_4.3.0 1:4.3 __fractsqhi@GCC_4.3.0 1:4.3 __fractsqhq2@GCC_4.3.0 1:4.3 __fractsqqi@GCC_4.3.0 1:4.3 __fractsqqq2@GCC_4.3.0 1:4.3 __fractsqsa@GCC_4.3.0 1:4.3 __fractsqsf@GCC_4.3.0 1:4.3 __fractsqsi@GCC_4.3.0 1:4.3 __fractsqta@GCC_4.3.0 1:4.3 __fractsqti@GCC_4.3.0 1:4.3 __fractsqtq2@GCC_4.3.0 1:4.3 __fractsquda@GCC_4.3.0 1:4.3 __fractsqudq@GCC_4.3.0 1:4.3 __fractsquha@GCC_4.3.0 1:4.3 __fractsquhq@GCC_4.3.0 1:4.3 __fractsquqq@GCC_4.3.0 1:4.3 __fractsqusa@GCC_4.3.0 1:4.3 __fractsqusq@GCC_4.3.0 1:4.3 __fractsquta@GCC_4.3.0 1:4.3 __fractsqutq@GCC_4.3.0 1:4.3 __fracttada2@GCC_4.3.0 1:4.3 __fracttadf@GCC_4.3.0 1:4.3 __fracttadi@GCC_4.3.0 1:4.3 __fracttadq@GCC_4.3.0 1:4.3 __fracttaha2@GCC_4.3.0 1:4.3 __fracttahi@GCC_4.3.0 1:4.3 __fracttahq@GCC_4.3.0 1:4.3 __fracttaqi@GCC_4.3.0 1:4.3 __fracttaqq@GCC_4.3.0 1:4.3 __fracttasa2@GCC_4.3.0 1:4.3 __fracttasf@GCC_4.3.0 1:4.3 __fracttasi@GCC_4.3.0 1:4.3 __fracttasq@GCC_4.3.0 1:4.3 __fracttati@GCC_4.3.0 1:4.3 __fracttatq@GCC_4.3.0 1:4.3 __fracttauda@GCC_4.3.0 1:4.3 __fracttaudq@GCC_4.3.0 1:4.3 __fracttauha@GCC_4.3.0 1:4.3 __fracttauhq@GCC_4.3.0 1:4.3 __fracttauqq@GCC_4.3.0 1:4.3 __fracttausa@GCC_4.3.0 1:4.3 __fracttausq@GCC_4.3.0 1:4.3 __fracttauta@GCC_4.3.0 1:4.3 __fracttautq@GCC_4.3.0 1:4.3 __fracttida@GCC_4.3.0 1:4.3 __fracttidq@GCC_4.3.0 1:4.3 __fracttiha@GCC_4.3.0 1:4.3 __fracttihq@GCC_4.3.0 1:4.3 __fracttiqq@GCC_4.3.0 1:4.3 __fracttisa@GCC_4.3.0 1:4.3 __fracttisq@GCC_4.3.0 1:4.3 __fracttita@GCC_4.3.0 1:4.3 __fracttitq@GCC_4.3.0 1:4.3 __fracttiuda@GCC_4.3.0 1:4.3 __fracttiudq@GCC_4.3.0 1:4.3 __fracttiuha@GCC_4.3.0 1:4.3 __fracttiuhq@GCC_4.3.0 1:4.3 __fracttiuqq@GCC_4.3.0 1:4.3 __fracttiusa@GCC_4.3.0 1:4.3 __fracttiusq@GCC_4.3.0 1:4.3 __fracttiuta@GCC_4.3.0 1:4.3 __fracttiutq@GCC_4.3.0 1:4.3 __fracttqda@GCC_4.3.0 1:4.3 __fracttqdf@GCC_4.3.0 1:4.3 __fracttqdi@GCC_4.3.0 1:4.3 __fracttqdq2@GCC_4.3.0 1:4.3 __fracttqha@GCC_4.3.0 1:4.3 __fracttqhi@GCC_4.3.0 1:4.3 __fracttqhq2@GCC_4.3.0 1:4.3 __fracttqqi@GCC_4.3.0 1:4.3 __fracttqqq2@GCC_4.3.0 1:4.3 __fracttqsa@GCC_4.3.0 1:4.3 __fracttqsf@GCC_4.3.0 1:4.3 __fracttqsi@GCC_4.3.0 1:4.3 __fracttqsq2@GCC_4.3.0 1:4.3 __fracttqta@GCC_4.3.0 1:4.3 __fracttqti@GCC_4.3.0 1:4.3 __fracttquda@GCC_4.3.0 1:4.3 __fracttqudq@GCC_4.3.0 1:4.3 __fracttquha@GCC_4.3.0 1:4.3 __fracttquhq@GCC_4.3.0 1:4.3 __fracttquqq@GCC_4.3.0 1:4.3 __fracttqusa@GCC_4.3.0 1:4.3 __fracttqusq@GCC_4.3.0 1:4.3 __fracttquta@GCC_4.3.0 1:4.3 __fracttqutq@GCC_4.3.0 1:4.3 __fractudada@GCC_4.3.0 1:4.3 __fractudadf@GCC_4.3.0 1:4.3 __fractudadi@GCC_4.3.0 1:4.3 __fractudadq@GCC_4.3.0 1:4.3 __fractudaha@GCC_4.3.0 1:4.3 __fractudahi@GCC_4.3.0 1:4.3 __fractudahq@GCC_4.3.0 1:4.3 __fractudaqi@GCC_4.3.0 1:4.3 __fractudaqq@GCC_4.3.0 1:4.3 __fractudasa@GCC_4.3.0 1:4.3 __fractudasf@GCC_4.3.0 1:4.3 __fractudasi@GCC_4.3.0 1:4.3 __fractudasq@GCC_4.3.0 1:4.3 __fractudata@GCC_4.3.0 1:4.3 __fractudati@GCC_4.3.0 1:4.3 __fractudatq@GCC_4.3.0 1:4.3 __fractudaudq@GCC_4.3.0 1:4.3 __fractudauha2@GCC_4.3.0 1:4.3 __fractudauhq@GCC_4.3.0 1:4.3 __fractudauqq@GCC_4.3.0 1:4.3 __fractudausa2@GCC_4.3.0 1:4.3 __fractudausq@GCC_4.3.0 1:4.3 __fractudauta2@GCC_4.3.0 1:4.3 __fractudautq@GCC_4.3.0 1:4.3 __fractudqda@GCC_4.3.0 1:4.3 __fractudqdf@GCC_4.3.0 1:4.3 __fractudqdi@GCC_4.3.0 1:4.3 __fractudqdq@GCC_4.3.0 1:4.3 __fractudqha@GCC_4.3.0 1:4.3 __fractudqhi@GCC_4.3.0 1:4.3 __fractudqhq@GCC_4.3.0 1:4.3 __fractudqqi@GCC_4.3.0 1:4.3 __fractudqqq@GCC_4.3.0 1:4.3 __fractudqsa@GCC_4.3.0 1:4.3 __fractudqsf@GCC_4.3.0 1:4.3 __fractudqsi@GCC_4.3.0 1:4.3 __fractudqsq@GCC_4.3.0 1:4.3 __fractudqta@GCC_4.3.0 1:4.3 __fractudqti@GCC_4.3.0 1:4.3 __fractudqtq@GCC_4.3.0 1:4.3 __fractudquda@GCC_4.3.0 1:4.3 __fractudquha@GCC_4.3.0 1:4.3 __fractudquhq2@GCC_4.3.0 1:4.3 __fractudquqq2@GCC_4.3.0 1:4.3 __fractudqusa@GCC_4.3.0 1:4.3 __fractudqusq2@GCC_4.3.0 1:4.3 __fractudquta@GCC_4.3.0 1:4.3 __fractudqutq2@GCC_4.3.0 1:4.3 __fractuhada@GCC_4.3.0 1:4.3 __fractuhadf@GCC_4.3.0 1:4.3 __fractuhadi@GCC_4.3.0 1:4.3 __fractuhadq@GCC_4.3.0 1:4.3 __fractuhaha@GCC_4.3.0 1:4.3 __fractuhahi@GCC_4.3.0 1:4.3 __fractuhahq@GCC_4.3.0 1:4.3 __fractuhaqi@GCC_4.3.0 1:4.3 __fractuhaqq@GCC_4.3.0 1:4.3 __fractuhasa@GCC_4.3.0 1:4.3 __fractuhasf@GCC_4.3.0 1:4.3 __fractuhasi@GCC_4.3.0 1:4.3 __fractuhasq@GCC_4.3.0 1:4.3 __fractuhata@GCC_4.3.0 1:4.3 __fractuhati@GCC_4.3.0 1:4.3 __fractuhatq@GCC_4.3.0 1:4.3 __fractuhauda2@GCC_4.3.0 1:4.3 __fractuhaudq@GCC_4.3.0 1:4.3 __fractuhauhq@GCC_4.3.0 1:4.3 __fractuhauqq@GCC_4.3.0 1:4.3 __fractuhausa2@GCC_4.3.0 1:4.3 __fractuhausq@GCC_4.3.0 1:4.3 __fractuhauta2@GCC_4.3.0 1:4.3 __fractuhautq@GCC_4.3.0 1:4.3 __fractuhqda@GCC_4.3.0 1:4.3 __fractuhqdf@GCC_4.3.0 1:4.3 __fractuhqdi@GCC_4.3.0 1:4.3 __fractuhqdq@GCC_4.3.0 1:4.3 __fractuhqha@GCC_4.3.0 1:4.3 __fractuhqhi@GCC_4.3.0 1:4.3 __fractuhqhq@GCC_4.3.0 1:4.3 __fractuhqqi@GCC_4.3.0 1:4.3 __fractuhqqq@GCC_4.3.0 1:4.3 __fractuhqsa@GCC_4.3.0 1:4.3 __fractuhqsf@GCC_4.3.0 1:4.3 __fractuhqsi@GCC_4.3.0 1:4.3 __fractuhqsq@GCC_4.3.0 1:4.3 __fractuhqta@GCC_4.3.0 1:4.3 __fractuhqti@GCC_4.3.0 1:4.3 __fractuhqtq@GCC_4.3.0 1:4.3 __fractuhquda@GCC_4.3.0 1:4.3 __fractuhqudq2@GCC_4.3.0 1:4.3 __fractuhquha@GCC_4.3.0 1:4.3 __fractuhquqq2@GCC_4.3.0 1:4.3 __fractuhqusa@GCC_4.3.0 1:4.3 __fractuhqusq2@GCC_4.3.0 1:4.3 __fractuhquta@GCC_4.3.0 1:4.3 __fractuhqutq2@GCC_4.3.0 1:4.3 __fractunsdadi@GCC_4.3.0 1:4.3 __fractunsdahi@GCC_4.3.0 1:4.3 __fractunsdaqi@GCC_4.3.0 1:4.3 __fractunsdasi@GCC_4.3.0 1:4.3 __fractunsdati@GCC_4.3.0 1:4.3 __fractunsdida@GCC_4.3.0 1:4.3 __fractunsdidq@GCC_4.3.0 1:4.3 __fractunsdiha@GCC_4.3.0 1:4.3 __fractunsdihq@GCC_4.3.0 1:4.3 __fractunsdiqq@GCC_4.3.0 1:4.3 __fractunsdisa@GCC_4.3.0 1:4.3 __fractunsdisq@GCC_4.3.0 1:4.3 __fractunsdita@GCC_4.3.0 1:4.3 __fractunsditq@GCC_4.3.0 1:4.3 __fractunsdiuda@GCC_4.3.0 1:4.3 __fractunsdiudq@GCC_4.3.0 1:4.3 __fractunsdiuha@GCC_4.3.0 1:4.3 __fractunsdiuhq@GCC_4.3.0 1:4.3 __fractunsdiuqq@GCC_4.3.0 1:4.3 __fractunsdiusa@GCC_4.3.0 1:4.3 __fractunsdiusq@GCC_4.3.0 1:4.3 __fractunsdiuta@GCC_4.3.0 1:4.3 __fractunsdiutq@GCC_4.3.0 1:4.3 __fractunsdqdi@GCC_4.3.0 1:4.3 __fractunsdqhi@GCC_4.3.0 1:4.3 __fractunsdqqi@GCC_4.3.0 1:4.3 __fractunsdqsi@GCC_4.3.0 1:4.3 __fractunsdqti@GCC_4.3.0 1:4.3 __fractunshadi@GCC_4.3.0 1:4.3 __fractunshahi@GCC_4.3.0 1:4.3 __fractunshaqi@GCC_4.3.0 1:4.3 __fractunshasi@GCC_4.3.0 1:4.3 __fractunshati@GCC_4.3.0 1:4.3 __fractunshida@GCC_4.3.0 1:4.3 __fractunshidq@GCC_4.3.0 1:4.3 __fractunshiha@GCC_4.3.0 1:4.3 __fractunshihq@GCC_4.3.0 1:4.3 __fractunshiqq@GCC_4.3.0 1:4.3 __fractunshisa@GCC_4.3.0 1:4.3 __fractunshisq@GCC_4.3.0 1:4.3 __fractunshita@GCC_4.3.0 1:4.3 __fractunshitq@GCC_4.3.0 1:4.3 __fractunshiuda@GCC_4.3.0 1:4.3 __fractunshiudq@GCC_4.3.0 1:4.3 __fractunshiuha@GCC_4.3.0 1:4.3 __fractunshiuhq@GCC_4.3.0 1:4.3 __fractunshiuqq@GCC_4.3.0 1:4.3 __fractunshiusa@GCC_4.3.0 1:4.3 __fractunshiusq@GCC_4.3.0 1:4.3 __fractunshiuta@GCC_4.3.0 1:4.3 __fractunshiutq@GCC_4.3.0 1:4.3 __fractunshqdi@GCC_4.3.0 1:4.3 __fractunshqhi@GCC_4.3.0 1:4.3 __fractunshqqi@GCC_4.3.0 1:4.3 __fractunshqsi@GCC_4.3.0 1:4.3 __fractunshqti@GCC_4.3.0 1:4.3 __fractunsqida@GCC_4.3.0 1:4.3 __fractunsqidq@GCC_4.3.0 1:4.3 __fractunsqiha@GCC_4.3.0 1:4.3 __fractunsqihq@GCC_4.3.0 1:4.3 __fractunsqiqq@GCC_4.3.0 1:4.3 __fractunsqisa@GCC_4.3.0 1:4.3 __fractunsqisq@GCC_4.3.0 1:4.3 __fractunsqita@GCC_4.3.0 1:4.3 __fractunsqitq@GCC_4.3.0 1:4.3 __fractunsqiuda@GCC_4.3.0 1:4.3 __fractunsqiudq@GCC_4.3.0 1:4.3 __fractunsqiuha@GCC_4.3.0 1:4.3 __fractunsqiuhq@GCC_4.3.0 1:4.3 __fractunsqiuqq@GCC_4.3.0 1:4.3 __fractunsqiusa@GCC_4.3.0 1:4.3 __fractunsqiusq@GCC_4.3.0 1:4.3 __fractunsqiuta@GCC_4.3.0 1:4.3 __fractunsqiutq@GCC_4.3.0 1:4.3 __fractunsqqdi@GCC_4.3.0 1:4.3 __fractunsqqhi@GCC_4.3.0 1:4.3 __fractunsqqqi@GCC_4.3.0 1:4.3 __fractunsqqsi@GCC_4.3.0 1:4.3 __fractunsqqti@GCC_4.3.0 1:4.3 __fractunssadi@GCC_4.3.0 1:4.3 __fractunssahi@GCC_4.3.0 1:4.3 __fractunssaqi@GCC_4.3.0 1:4.3 __fractunssasi@GCC_4.3.0 1:4.3 __fractunssati@GCC_4.3.0 1:4.3 __fractunssida@GCC_4.3.0 1:4.3 __fractunssidq@GCC_4.3.0 1:4.3 __fractunssiha@GCC_4.3.0 1:4.3 __fractunssihq@GCC_4.3.0 1:4.3 __fractunssiqq@GCC_4.3.0 1:4.3 __fractunssisa@GCC_4.3.0 1:4.3 __fractunssisq@GCC_4.3.0 1:4.3 __fractunssita@GCC_4.3.0 1:4.3 __fractunssitq@GCC_4.3.0 1:4.3 __fractunssiuda@GCC_4.3.0 1:4.3 __fractunssiudq@GCC_4.3.0 1:4.3 __fractunssiuha@GCC_4.3.0 1:4.3 __fractunssiuhq@GCC_4.3.0 1:4.3 __fractunssiuqq@GCC_4.3.0 1:4.3 __fractunssiusa@GCC_4.3.0 1:4.3 __fractunssiusq@GCC_4.3.0 1:4.3 __fractunssiuta@GCC_4.3.0 1:4.3 __fractunssiutq@GCC_4.3.0 1:4.3 __fractunssqdi@GCC_4.3.0 1:4.3 __fractunssqhi@GCC_4.3.0 1:4.3 __fractunssqqi@GCC_4.3.0 1:4.3 __fractunssqsi@GCC_4.3.0 1:4.3 __fractunssqti@GCC_4.3.0 1:4.3 __fractunstadi@GCC_4.3.0 1:4.3 __fractunstahi@GCC_4.3.0 1:4.3 __fractunstaqi@GCC_4.3.0 1:4.3 __fractunstasi@GCC_4.3.0 1:4.3 __fractunstati@GCC_4.3.0 1:4.3 __fractunstida@GCC_4.3.0 1:4.3 __fractunstidq@GCC_4.3.0 1:4.3 __fractunstiha@GCC_4.3.0 1:4.3 __fractunstihq@GCC_4.3.0 1:4.3 __fractunstiqq@GCC_4.3.0 1:4.3 __fractunstisa@GCC_4.3.0 1:4.3 __fractunstisq@GCC_4.3.0 1:4.3 __fractunstita@GCC_4.3.0 1:4.3 __fractunstitq@GCC_4.3.0 1:4.3 __fractunstiuda@GCC_4.3.0 1:4.3 __fractunstiudq@GCC_4.3.0 1:4.3 __fractunstiuha@GCC_4.3.0 1:4.3 __fractunstiuhq@GCC_4.3.0 1:4.3 __fractunstiuqq@GCC_4.3.0 1:4.3 __fractunstiusa@GCC_4.3.0 1:4.3 __fractunstiusq@GCC_4.3.0 1:4.3 __fractunstiuta@GCC_4.3.0 1:4.3 __fractunstiutq@GCC_4.3.0 1:4.3 __fractunstqdi@GCC_4.3.0 1:4.3 __fractunstqhi@GCC_4.3.0 1:4.3 __fractunstqqi@GCC_4.3.0 1:4.3 __fractunstqsi@GCC_4.3.0 1:4.3 __fractunstqti@GCC_4.3.0 1:4.3 __fractunsudadi@GCC_4.3.0 1:4.3 __fractunsudahi@GCC_4.3.0 1:4.3 __fractunsudaqi@GCC_4.3.0 1:4.3 __fractunsudasi@GCC_4.3.0 1:4.3 __fractunsudati@GCC_4.3.0 1:4.3 __fractunsudqdi@GCC_4.3.0 1:4.3 __fractunsudqhi@GCC_4.3.0 1:4.3 __fractunsudqqi@GCC_4.3.0 1:4.3 __fractunsudqsi@GCC_4.3.0 1:4.3 __fractunsudqti@GCC_4.3.0 1:4.3 __fractunsuhadi@GCC_4.3.0 1:4.3 __fractunsuhahi@GCC_4.3.0 1:4.3 __fractunsuhaqi@GCC_4.3.0 1:4.3 __fractunsuhasi@GCC_4.3.0 1:4.3 __fractunsuhati@GCC_4.3.0 1:4.3 __fractunsuhqdi@GCC_4.3.0 1:4.3 __fractunsuhqhi@GCC_4.3.0 1:4.3 __fractunsuhqqi@GCC_4.3.0 1:4.3 __fractunsuhqsi@GCC_4.3.0 1:4.3 __fractunsuhqti@GCC_4.3.0 1:4.3 __fractunsuqqdi@GCC_4.3.0 1:4.3 __fractunsuqqhi@GCC_4.3.0 1:4.3 __fractunsuqqqi@GCC_4.3.0 1:4.3 __fractunsuqqsi@GCC_4.3.0 1:4.3 __fractunsuqqti@GCC_4.3.0 1:4.3 __fractunsusadi@GCC_4.3.0 1:4.3 __fractunsusahi@GCC_4.3.0 1:4.3 __fractunsusaqi@GCC_4.3.0 1:4.3 __fractunsusasi@GCC_4.3.0 1:4.3 __fractunsusati@GCC_4.3.0 1:4.3 __fractunsusqdi@GCC_4.3.0 1:4.3 __fractunsusqhi@GCC_4.3.0 1:4.3 __fractunsusqqi@GCC_4.3.0 1:4.3 __fractunsusqsi@GCC_4.3.0 1:4.3 __fractunsusqti@GCC_4.3.0 1:4.3 __fractunsutadi@GCC_4.3.0 1:4.3 __fractunsutahi@GCC_4.3.0 1:4.3 __fractunsutaqi@GCC_4.3.0 1:4.3 __fractunsutasi@GCC_4.3.0 1:4.3 __fractunsutati@GCC_4.3.0 1:4.3 __fractunsutqdi@GCC_4.3.0 1:4.3 __fractunsutqhi@GCC_4.3.0 1:4.3 __fractunsutqqi@GCC_4.3.0 1:4.3 __fractunsutqsi@GCC_4.3.0 1:4.3 __fractunsutqti@GCC_4.3.0 1:4.3 __fractuqqda@GCC_4.3.0 1:4.3 __fractuqqdf@GCC_4.3.0 1:4.3 __fractuqqdi@GCC_4.3.0 1:4.3 __fractuqqdq@GCC_4.3.0 1:4.3 __fractuqqha@GCC_4.3.0 1:4.3 __fractuqqhi@GCC_4.3.0 1:4.3 __fractuqqhq@GCC_4.3.0 1:4.3 __fractuqqqi@GCC_4.3.0 1:4.3 __fractuqqqq@GCC_4.3.0 1:4.3 __fractuqqsa@GCC_4.3.0 1:4.3 __fractuqqsf@GCC_4.3.0 1:4.3 __fractuqqsi@GCC_4.3.0 1:4.3 __fractuqqsq@GCC_4.3.0 1:4.3 __fractuqqta@GCC_4.3.0 1:4.3 __fractuqqti@GCC_4.3.0 1:4.3 __fractuqqtq@GCC_4.3.0 1:4.3 __fractuqquda@GCC_4.3.0 1:4.3 __fractuqqudq2@GCC_4.3.0 1:4.3 __fractuqquha@GCC_4.3.0 1:4.3 __fractuqquhq2@GCC_4.3.0 1:4.3 __fractuqqusa@GCC_4.3.0 1:4.3 __fractuqqusq2@GCC_4.3.0 1:4.3 __fractuqquta@GCC_4.3.0 1:4.3 __fractuqqutq2@GCC_4.3.0 1:4.3 __fractusada@GCC_4.3.0 1:4.3 __fractusadf@GCC_4.3.0 1:4.3 __fractusadi@GCC_4.3.0 1:4.3 __fractusadq@GCC_4.3.0 1:4.3 __fractusaha@GCC_4.3.0 1:4.3 __fractusahi@GCC_4.3.0 1:4.3 __fractusahq@GCC_4.3.0 1:4.3 __fractusaqi@GCC_4.3.0 1:4.3 __fractusaqq@GCC_4.3.0 1:4.3 __fractusasa@GCC_4.3.0 1:4.3 __fractusasf@GCC_4.3.0 1:4.3 __fractusasi@GCC_4.3.0 1:4.3 __fractusasq@GCC_4.3.0 1:4.3 __fractusata@GCC_4.3.0 1:4.3 __fractusati@GCC_4.3.0 1:4.3 __fractusatq@GCC_4.3.0 1:4.3 __fractusauda2@GCC_4.3.0 1:4.3 __fractusaudq@GCC_4.3.0 1:4.3 __fractusauha2@GCC_4.3.0 1:4.3 __fractusauhq@GCC_4.3.0 1:4.3 __fractusauqq@GCC_4.3.0 1:4.3 __fractusausq@GCC_4.3.0 1:4.3 __fractusauta2@GCC_4.3.0 1:4.3 __fractusautq@GCC_4.3.0 1:4.3 __fractusqda@GCC_4.3.0 1:4.3 __fractusqdf@GCC_4.3.0 1:4.3 __fractusqdi@GCC_4.3.0 1:4.3 __fractusqdq@GCC_4.3.0 1:4.3 __fractusqha@GCC_4.3.0 1:4.3 __fractusqhi@GCC_4.3.0 1:4.3 __fractusqhq@GCC_4.3.0 1:4.3 __fractusqqi@GCC_4.3.0 1:4.3 __fractusqqq@GCC_4.3.0 1:4.3 __fractusqsa@GCC_4.3.0 1:4.3 __fractusqsf@GCC_4.3.0 1:4.3 __fractusqsi@GCC_4.3.0 1:4.3 __fractusqsq@GCC_4.3.0 1:4.3 __fractusqta@GCC_4.3.0 1:4.3 __fractusqti@GCC_4.3.0 1:4.3 __fractusqtq@GCC_4.3.0 1:4.3 __fractusquda@GCC_4.3.0 1:4.3 __fractusqudq2@GCC_4.3.0 1:4.3 __fractusquha@GCC_4.3.0 1:4.3 __fractusquhq2@GCC_4.3.0 1:4.3 __fractusquqq2@GCC_4.3.0 1:4.3 __fractusqusa@GCC_4.3.0 1:4.3 __fractusquta@GCC_4.3.0 1:4.3 __fractusqutq2@GCC_4.3.0 1:4.3 __fractutada@GCC_4.3.0 1:4.3 __fractutadf@GCC_4.3.0 1:4.3 __fractutadi@GCC_4.3.0 1:4.3 __fractutadq@GCC_4.3.0 1:4.3 __fractutaha@GCC_4.3.0 1:4.3 __fractutahi@GCC_4.3.0 1:4.3 __fractutahq@GCC_4.3.0 1:4.3 __fractutaqi@GCC_4.3.0 1:4.3 __fractutaqq@GCC_4.3.0 1:4.3 __fractutasa@GCC_4.3.0 1:4.3 __fractutasf@GCC_4.3.0 1:4.3 __fractutasi@GCC_4.3.0 1:4.3 __fractutasq@GCC_4.3.0 1:4.3 __fractutata@GCC_4.3.0 1:4.3 __fractutati@GCC_4.3.0 1:4.3 __fractutatq@GCC_4.3.0 1:4.3 __fractutauda2@GCC_4.3.0 1:4.3 __fractutaudq@GCC_4.3.0 1:4.3 __fractutauha2@GCC_4.3.0 1:4.3 __fractutauhq@GCC_4.3.0 1:4.3 __fractutauqq@GCC_4.3.0 1:4.3 __fractutausa2@GCC_4.3.0 1:4.3 __fractutausq@GCC_4.3.0 1:4.3 __fractutautq@GCC_4.3.0 1:4.3 __fractutqda@GCC_4.3.0 1:4.3 __fractutqdf@GCC_4.3.0 1:4.3 __fractutqdi@GCC_4.3.0 1:4.3 __fractutqdq@GCC_4.3.0 1:4.3 __fractutqha@GCC_4.3.0 1:4.3 __fractutqhi@GCC_4.3.0 1:4.3 __fractutqhq@GCC_4.3.0 1:4.3 __fractutqqi@GCC_4.3.0 1:4.3 __fractutqqq@GCC_4.3.0 1:4.3 __fractutqsa@GCC_4.3.0 1:4.3 __fractutqsf@GCC_4.3.0 1:4.3 __fractutqsi@GCC_4.3.0 1:4.3 __fractutqsq@GCC_4.3.0 1:4.3 __fractutqta@GCC_4.3.0 1:4.3 __fractutqti@GCC_4.3.0 1:4.3 __fractutqtq@GCC_4.3.0 1:4.3 __fractutquda@GCC_4.3.0 1:4.3 __fractutqudq2@GCC_4.3.0 1:4.3 __fractutquha@GCC_4.3.0 1:4.3 __fractutquhq2@GCC_4.3.0 1:4.3 __fractutquqq2@GCC_4.3.0 1:4.3 __fractutqusa@GCC_4.3.0 1:4.3 __fractutqusq2@GCC_4.3.0 1:4.3 __fractutquta@GCC_4.3.0 1:4.3 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __gedf2@GCC_3.0 1:4.1.1 __gesf2@GCC_3.0 1:4.1.1 __getf2@GCC_3.0 1:4.1.1 __gtdf2@GCC_3.0 1:4.1.1 __gtsf2@GCC_3.0 1:4.1.1 __gttf2@GCC_3.0 1:4.1.1 __ledf2@GCC_3.0 1:4.1.1 __lesf2@GCC_3.0 1:4.1.1 __letf2@GCC_3.0 1:4.1.1 __lshrti3@GCC_3.0 1:4.1.1 __lshruda3@GCC_4.3.0 1:4.3 __lshrudq3@GCC_4.3.0 1:4.3 __lshruha3@GCC_4.3.0 1:4.3 __lshruhq3@GCC_4.3.0 1:4.3 __lshruqq3@GCC_4.3.0 1:4.3 __lshrusa3@GCC_4.3.0 1:4.3 __lshrusq3@GCC_4.3.0 1:4.3 __lshruta3@GCC_4.3.0 1:4.3 __lshrutq3@GCC_4.3.0 1:4.3 __ltdf2@GCC_3.0 1:4.1.1 __ltsf2@GCC_3.0 1:4.1.1 __lttf2@GCC_3.0 1:4.1.1 __modti3@GCC_3.0 1:4.1.1 __mulda3@GCC_4.3.0 1:4.3 __muldc3@GCC_4.0.0 1:4.1.1 __muldf3@GCC_3.0 1:4.1.1 __muldq3@GCC_4.3.0 1:4.3 __mulha3@GCC_4.3.0 1:4.3 __mulhq3@GCC_4.3.0 1:4.3 __mulqq3@GCC_4.3.0 1:4.3 __mulsa3@GCC_4.3.0 1:4.3 __mulsc3@GCC_4.0.0 1:4.1.1 __mulsf3@GCC_3.0 1:4.1.1 __mulsq3@GCC_4.3.0 1:4.3 __multa3@GCC_4.3.0 1:4.3 __multc3@GCC_4.0.0 1:4.1.1 __multf3@GCC_3.0 1:4.1.1 __multi3@GCC_3.0 1:4.1.1 __multq3@GCC_4.3.0 1:4.3 __muluda3@GCC_4.3.0 1:4.3 __muludq3@GCC_4.3.0 1:4.3 __muluha3@GCC_4.3.0 1:4.3 __muluhq3@GCC_4.3.0 1:4.3 __muluqq3@GCC_4.3.0 1:4.3 __mulusa3@GCC_4.3.0 1:4.3 __mulusq3@GCC_4.3.0 1:4.3 __muluta3@GCC_4.3.0 1:4.3 __mulutq3@GCC_4.3.0 1:4.3 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulvti3@GCC_3.4.4 1:4.1.1 __nedf2@GCC_3.0 1:4.1.1 __negda2@GCC_4.3.0 1:4.3 __negdf2@GCC_3.0 1:4.1.1 __negdq2@GCC_4.3.0 1:4.3 __negha2@GCC_4.3.0 1:4.3 __neghq2@GCC_4.3.0 1:4.3 __negqq2@GCC_4.3.0 1:4.3 __negsa2@GCC_4.3.0 1:4.3 __negsf2@GCC_3.0 1:4.1.1 __negsq2@GCC_4.3.0 1:4.3 __negta2@GCC_4.3.0 1:4.3 __negtf2@GCC_3.0 1:4.1.1 __negti2@GCC_3.0 1:4.1.1 __negtq2@GCC_4.3.0 1:4.3 __neguda2@GCC_4.3.0 1:4.3 __negudq2@GCC_4.3.0 1:4.3 __neguha2@GCC_4.3.0 1:4.3 __neguhq2@GCC_4.3.0 1:4.3 __neguqq2@GCC_4.3.0 1:4.3 __negusa2@GCC_4.3.0 1:4.3 __negusq2@GCC_4.3.0 1:4.3 __neguta2@GCC_4.3.0 1:4.3 __negutq2@GCC_4.3.0 1:4.3 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __negvti2@GCC_3.4.4 1:4.1.1 __nesf2@GCC_3.0 1:4.1.1 __netf2@GCC_3.0 1:4.1.1 __paritydi2@GCC_3.4 1:4.1.1 __parityti2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountti2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.0.0 1:4.1.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __satfractdadq@GCC_4.3.0 1:4.3 __satfractdaha2@GCC_4.3.0 1:4.3 __satfractdahq@GCC_4.3.0 1:4.3 __satfractdaqq@GCC_4.3.0 1:4.3 __satfractdasa2@GCC_4.3.0 1:4.3 __satfractdasq@GCC_4.3.0 1:4.3 __satfractdata2@GCC_4.3.0 1:4.3 __satfractdatq@GCC_4.3.0 1:4.3 __satfractdauda@GCC_4.3.0 1:4.3 __satfractdaudq@GCC_4.3.0 1:4.3 __satfractdauha@GCC_4.3.0 1:4.3 __satfractdauhq@GCC_4.3.0 1:4.3 __satfractdauqq@GCC_4.3.0 1:4.3 __satfractdausa@GCC_4.3.0 1:4.3 __satfractdausq@GCC_4.3.0 1:4.3 __satfractdauta@GCC_4.3.0 1:4.3 __satfractdautq@GCC_4.3.0 1:4.3 __satfractdfda@GCC_4.3.0 1:4.3 __satfractdfdq@GCC_4.3.0 1:4.3 __satfractdfha@GCC_4.3.0 1:4.3 __satfractdfhq@GCC_4.3.0 1:4.3 __satfractdfqq@GCC_4.3.0 1:4.3 __satfractdfsa@GCC_4.3.0 1:4.3 __satfractdfsq@GCC_4.3.0 1:4.3 __satfractdfta@GCC_4.3.0 1:4.3 __satfractdftq@GCC_4.3.0 1:4.3 __satfractdfuda@GCC_4.3.0 1:4.3 __satfractdfudq@GCC_4.3.0 1:4.3 __satfractdfuha@GCC_4.3.0 1:4.3 __satfractdfuhq@GCC_4.3.0 1:4.3 __satfractdfuqq@GCC_4.3.0 1:4.3 __satfractdfusa@GCC_4.3.0 1:4.3 __satfractdfusq@GCC_4.3.0 1:4.3 __satfractdfuta@GCC_4.3.0 1:4.3 __satfractdfutq@GCC_4.3.0 1:4.3 __satfractdida@GCC_4.3.0 1:4.3 __satfractdidq@GCC_4.3.0 1:4.3 __satfractdiha@GCC_4.3.0 1:4.3 __satfractdihq@GCC_4.3.0 1:4.3 __satfractdiqq@GCC_4.3.0 1:4.3 __satfractdisa@GCC_4.3.0 1:4.3 __satfractdisq@GCC_4.3.0 1:4.3 __satfractdita@GCC_4.3.0 1:4.3 __satfractditq@GCC_4.3.0 1:4.3 __satfractdiuda@GCC_4.3.0 1:4.3 __satfractdiudq@GCC_4.3.0 1:4.3 __satfractdiuha@GCC_4.3.0 1:4.3 __satfractdiuhq@GCC_4.3.0 1:4.3 __satfractdiuqq@GCC_4.3.0 1:4.3 __satfractdiusa@GCC_4.3.0 1:4.3 __satfractdiusq@GCC_4.3.0 1:4.3 __satfractdiuta@GCC_4.3.0 1:4.3 __satfractdiutq@GCC_4.3.0 1:4.3 __satfractdqda@GCC_4.3.0 1:4.3 __satfractdqha@GCC_4.3.0 1:4.3 __satfractdqhq2@GCC_4.3.0 1:4.3 __satfractdqqq2@GCC_4.3.0 1:4.3 __satfractdqsa@GCC_4.3.0 1:4.3 __satfractdqsq2@GCC_4.3.0 1:4.3 __satfractdqta@GCC_4.3.0 1:4.3 __satfractdqtq2@GCC_4.3.0 1:4.3 __satfractdquda@GCC_4.3.0 1:4.3 __satfractdqudq@GCC_4.3.0 1:4.3 __satfractdquha@GCC_4.3.0 1:4.3 __satfractdquhq@GCC_4.3.0 1:4.3 __satfractdquqq@GCC_4.3.0 1:4.3 __satfractdqusa@GCC_4.3.0 1:4.3 __satfractdqusq@GCC_4.3.0 1:4.3 __satfractdquta@GCC_4.3.0 1:4.3 __satfractdqutq@GCC_4.3.0 1:4.3 __satfracthada2@GCC_4.3.0 1:4.3 __satfracthadq@GCC_4.3.0 1:4.3 __satfracthahq@GCC_4.3.0 1:4.3 __satfracthaqq@GCC_4.3.0 1:4.3 __satfracthasa2@GCC_4.3.0 1:4.3 __satfracthasq@GCC_4.3.0 1:4.3 __satfracthata2@GCC_4.3.0 1:4.3 __satfracthatq@GCC_4.3.0 1:4.3 __satfracthauda@GCC_4.3.0 1:4.3 __satfracthaudq@GCC_4.3.0 1:4.3 __satfracthauha@GCC_4.3.0 1:4.3 __satfracthauhq@GCC_4.3.0 1:4.3 __satfracthauqq@GCC_4.3.0 1:4.3 __satfracthausa@GCC_4.3.0 1:4.3 __satfracthausq@GCC_4.3.0 1:4.3 __satfracthauta@GCC_4.3.0 1:4.3 __satfracthautq@GCC_4.3.0 1:4.3 __satfracthida@GCC_4.3.0 1:4.3 __satfracthidq@GCC_4.3.0 1:4.3 __satfracthiha@GCC_4.3.0 1:4.3 __satfracthihq@GCC_4.3.0 1:4.3 __satfracthiqq@GCC_4.3.0 1:4.3 __satfracthisa@GCC_4.3.0 1:4.3 __satfracthisq@GCC_4.3.0 1:4.3 __satfracthita@GCC_4.3.0 1:4.3 __satfracthitq@GCC_4.3.0 1:4.3 __satfracthiuda@GCC_4.3.0 1:4.3 __satfracthiudq@GCC_4.3.0 1:4.3 __satfracthiuha@GCC_4.3.0 1:4.3 __satfracthiuhq@GCC_4.3.0 1:4.3 __satfracthiuqq@GCC_4.3.0 1:4.3 __satfracthiusa@GCC_4.3.0 1:4.3 __satfracthiusq@GCC_4.3.0 1:4.3 __satfracthiuta@GCC_4.3.0 1:4.3 __satfracthiutq@GCC_4.3.0 1:4.3 __satfracthqda@GCC_4.3.0 1:4.3 __satfracthqdq2@GCC_4.3.0 1:4.3 __satfracthqha@GCC_4.3.0 1:4.3 __satfracthqqq2@GCC_4.3.0 1:4.3 __satfracthqsa@GCC_4.3.0 1:4.3 __satfracthqsq2@GCC_4.3.0 1:4.3 __satfracthqta@GCC_4.3.0 1:4.3 __satfracthqtq2@GCC_4.3.0 1:4.3 __satfracthquda@GCC_4.3.0 1:4.3 __satfracthqudq@GCC_4.3.0 1:4.3 __satfracthquha@GCC_4.3.0 1:4.3 __satfracthquhq@GCC_4.3.0 1:4.3 __satfracthquqq@GCC_4.3.0 1:4.3 __satfracthqusa@GCC_4.3.0 1:4.3 __satfracthqusq@GCC_4.3.0 1:4.3 __satfracthquta@GCC_4.3.0 1:4.3 __satfracthqutq@GCC_4.3.0 1:4.3 __satfractqida@GCC_4.3.0 1:4.3 __satfractqidq@GCC_4.3.0 1:4.3 __satfractqiha@GCC_4.3.0 1:4.3 __satfractqihq@GCC_4.3.0 1:4.3 __satfractqiqq@GCC_4.3.0 1:4.3 __satfractqisa@GCC_4.3.0 1:4.3 __satfractqisq@GCC_4.3.0 1:4.3 __satfractqita@GCC_4.3.0 1:4.3 __satfractqitq@GCC_4.3.0 1:4.3 __satfractqiuda@GCC_4.3.0 1:4.3 __satfractqiudq@GCC_4.3.0 1:4.3 __satfractqiuha@GCC_4.3.0 1:4.3 __satfractqiuhq@GCC_4.3.0 1:4.3 __satfractqiuqq@GCC_4.3.0 1:4.3 __satfractqiusa@GCC_4.3.0 1:4.3 __satfractqiusq@GCC_4.3.0 1:4.3 __satfractqiuta@GCC_4.3.0 1:4.3 __satfractqiutq@GCC_4.3.0 1:4.3 __satfractqqda@GCC_4.3.0 1:4.3 __satfractqqdq2@GCC_4.3.0 1:4.3 __satfractqqha@GCC_4.3.0 1:4.3 __satfractqqhq2@GCC_4.3.0 1:4.3 __satfractqqsa@GCC_4.3.0 1:4.3 __satfractqqsq2@GCC_4.3.0 1:4.3 __satfractqqta@GCC_4.3.0 1:4.3 __satfractqqtq2@GCC_4.3.0 1:4.3 __satfractqquda@GCC_4.3.0 1:4.3 __satfractqqudq@GCC_4.3.0 1:4.3 __satfractqquha@GCC_4.3.0 1:4.3 __satfractqquhq@GCC_4.3.0 1:4.3 __satfractqquqq@GCC_4.3.0 1:4.3 __satfractqqusa@GCC_4.3.0 1:4.3 __satfractqqusq@GCC_4.3.0 1:4.3 __satfractqquta@GCC_4.3.0 1:4.3 __satfractqqutq@GCC_4.3.0 1:4.3 __satfractsada2@GCC_4.3.0 1:4.3 __satfractsadq@GCC_4.3.0 1:4.3 __satfractsaha2@GCC_4.3.0 1:4.3 __satfractsahq@GCC_4.3.0 1:4.3 __satfractsaqq@GCC_4.3.0 1:4.3 __satfractsasq@GCC_4.3.0 1:4.3 __satfractsata2@GCC_4.3.0 1:4.3 __satfractsatq@GCC_4.3.0 1:4.3 __satfractsauda@GCC_4.3.0 1:4.3 __satfractsaudq@GCC_4.3.0 1:4.3 __satfractsauha@GCC_4.3.0 1:4.3 __satfractsauhq@GCC_4.3.0 1:4.3 __satfractsauqq@GCC_4.3.0 1:4.3 __satfractsausa@GCC_4.3.0 1:4.3 __satfractsausq@GCC_4.3.0 1:4.3 __satfractsauta@GCC_4.3.0 1:4.3 __satfractsautq@GCC_4.3.0 1:4.3 __satfractsfda@GCC_4.3.0 1:4.3 __satfractsfdq@GCC_4.3.0 1:4.3 __satfractsfha@GCC_4.3.0 1:4.3 __satfractsfhq@GCC_4.3.0 1:4.3 __satfractsfqq@GCC_4.3.0 1:4.3 __satfractsfsa@GCC_4.3.0 1:4.3 __satfractsfsq@GCC_4.3.0 1:4.3 __satfractsfta@GCC_4.3.0 1:4.3 __satfractsftq@GCC_4.3.0 1:4.3 __satfractsfuda@GCC_4.3.0 1:4.3 __satfractsfudq@GCC_4.3.0 1:4.3 __satfractsfuha@GCC_4.3.0 1:4.3 __satfractsfuhq@GCC_4.3.0 1:4.3 __satfractsfuqq@GCC_4.3.0 1:4.3 __satfractsfusa@GCC_4.3.0 1:4.3 __satfractsfusq@GCC_4.3.0 1:4.3 __satfractsfuta@GCC_4.3.0 1:4.3 __satfractsfutq@GCC_4.3.0 1:4.3 __satfractsida@GCC_4.3.0 1:4.3 __satfractsidq@GCC_4.3.0 1:4.3 __satfractsiha@GCC_4.3.0 1:4.3 __satfractsihq@GCC_4.3.0 1:4.3 __satfractsiqq@GCC_4.3.0 1:4.3 __satfractsisa@GCC_4.3.0 1:4.3 __satfractsisq@GCC_4.3.0 1:4.3 __satfractsita@GCC_4.3.0 1:4.3 __satfractsitq@GCC_4.3.0 1:4.3 __satfractsiuda@GCC_4.3.0 1:4.3 __satfractsiudq@GCC_4.3.0 1:4.3 __satfractsiuha@GCC_4.3.0 1:4.3 __satfractsiuhq@GCC_4.3.0 1:4.3 __satfractsiuqq@GCC_4.3.0 1:4.3 __satfractsiusa@GCC_4.3.0 1:4.3 __satfractsiusq@GCC_4.3.0 1:4.3 __satfractsiuta@GCC_4.3.0 1:4.3 __satfractsiutq@GCC_4.3.0 1:4.3 __satfractsqda@GCC_4.3.0 1:4.3 __satfractsqdq2@GCC_4.3.0 1:4.3 __satfractsqha@GCC_4.3.0 1:4.3 __satfractsqhq2@GCC_4.3.0 1:4.3 __satfractsqqq2@GCC_4.3.0 1:4.3 __satfractsqsa@GCC_4.3.0 1:4.3 __satfractsqta@GCC_4.3.0 1:4.3 __satfractsqtq2@GCC_4.3.0 1:4.3 __satfractsquda@GCC_4.3.0 1:4.3 __satfractsqudq@GCC_4.3.0 1:4.3 __satfractsquha@GCC_4.3.0 1:4.3 __satfractsquhq@GCC_4.3.0 1:4.3 __satfractsquqq@GCC_4.3.0 1:4.3 __satfractsqusa@GCC_4.3.0 1:4.3 __satfractsqusq@GCC_4.3.0 1:4.3 __satfractsquta@GCC_4.3.0 1:4.3 __satfractsqutq@GCC_4.3.0 1:4.3 __satfracttada2@GCC_4.3.0 1:4.3 __satfracttadq@GCC_4.3.0 1:4.3 __satfracttaha2@GCC_4.3.0 1:4.3 __satfracttahq@GCC_4.3.0 1:4.3 __satfracttaqq@GCC_4.3.0 1:4.3 __satfracttasa2@GCC_4.3.0 1:4.3 __satfracttasq@GCC_4.3.0 1:4.3 __satfracttatq@GCC_4.3.0 1:4.3 __satfracttauda@GCC_4.3.0 1:4.3 __satfracttaudq@GCC_4.3.0 1:4.3 __satfracttauha@GCC_4.3.0 1:4.3 __satfracttauhq@GCC_4.3.0 1:4.3 __satfracttauqq@GCC_4.3.0 1:4.3 __satfracttausa@GCC_4.3.0 1:4.3 __satfracttausq@GCC_4.3.0 1:4.3 __satfracttauta@GCC_4.3.0 1:4.3 __satfracttautq@GCC_4.3.0 1:4.3 __satfracttida@GCC_4.3.0 1:4.3 __satfracttidq@GCC_4.3.0 1:4.3 __satfracttiha@GCC_4.3.0 1:4.3 __satfracttihq@GCC_4.3.0 1:4.3 __satfracttiqq@GCC_4.3.0 1:4.3 __satfracttisa@GCC_4.3.0 1:4.3 __satfracttisq@GCC_4.3.0 1:4.3 __satfracttita@GCC_4.3.0 1:4.3 __satfracttitq@GCC_4.3.0 1:4.3 __satfracttiuda@GCC_4.3.0 1:4.3 __satfracttiudq@GCC_4.3.0 1:4.3 __satfracttiuha@GCC_4.3.0 1:4.3 __satfracttiuhq@GCC_4.3.0 1:4.3 __satfracttiuqq@GCC_4.3.0 1:4.3 __satfracttiusa@GCC_4.3.0 1:4.3 __satfracttiusq@GCC_4.3.0 1:4.3 __satfracttiuta@GCC_4.3.0 1:4.3 __satfracttiutq@GCC_4.3.0 1:4.3 __satfracttqda@GCC_4.3.0 1:4.3 __satfracttqdq2@GCC_4.3.0 1:4.3 __satfracttqha@GCC_4.3.0 1:4.3 __satfracttqhq2@GCC_4.3.0 1:4.3 __satfracttqqq2@GCC_4.3.0 1:4.3 __satfracttqsa@GCC_4.3.0 1:4.3 __satfracttqsq2@GCC_4.3.0 1:4.3 __satfracttqta@GCC_4.3.0 1:4.3 __satfracttquda@GCC_4.3.0 1:4.3 __satfracttqudq@GCC_4.3.0 1:4.3 __satfracttquha@GCC_4.3.0 1:4.3 __satfracttquhq@GCC_4.3.0 1:4.3 __satfracttquqq@GCC_4.3.0 1:4.3 __satfracttqusa@GCC_4.3.0 1:4.3 __satfracttqusq@GCC_4.3.0 1:4.3 __satfracttquta@GCC_4.3.0 1:4.3 __satfracttqutq@GCC_4.3.0 1:4.3 __satfractudada@GCC_4.3.0 1:4.3 __satfractudadq@GCC_4.3.0 1:4.3 __satfractudaha@GCC_4.3.0 1:4.3 __satfractudahq@GCC_4.3.0 1:4.3 __satfractudaqq@GCC_4.3.0 1:4.3 __satfractudasa@GCC_4.3.0 1:4.3 __satfractudasq@GCC_4.3.0 1:4.3 __satfractudata@GCC_4.3.0 1:4.3 __satfractudatq@GCC_4.3.0 1:4.3 __satfractudaudq@GCC_4.3.0 1:4.3 __satfractudauha2@GCC_4.3.0 1:4.3 __satfractudauhq@GCC_4.3.0 1:4.3 __satfractudauqq@GCC_4.3.0 1:4.3 __satfractudausa2@GCC_4.3.0 1:4.3 __satfractudausq@GCC_4.3.0 1:4.3 __satfractudauta2@GCC_4.3.0 1:4.3 __satfractudautq@GCC_4.3.0 1:4.3 __satfractudqda@GCC_4.3.0 1:4.3 __satfractudqdq@GCC_4.3.0 1:4.3 __satfractudqha@GCC_4.3.0 1:4.3 __satfractudqhq@GCC_4.3.0 1:4.3 __satfractudqqq@GCC_4.3.0 1:4.3 __satfractudqsa@GCC_4.3.0 1:4.3 __satfractudqsq@GCC_4.3.0 1:4.3 __satfractudqta@GCC_4.3.0 1:4.3 __satfractudqtq@GCC_4.3.0 1:4.3 __satfractudquda@GCC_4.3.0 1:4.3 __satfractudquha@GCC_4.3.0 1:4.3 __satfractudquhq2@GCC_4.3.0 1:4.3 __satfractudquqq2@GCC_4.3.0 1:4.3 __satfractudqusa@GCC_4.3.0 1:4.3 __satfractudqusq2@GCC_4.3.0 1:4.3 __satfractudquta@GCC_4.3.0 1:4.3 __satfractudqutq2@GCC_4.3.0 1:4.3 __satfractuhada@GCC_4.3.0 1:4.3 __satfractuhadq@GCC_4.3.0 1:4.3 __satfractuhaha@GCC_4.3.0 1:4.3 __satfractuhahq@GCC_4.3.0 1:4.3 __satfractuhaqq@GCC_4.3.0 1:4.3 __satfractuhasa@GCC_4.3.0 1:4.3 __satfractuhasq@GCC_4.3.0 1:4.3 __satfractuhata@GCC_4.3.0 1:4.3 __satfractuhatq@GCC_4.3.0 1:4.3 __satfractuhauda2@GCC_4.3.0 1:4.3 __satfractuhaudq@GCC_4.3.0 1:4.3 __satfractuhauhq@GCC_4.3.0 1:4.3 __satfractuhauqq@GCC_4.3.0 1:4.3 __satfractuhausa2@GCC_4.3.0 1:4.3 __satfractuhausq@GCC_4.3.0 1:4.3 __satfractuhauta2@GCC_4.3.0 1:4.3 __satfractuhautq@GCC_4.3.0 1:4.3 __satfractuhqda@GCC_4.3.0 1:4.3 __satfractuhqdq@GCC_4.3.0 1:4.3 __satfractuhqha@GCC_4.3.0 1:4.3 __satfractuhqhq@GCC_4.3.0 1:4.3 __satfractuhqqq@GCC_4.3.0 1:4.3 __satfractuhqsa@GCC_4.3.0 1:4.3 __satfractuhqsq@GCC_4.3.0 1:4.3 __satfractuhqta@GCC_4.3.0 1:4.3 __satfractuhqtq@GCC_4.3.0 1:4.3 __satfractuhquda@GCC_4.3.0 1:4.3 __satfractuhqudq2@GCC_4.3.0 1:4.3 __satfractuhquha@GCC_4.3.0 1:4.3 __satfractuhquqq2@GCC_4.3.0 1:4.3 __satfractuhqusa@GCC_4.3.0 1:4.3 __satfractuhqusq2@GCC_4.3.0 1:4.3 __satfractuhquta@GCC_4.3.0 1:4.3 __satfractuhqutq2@GCC_4.3.0 1:4.3 __satfractunsdida@GCC_4.3.0 1:4.3 __satfractunsdidq@GCC_4.3.0 1:4.3 __satfractunsdiha@GCC_4.3.0 1:4.3 __satfractunsdihq@GCC_4.3.0 1:4.3 __satfractunsdiqq@GCC_4.3.0 1:4.3 __satfractunsdisa@GCC_4.3.0 1:4.3 __satfractunsdisq@GCC_4.3.0 1:4.3 __satfractunsdita@GCC_4.3.0 1:4.3 __satfractunsditq@GCC_4.3.0 1:4.3 __satfractunsdiuda@GCC_4.3.0 1:4.3 __satfractunsdiudq@GCC_4.3.0 1:4.3 __satfractunsdiuha@GCC_4.3.0 1:4.3 __satfractunsdiuhq@GCC_4.3.0 1:4.3 __satfractunsdiuqq@GCC_4.3.0 1:4.3 __satfractunsdiusa@GCC_4.3.0 1:4.3 __satfractunsdiusq@GCC_4.3.0 1:4.3 __satfractunsdiuta@GCC_4.3.0 1:4.3 __satfractunsdiutq@GCC_4.3.0 1:4.3 __satfractunshida@GCC_4.3.0 1:4.3 __satfractunshidq@GCC_4.3.0 1:4.3 __satfractunshiha@GCC_4.3.0 1:4.3 __satfractunshihq@GCC_4.3.0 1:4.3 __satfractunshiqq@GCC_4.3.0 1:4.3 __satfractunshisa@GCC_4.3.0 1:4.3 __satfractunshisq@GCC_4.3.0 1:4.3 __satfractunshita@GCC_4.3.0 1:4.3 __satfractunshitq@GCC_4.3.0 1:4.3 __satfractunshiuda@GCC_4.3.0 1:4.3 __satfractunshiudq@GCC_4.3.0 1:4.3 __satfractunshiuha@GCC_4.3.0 1:4.3 __satfractunshiuhq@GCC_4.3.0 1:4.3 __satfractunshiuqq@GCC_4.3.0 1:4.3 __satfractunshiusa@GCC_4.3.0 1:4.3 __satfractunshiusq@GCC_4.3.0 1:4.3 __satfractunshiuta@GCC_4.3.0 1:4.3 __satfractunshiutq@GCC_4.3.0 1:4.3 __satfractunsqida@GCC_4.3.0 1:4.3 __satfractunsqidq@GCC_4.3.0 1:4.3 __satfractunsqiha@GCC_4.3.0 1:4.3 __satfractunsqihq@GCC_4.3.0 1:4.3 __satfractunsqiqq@GCC_4.3.0 1:4.3 __satfractunsqisa@GCC_4.3.0 1:4.3 __satfractunsqisq@GCC_4.3.0 1:4.3 __satfractunsqita@GCC_4.3.0 1:4.3 __satfractunsqitq@GCC_4.3.0 1:4.3 __satfractunsqiuda@GCC_4.3.0 1:4.3 __satfractunsqiudq@GCC_4.3.0 1:4.3 __satfractunsqiuha@GCC_4.3.0 1:4.3 __satfractunsqiuhq@GCC_4.3.0 1:4.3 __satfractunsqiuqq@GCC_4.3.0 1:4.3 __satfractunsqiusa@GCC_4.3.0 1:4.3 __satfractunsqiusq@GCC_4.3.0 1:4.3 __satfractunsqiuta@GCC_4.3.0 1:4.3 __satfractunsqiutq@GCC_4.3.0 1:4.3 __satfractunssida@GCC_4.3.0 1:4.3 __satfractunssidq@GCC_4.3.0 1:4.3 __satfractunssiha@GCC_4.3.0 1:4.3 __satfractunssihq@GCC_4.3.0 1:4.3 __satfractunssiqq@GCC_4.3.0 1:4.3 __satfractunssisa@GCC_4.3.0 1:4.3 __satfractunssisq@GCC_4.3.0 1:4.3 __satfractunssita@GCC_4.3.0 1:4.3 __satfractunssitq@GCC_4.3.0 1:4.3 __satfractunssiuda@GCC_4.3.0 1:4.3 __satfractunssiudq@GCC_4.3.0 1:4.3 __satfractunssiuha@GCC_4.3.0 1:4.3 __satfractunssiuhq@GCC_4.3.0 1:4.3 __satfractunssiuqq@GCC_4.3.0 1:4.3 __satfractunssiusa@GCC_4.3.0 1:4.3 __satfractunssiusq@GCC_4.3.0 1:4.3 __satfractunssiuta@GCC_4.3.0 1:4.3 __satfractunssiutq@GCC_4.3.0 1:4.3 __satfractunstida@GCC_4.3.0 1:4.3 __satfractunstidq@GCC_4.3.0 1:4.3 __satfractunstiha@GCC_4.3.0 1:4.3 __satfractunstihq@GCC_4.3.0 1:4.3 __satfractunstiqq@GCC_4.3.0 1:4.3 __satfractunstisa@GCC_4.3.0 1:4.3 __satfractunstisq@GCC_4.3.0 1:4.3 __satfractunstita@GCC_4.3.0 1:4.3 __satfractunstitq@GCC_4.3.0 1:4.3 __satfractunstiuda@GCC_4.3.0 1:4.3 __satfractunstiudq@GCC_4.3.0 1:4.3 __satfractunstiuha@GCC_4.3.0 1:4.3 __satfractunstiuhq@GCC_4.3.0 1:4.3 __satfractunstiuqq@GCC_4.3.0 1:4.3 __satfractunstiusa@GCC_4.3.0 1:4.3 __satfractunstiusq@GCC_4.3.0 1:4.3 __satfractunstiuta@GCC_4.3.0 1:4.3 __satfractunstiutq@GCC_4.3.0 1:4.3 __satfractuqqda@GCC_4.3.0 1:4.3 __satfractuqqdq@GCC_4.3.0 1:4.3 __satfractuqqha@GCC_4.3.0 1:4.3 __satfractuqqhq@GCC_4.3.0 1:4.3 __satfractuqqqq@GCC_4.3.0 1:4.3 __satfractuqqsa@GCC_4.3.0 1:4.3 __satfractuqqsq@GCC_4.3.0 1:4.3 __satfractuqqta@GCC_4.3.0 1:4.3 __satfractuqqtq@GCC_4.3.0 1:4.3 __satfractuqquda@GCC_4.3.0 1:4.3 __satfractuqqudq2@GCC_4.3.0 1:4.3 __satfractuqquha@GCC_4.3.0 1:4.3 __satfractuqquhq2@GCC_4.3.0 1:4.3 __satfractuqqusa@GCC_4.3.0 1:4.3 __satfractuqqusq2@GCC_4.3.0 1:4.3 __satfractuqquta@GCC_4.3.0 1:4.3 __satfractuqqutq2@GCC_4.3.0 1:4.3 __satfractusada@GCC_4.3.0 1:4.3 __satfractusadq@GCC_4.3.0 1:4.3 __satfractusaha@GCC_4.3.0 1:4.3 __satfractusahq@GCC_4.3.0 1:4.3 __satfractusaqq@GCC_4.3.0 1:4.3 __satfractusasa@GCC_4.3.0 1:4.3 __satfractusasq@GCC_4.3.0 1:4.3 __satfractusata@GCC_4.3.0 1:4.3 __satfractusatq@GCC_4.3.0 1:4.3 __satfractusauda2@GCC_4.3.0 1:4.3 __satfractusaudq@GCC_4.3.0 1:4.3 __satfractusauha2@GCC_4.3.0 1:4.3 __satfractusauhq@GCC_4.3.0 1:4.3 __satfractusauqq@GCC_4.3.0 1:4.3 __satfractusausq@GCC_4.3.0 1:4.3 __satfractusauta2@GCC_4.3.0 1:4.3 __satfractusautq@GCC_4.3.0 1:4.3 __satfractusqda@GCC_4.3.0 1:4.3 __satfractusqdq@GCC_4.3.0 1:4.3 __satfractusqha@GCC_4.3.0 1:4.3 __satfractusqhq@GCC_4.3.0 1:4.3 __satfractusqqq@GCC_4.3.0 1:4.3 __satfractusqsa@GCC_4.3.0 1:4.3 __satfractusqsq@GCC_4.3.0 1:4.3 __satfractusqta@GCC_4.3.0 1:4.3 __satfractusqtq@GCC_4.3.0 1:4.3 __satfractusquda@GCC_4.3.0 1:4.3 __satfractusqudq2@GCC_4.3.0 1:4.3 __satfractusquha@GCC_4.3.0 1:4.3 __satfractusquhq2@GCC_4.3.0 1:4.3 __satfractusquqq2@GCC_4.3.0 1:4.3 __satfractusqusa@GCC_4.3.0 1:4.3 __satfractusquta@GCC_4.3.0 1:4.3 __satfractusqutq2@GCC_4.3.0 1:4.3 __satfractutada@GCC_4.3.0 1:4.3 __satfractutadq@GCC_4.3.0 1:4.3 __satfractutaha@GCC_4.3.0 1:4.3 __satfractutahq@GCC_4.3.0 1:4.3 __satfractutaqq@GCC_4.3.0 1:4.3 __satfractutasa@GCC_4.3.0 1:4.3 __satfractutasq@GCC_4.3.0 1:4.3 __satfractutata@GCC_4.3.0 1:4.3 __satfractutatq@GCC_4.3.0 1:4.3 __satfractutauda2@GCC_4.3.0 1:4.3 __satfractutaudq@GCC_4.3.0 1:4.3 __satfractutauha2@GCC_4.3.0 1:4.3 __satfractutauhq@GCC_4.3.0 1:4.3 __satfractutauqq@GCC_4.3.0 1:4.3 __satfractutausa2@GCC_4.3.0 1:4.3 __satfractutausq@GCC_4.3.0 1:4.3 __satfractutautq@GCC_4.3.0 1:4.3 __satfractutqda@GCC_4.3.0 1:4.3 __satfractutqdq@GCC_4.3.0 1:4.3 __satfractutqha@GCC_4.3.0 1:4.3 __satfractutqhq@GCC_4.3.0 1:4.3 __satfractutqqq@GCC_4.3.0 1:4.3 __satfractutqsa@GCC_4.3.0 1:4.3 __satfractutqsq@GCC_4.3.0 1:4.3 __satfractutqta@GCC_4.3.0 1:4.3 __satfractutqtq@GCC_4.3.0 1:4.3 __satfractutquda@GCC_4.3.0 1:4.3 __satfractutqudq2@GCC_4.3.0 1:4.3 __satfractutquha@GCC_4.3.0 1:4.3 __satfractutquhq2@GCC_4.3.0 1:4.3 __satfractutquqq2@GCC_4.3.0 1:4.3 __satfractutqusa@GCC_4.3.0 1:4.3 __satfractutqusq2@GCC_4.3.0 1:4.3 __satfractutquta@GCC_4.3.0 1:4.3 __ssaddda3@GCC_4.3.0 1:4.3 __ssadddq3@GCC_4.3.0 1:4.3 __ssaddha3@GCC_4.3.0 1:4.3 __ssaddhq3@GCC_4.3.0 1:4.3 __ssaddqq3@GCC_4.3.0 1:4.3 __ssaddsa3@GCC_4.3.0 1:4.3 __ssaddsq3@GCC_4.3.0 1:4.3 __ssaddta3@GCC_4.3.0 1:4.3 __ssaddtq3@GCC_4.3.0 1:4.3 __ssashlda3@GCC_4.3.0 1:4.3 __ssashldq3@GCC_4.3.0 1:4.3 __ssashlha3@GCC_4.3.0 1:4.3 __ssashlhq3@GCC_4.3.0 1:4.3 __ssashlqq3@GCC_4.3.0 1:4.3 __ssashlsa3@GCC_4.3.0 1:4.3 __ssashlsq3@GCC_4.3.0 1:4.3 __ssashlta3@GCC_4.3.0 1:4.3 __ssashltq3@GCC_4.3.0 1:4.3 __ssdivda3@GCC_4.3.0 1:4.3 __ssdivdq3@GCC_4.3.0 1:4.3 __ssdivha3@GCC_4.3.0 1:4.3 __ssdivhq3@GCC_4.3.0 1:4.3 __ssdivqq3@GCC_4.3.0 1:4.3 __ssdivsa3@GCC_4.3.0 1:4.3 __ssdivsq3@GCC_4.3.0 1:4.3 __ssdivta3@GCC_4.3.0 1:4.3 __ssdivtq3@GCC_4.3.0 1:4.3 __ssmulda3@GCC_4.3.0 1:4.3 __ssmuldq3@GCC_4.3.0 1:4.3 __ssmulha3@GCC_4.3.0 1:4.3 __ssmulhq3@GCC_4.3.0 1:4.3 __ssmulqq3@GCC_4.3.0 1:4.3 __ssmulsa3@GCC_4.3.0 1:4.3 __ssmulsq3@GCC_4.3.0 1:4.3 __ssmulta3@GCC_4.3.0 1:4.3 __ssmultq3@GCC_4.3.0 1:4.3 __ssnegda2@GCC_4.3.0 1:4.3 __ssnegdq2@GCC_4.3.0 1:4.3 __ssnegha2@GCC_4.3.0 1:4.3 __ssneghq2@GCC_4.3.0 1:4.3 __ssnegqq2@GCC_4.3.0 1:4.3 __ssnegsa2@GCC_4.3.0 1:4.3 __ssnegsq2@GCC_4.3.0 1:4.3 __ssnegta2@GCC_4.3.0 1:4.3 __ssnegtq2@GCC_4.3.0 1:4.3 __sssubda3@GCC_4.3.0 1:4.3 __sssubdq3@GCC_4.3.0 1:4.3 __sssubha3@GCC_4.3.0 1:4.3 __sssubhq3@GCC_4.3.0 1:4.3 __sssubqq3@GCC_4.3.0 1:4.3 __sssubsa3@GCC_4.3.0 1:4.3 __sssubsq3@GCC_4.3.0 1:4.3 __sssubta3@GCC_4.3.0 1:4.3 __sssubtq3@GCC_4.3.0 1:4.3 __subda3@GCC_4.3.0 1:4.3 __subdf3@GCC_3.0 1:4.1.1 __subdq3@GCC_4.3.0 1:4.3 __subha3@GCC_4.3.0 1:4.3 __subhq3@GCC_4.3.0 1:4.3 __subqq3@GCC_4.3.0 1:4.3 __subsa3@GCC_4.3.0 1:4.3 __subsf3@GCC_3.0 1:4.1.1 __subsq3@GCC_4.3.0 1:4.3 __subta3@GCC_4.3.0 1:4.3 __subtf3@GCC_3.0 1:4.1.1 __subtq3@GCC_4.3.0 1:4.3 __subuda3@GCC_4.3.0 1:4.3 __subudq3@GCC_4.3.0 1:4.3 __subuha3@GCC_4.3.0 1:4.3 __subuhq3@GCC_4.3.0 1:4.3 __subuqq3@GCC_4.3.0 1:4.3 __subusa3@GCC_4.3.0 1:4.3 __subusq3@GCC_4.3.0 1:4.3 __subuta3@GCC_4.3.0 1:4.3 __subutq3@GCC_4.3.0 1:4.3 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __subvti3@GCC_3.4.4 1:4.1.1 __sync_add_and_fetch_1@GCC_4.4.0 1:4.4 __sync_add_and_fetch_2@GCC_4.4.0 1:4.4 __sync_add_and_fetch_4@GCC_4.4.0 1:4.4 __sync_add_and_fetch_8@GCC_4.4.0 1:4.4 __sync_and_and_fetch_1@GCC_4.4.0 1:4.4 __sync_and_and_fetch_2@GCC_4.4.0 1:4.4 __sync_and_and_fetch_4@GCC_4.4.0 1:4.4 __sync_and_and_fetch_8@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_1@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_2@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_4@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_8@GCC_4.4.0 1:4.4 __sync_fetch_and_add_1@GCC_4.4.0 1:4.4 __sync_fetch_and_add_2@GCC_4.4.0 1:4.4 __sync_fetch_and_add_4@GCC_4.4.0 1:4.4 __sync_fetch_and_add_8@GCC_4.4.0 1:4.4 __sync_fetch_and_and_1@GCC_4.4.0 1:4.4 __sync_fetch_and_and_2@GCC_4.4.0 1:4.4 __sync_fetch_and_and_4@GCC_4.4.0 1:4.4 __sync_fetch_and_and_8@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_1@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_2@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_4@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_8@GCC_4.4.0 1:4.4 __sync_fetch_and_or_1@GCC_4.4.0 1:4.4 __sync_fetch_and_or_2@GCC_4.4.0 1:4.4 __sync_fetch_and_or_4@GCC_4.4.0 1:4.4 __sync_fetch_and_or_8@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_1@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_2@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_4@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_8@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_1@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_2@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_4@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_8@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_1@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_2@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_4@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_8@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_1@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_2@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_4@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_8@GCC_4.4.0 1:4.4 __sync_or_and_fetch_1@GCC_4.4.0 1:4.4 __sync_or_and_fetch_2@GCC_4.4.0 1:4.4 __sync_or_and_fetch_4@GCC_4.4.0 1:4.4 __sync_or_and_fetch_8@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_1@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_2@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_4@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_8@GCC_4.4.0 1:4.4 __sync_synchronize@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_1@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_2@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_4@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_8@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_1@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_2@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_4@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_8@GCC_4.4.0 1:4.4 __truncdfsf2@GCC_3.0 1:4.1.1 __trunctfdf2@GCC_3.0 1:4.1.1 __trunctfsf2@GCC_3.0 1:4.1.1 __ucmpti2@GCC_3.0 1:4.1.1 __udivmodti4@GCC_3.0 1:4.1.1 __udivti3@GCC_3.0 1:4.1.1 __udivuda3@GCC_4.3.0 1:4.3 __udivudq3@GCC_4.3.0 1:4.3 __udivuha3@GCC_4.3.0 1:4.3 __udivuhq3@GCC_4.3.0 1:4.3 __udivuqq3@GCC_4.3.0 1:4.3 __udivusa3@GCC_4.3.0 1:4.3 __udivusq3@GCC_4.3.0 1:4.3 __udivuta3@GCC_4.3.0 1:4.3 __udivutq3@GCC_4.3.0 1:4.3 __umodti3@GCC_3.0 1:4.1.1 __unorddf2@GCC_3.3.4 1:4.1.1 __unordsf2@GCC_3.3.4 1:4.1.1 __unordtf2@GCC_4.5.0 1:4.5 __usadduda3@GCC_4.3.0 1:4.3 __usaddudq3@GCC_4.3.0 1:4.3 __usadduha3@GCC_4.3.0 1:4.3 __usadduhq3@GCC_4.3.0 1:4.3 __usadduqq3@GCC_4.3.0 1:4.3 __usaddusa3@GCC_4.3.0 1:4.3 __usaddusq3@GCC_4.3.0 1:4.3 __usadduta3@GCC_4.3.0 1:4.3 __usaddutq3@GCC_4.3.0 1:4.3 __usashluda3@GCC_4.3.0 1:4.3 __usashludq3@GCC_4.3.0 1:4.3 __usashluha3@GCC_4.3.0 1:4.3 __usashluhq3@GCC_4.3.0 1:4.3 __usashluqq3@GCC_4.3.0 1:4.3 __usashlusa3@GCC_4.3.0 1:4.3 __usashlusq3@GCC_4.3.0 1:4.3 __usashluta3@GCC_4.3.0 1:4.3 __usashlutq3@GCC_4.3.0 1:4.3 __usdivuda3@GCC_4.3.0 1:4.3 __usdivudq3@GCC_4.3.0 1:4.3 __usdivuha3@GCC_4.3.0 1:4.3 __usdivuhq3@GCC_4.3.0 1:4.3 __usdivuqq3@GCC_4.3.0 1:4.3 __usdivusa3@GCC_4.3.0 1:4.3 __usdivusq3@GCC_4.3.0 1:4.3 __usdivuta3@GCC_4.3.0 1:4.3 __usdivutq3@GCC_4.3.0 1:4.3 __usmuluda3@GCC_4.3.0 1:4.3 __usmuludq3@GCC_4.3.0 1:4.3 __usmuluha3@GCC_4.3.0 1:4.3 __usmuluhq3@GCC_4.3.0 1:4.3 __usmuluqq3@GCC_4.3.0 1:4.3 __usmulusa3@GCC_4.3.0 1:4.3 __usmulusq3@GCC_4.3.0 1:4.3 __usmuluta3@GCC_4.3.0 1:4.3 __usmulutq3@GCC_4.3.0 1:4.3 __usneguda2@GCC_4.3.0 1:4.3 __usnegudq2@GCC_4.3.0 1:4.3 __usneguha2@GCC_4.3.0 1:4.3 __usneguhq2@GCC_4.3.0 1:4.3 __usneguqq2@GCC_4.3.0 1:4.3 __usnegusa2@GCC_4.3.0 1:4.3 __usnegusq2@GCC_4.3.0 1:4.3 __usneguta2@GCC_4.3.0 1:4.3 __usnegutq2@GCC_4.3.0 1:4.3 __ussubuda3@GCC_4.3.0 1:4.3 __ussubudq3@GCC_4.3.0 1:4.3 __ussubuha3@GCC_4.3.0 1:4.3 __ussubuhq3@GCC_4.3.0 1:4.3 __ussubuqq3@GCC_4.3.0 1:4.3 __ussubusa3@GCC_4.3.0 1:4.3 __ussubusq3@GCC_4.3.0 1:4.3 __ussubuta3@GCC_4.3.0 1:4.3 __ussubutq3@GCC_4.3.0 1:4.3 gnat-4.8-4.8.2/debian/libstdc++6.symbols.kfreebsd-amd640000644000000000000000000000052212173542725017053 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.64bit" #include "libstdc++6.symbols.128bit" #include "libstdc++6.symbols.excprop" _ZN9__gnu_cxx12__atomic_addEPVii@GLIBCXX_3.4 4.1.1 _ZN9__gnu_cxx18__exchange_and_addEPVii@GLIBCXX_3.4 4.1.1 _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3 gnat-4.8-4.8.2/debian/libgfortran3.symbols.arm640000644000000000000000000000031112274247101016026 0ustar libgfortran.so.3 libgfortran3 #MINVER# #include "libgfortran3.symbols.common" #include "libgfortran3.symbols.64" #include "libgfortran3.symbols.16.powerpc" #include "libgfortran3.symbols.16.powerpc64" gnat-4.8-4.8.2/debian/lib32gfortran3.symbols.s390x0000644000000000000000000000017312173542725016146 0ustar libgfortran.so.3 lib32gfortran3 #MINVER# #include "libgfortran3.symbols.common" #include "libgfortran3.symbols.16.powerpc" gnat-4.8-4.8.2/debian/libgcc1.symbols.i3860000644000000000000000000001041312173542725014512 0ustar libgcc_s.so.1 libgcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.4.0@GCC_4.4.0 1:4.4.0 GCC_4.5.0@GCC_4.5.0 1:4.5.0 GCC_4.7.0@GCC_4.7.0 1:4.7 GCC_4.8.0@GCC_4.8.0 1:4.8 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __addtf3@GCC_4.4.0 1:4.4.0 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __ashldi3@GCC_3.0 1:4.1.1 __ashrdi3@GCC_3.0 1:4.1.1 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbsi2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzsi2@GCC_3.4 1:4.1.1 __cmpdi2@GCC_3.0 1:4.1.1 __copysigntf3@GCC_4.4.0 1:4.4.0 __cpu_indicator_init@GCC_4.8.0 1:4.8 __cpu_model@GCC_4.8.0 1:4.8 __ctzdi2@GCC_3.4 1:4.1.1 __ctzsi2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divdc3@GCC_4.0.0 1:4.1.1 __divdi3@GLIBC_2.0 1:4.1.1 __divsc3@GCC_4.0.0 1:4.1.1 __divtc3@GCC_4.4.0 1:4.4.0 __divtf3@GCC_4.4.0 1:4.4.0 __divxc3@GCC_4.0.0 1:4.1.1 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __eqtf2@GCC_4.4.0 1:4.4.0 __extenddftf2@GCC_4.4.0 1:4.4.0 __extendsftf2@GCC_4.4.0 1:4.4.0 __extendxftf2@GCC_4.5.0 1:4.5.0 __fabstf2@GCC_4.4.0 1:4.4.0 __ffsdi2@GCC_3.0 1:4.1.1 __ffssi2@GCC_4.3.0 1:4.3 __fixdfdi@GCC_3.0 1:4.1.1 __fixsfdi@GCC_3.0 1:4.1.1 __fixtfdi@GCC_4.4.0 1:4.4.0 __fixtfsi@GCC_4.4.0 1:4.4.0 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfsi@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfsi@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_4.4.0 1:4.4.0 __fixunstfsi@GCC_4.4.0 1:4.4.0 __fixunsxfdi@GCC_3.0 1:4.1.1 __fixunsxfsi@GCC_3.0 1:4.1.1 __fixxfdi@GCC_3.0 1:4.1.1 __floatdidf@GCC_3.0 1:4.1.1 __floatdisf@GCC_3.0 1:4.1.1 __floatditf@GCC_4.4.0 1:4.4.0 __floatdixf@GCC_3.0 1:4.1.1 __floatsitf@GCC_4.4.0 1:4.4.0 __floatundidf@GCC_4.2.0 1:4.2.1 __floatundisf@GCC_4.2.0 1:4.2.1 __floatunditf@GCC_4.4.0 1:4.4.0 __floatundixf@GCC_4.2.0 1:4.2.1 __floatunsitf@GCC_4.4.0 1:4.4.0 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __getf2@GCC_4.4.0 1:4.4.0 __gttf2@GCC_4.4.0 1:4.4.0 __letf2@GCC_4.4.0 1:4.4.0 __lshrdi3@GCC_3.0 1:4.1.1 __lttf2@GCC_4.4.0 1:4.4.0 __moddi3@GLIBC_2.0 1:4.1.1 __muldc3@GCC_4.0.0 1:4.1.1 __muldi3@GCC_3.0 1:4.1.1 __mulsc3@GCC_4.0.0 1:4.1.1 __multc3@GCC_4.4.0 1:4.4.0 __multf3@GCC_4.4.0 1:4.4.0 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulxc3@GCC_4.0.0 1:4.1.1 __negdi2@GCC_3.0 1:4.1.1 __negtf2@GCC_4.4.0 1:4.4.0 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __netf2@GCC_4.4.0 1:4.4.0 __paritydi2@GCC_3.4 1:4.1.1 __paritysi2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountsi2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.4.0 1:4.4.0 __powixf2@GCC_4.0.0 1:4.1.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __subtf3@GCC_4.4.0 1:4.4.0 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __trunctfdf2@GCC_4.4.0 1:4.4.0 __trunctfsf2@GCC_4.4.0 1:4.4.0 __trunctfxf2@GCC_4.4.0 1:4.4.0 __ucmpdi2@GCC_3.0 1:4.1.1 __udivdi3@GLIBC_2.0 1:4.1.1 __udivmoddi4@GCC_3.0 1:4.1.1 __umoddi3@GLIBC_2.0 1:4.1.1 __unordtf2@GCC_4.4.0 1:4.4.0 gnat-4.8-4.8.2/debian/libstdc++6.symbols.mipsel0000644000000000000000000000042412173542725015647 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.32bit" __gxx_personality_v0@CXXABI_1.3 4.1.1 #include "libstdc++6.symbols.excprop" #include "libstdc++6.symbols.glibcxxmath" _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3.0 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3.0 gnat-4.8-4.8.2/debian/README.snapshot0000644000000000000000000000213012173542725013617 0ustar Debian gcc-snapshot package =========================== This package contains a recent development SNAPSHOT of all files contained in the GNU Compiler Collection (GCC). DO NOT USE THIS SNAPSHOT FOR BUILDING DEBIAN PACKAGES! This package will NEVER hit the testing distribution. It's used for tracking gcc bugs submitted to the Debian BTS in recent development versions of gcc. To use this snapshot, you should set the following environment variables: LD_LIBRARY_PATH=/usr/lib/gcc-snapshot/lib:$LD_LIBRARY_PATH PATH=/usr/lib/gcc-snapshot/bin:$PATH You might also like to use a shell script to wrap up this funcationality, e.g. place in /usr/local/bin/gcc-snapshot and chmod +x it ----------- snip ---------- #! /bin/sh LD_LIBRARY_PATH=/usr/lib/gcc-snapshot/lib:$LD_LIBRARY_PATH PATH=/usr/lib/gcc-snapshot/bin:$PATH gcc "$@" ----------- snip ---------- Make the same for g++, g77, gij, gcj, cpp, ... Don't forget the quotes around the $@ or gcc will not parse it's command line correctly! Unset these variables before building Debian packages destined for an upload to ftp-master.debian.org. gnat-4.8-4.8.2/debian/libgfortran3.symbols.160000644000000000000000000002035212173542725015342 0ustar __iso_c_binding_c_f_pointer_i16@GFORTRAN_1.0 4.3 _gfortran_all_l16@GFORTRAN_1.0 4.3 _gfortran_any_l16@GFORTRAN_1.0 4.3 _gfortran_count_16_l@GFORTRAN_1.0 4.3 _gfortran_cshift0_16@GFORTRAN_1.1 4.4.0 _gfortran_cshift0_16_char4@GFORTRAN_1.4 4.6 _gfortran_cshift0_16_char@GFORTRAN_1.1 4.4.0 _gfortran_cshift1_16@GFORTRAN_1.0 4.3 _gfortran_cshift1_16_char4@GFORTRAN_1.1 4.4.0 _gfortran_cshift1_16_char@GFORTRAN_1.0 4.3 _gfortran_eoshift0_16@GFORTRAN_1.1 4.4.0 _gfortran_eoshift0_16_char4@GFORTRAN_1.4 4.6 _gfortran_eoshift0_16_char@GFORTRAN_1.1 4.4.0 _gfortran_eoshift1_16@GFORTRAN_1.0 4.3 _gfortran_eoshift1_16_char4@GFORTRAN_1.1 4.4.0 _gfortran_eoshift1_16_char@GFORTRAN_1.0 4.3 _gfortran_eoshift2_16@GFORTRAN_1.1 4.4.0 _gfortran_eoshift2_16_char4@GFORTRAN_1.4 4.6 _gfortran_eoshift2_16_char@GFORTRAN_1.1 4.4.0 _gfortran_eoshift3_16@GFORTRAN_1.0 4.3 _gfortran_eoshift3_16_char4@GFORTRAN_1.1 4.4.0 _gfortran_eoshift3_16_char@GFORTRAN_1.0 4.3 _gfortran_iall_i16@GFORTRAN_1.4 4.6 _gfortran_iany_i16@GFORTRAN_1.4 4.6 _gfortran_iparity_i16@GFORTRAN_1.4 4.6 _gfortran_ishftc16@GFORTRAN_1.0 4.3 _gfortran_matmul_i16@GFORTRAN_1.0 4.3 _gfortran_matmul_l16@GFORTRAN_1.0 4.3 _gfortran_maxloc0_16_i16@GFORTRAN_1.0 4.3 _gfortran_maxloc0_16_i1@GFORTRAN_1.0 4.3 _gfortran_maxloc0_16_i2@GFORTRAN_1.0 4.3 _gfortran_maxloc0_16_i4@GFORTRAN_1.0 4.3 _gfortran_maxloc0_16_i8@GFORTRAN_1.0 4.3 _gfortran_maxloc0_16_r10@GFORTRAN_1.0 4.3 _gfortran_maxloc0_16_r4@GFORTRAN_1.0 4.3 _gfortran_maxloc0_16_r8@GFORTRAN_1.0 4.3 _gfortran_maxloc0_4_i16@GFORTRAN_1.0 4.3 _gfortran_maxloc0_8_i16@GFORTRAN_1.0 4.3 _gfortran_maxloc1_16_i16@GFORTRAN_1.0 4.3 _gfortran_maxloc1_16_i1@GFORTRAN_1.0 4.3 _gfortran_maxloc1_16_i2@GFORTRAN_1.0 4.3 _gfortran_maxloc1_16_i4@GFORTRAN_1.0 4.3 _gfortran_maxloc1_16_i8@GFORTRAN_1.0 4.3 _gfortran_maxloc1_16_r10@GFORTRAN_1.0 4.3 _gfortran_maxloc1_16_r4@GFORTRAN_1.0 4.3 _gfortran_maxloc1_16_r8@GFORTRAN_1.0 4.3 _gfortran_maxloc1_4_i16@GFORTRAN_1.0 4.3 _gfortran_maxloc1_8_i16@GFORTRAN_1.0 4.3 _gfortran_maxval_i16@GFORTRAN_1.0 4.3 _gfortran_miall_i16@GFORTRAN_1.4 4.6 _gfortran_miany_i16@GFORTRAN_1.4 4.6 _gfortran_minloc0_16_i16@GFORTRAN_1.0 4.3 _gfortran_minloc0_16_i1@GFORTRAN_1.0 4.3 _gfortran_minloc0_16_i2@GFORTRAN_1.0 4.3 _gfortran_minloc0_16_i4@GFORTRAN_1.0 4.3 _gfortran_minloc0_16_i8@GFORTRAN_1.0 4.3 _gfortran_minloc0_16_r10@GFORTRAN_1.0 4.3 _gfortran_minloc0_16_r4@GFORTRAN_1.0 4.3 _gfortran_minloc0_16_r8@GFORTRAN_1.0 4.3 _gfortran_minloc0_4_i16@GFORTRAN_1.0 4.3 _gfortran_minloc0_8_i16@GFORTRAN_1.0 4.3 _gfortran_minloc1_16_i16@GFORTRAN_1.0 4.3 _gfortran_minloc1_16_i1@GFORTRAN_1.0 4.3 _gfortran_minloc1_16_i2@GFORTRAN_1.0 4.3 _gfortran_minloc1_16_i4@GFORTRAN_1.0 4.3 _gfortran_minloc1_16_i8@GFORTRAN_1.0 4.3 _gfortran_minloc1_16_r10@GFORTRAN_1.0 4.3 _gfortran_minloc1_16_r4@GFORTRAN_1.0 4.3 _gfortran_minloc1_16_r8@GFORTRAN_1.0 4.3 _gfortran_minloc1_4_i16@GFORTRAN_1.0 4.3 _gfortran_minloc1_8_i16@GFORTRAN_1.0 4.3 _gfortran_minval_i16@GFORTRAN_1.0 4.3 _gfortran_miparity_i16@GFORTRAN_1.4 4.6 _gfortran_mmaxloc0_16_i16@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_16_i1@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_16_i2@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_16_i4@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_16_i8@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_16_r10@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_16_r4@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_16_r8@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_4_i16@GFORTRAN_1.0 4.3 _gfortran_mmaxloc0_8_i16@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_16_i16@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_16_i1@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_16_i2@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_16_i4@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_16_i8@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_16_r10@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_16_r4@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_16_r8@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_4_i16@GFORTRAN_1.0 4.3 _gfortran_mmaxloc1_8_i16@GFORTRAN_1.0 4.3 _gfortran_mmaxval_i16@GFORTRAN_1.0 4.3 _gfortran_mminloc0_16_i16@GFORTRAN_1.0 4.3 _gfortran_mminloc0_16_i1@GFORTRAN_1.0 4.3 _gfortran_mminloc0_16_i2@GFORTRAN_1.0 4.3 _gfortran_mminloc0_16_i4@GFORTRAN_1.0 4.3 _gfortran_mminloc0_16_i8@GFORTRAN_1.0 4.3 _gfortran_mminloc0_16_r10@GFORTRAN_1.0 4.3 _gfortran_mminloc0_16_r4@GFORTRAN_1.0 4.3 _gfortran_mminloc0_16_r8@GFORTRAN_1.0 4.3 _gfortran_mminloc0_4_i16@GFORTRAN_1.0 4.3 _gfortran_mminloc0_8_i16@GFORTRAN_1.0 4.3 _gfortran_mminloc1_16_i16@GFORTRAN_1.0 4.3 _gfortran_mminloc1_16_i1@GFORTRAN_1.0 4.3 _gfortran_mminloc1_16_i2@GFORTRAN_1.0 4.3 _gfortran_mminloc1_16_i4@GFORTRAN_1.0 4.3 _gfortran_mminloc1_16_i8@GFORTRAN_1.0 4.3 _gfortran_mminloc1_16_r10@GFORTRAN_1.0 4.3 _gfortran_mminloc1_16_r4@GFORTRAN_1.0 4.3 _gfortran_mminloc1_16_r8@GFORTRAN_1.0 4.3 _gfortran_mminloc1_4_i16@GFORTRAN_1.0 4.3 _gfortran_mminloc1_8_i16@GFORTRAN_1.0 4.3 _gfortran_mminval_i16@GFORTRAN_1.0 4.3 _gfortran_mproduct_i16@GFORTRAN_1.0 4.3 _gfortran_msum_i16@GFORTRAN_1.0 4.3 _gfortran_norm2_r10@GFORTRAN_1.4 4.6 _gfortran_parity_l16@GFORTRAN_1.4 4.6 _gfortran_pow_c10_i16@GFORTRAN_1.0 4.3 _gfortran_pow_c16_i16@GFORTRAN_1.0 4.6 _gfortran_pow_c16_i4@GFORTRAN_1.0 4.6 _gfortran_pow_c16_i8@GFORTRAN_1.0 4.6 _gfortran_pow_c4_i16@GFORTRAN_1.0 4.3 _gfortran_pow_c8_i16@GFORTRAN_1.0 4.3 _gfortran_pow_i16_i16@GFORTRAN_1.0 4.3 _gfortran_pow_i16_i4@GFORTRAN_1.0 4.3 _gfortran_pow_i16_i8@GFORTRAN_1.0 4.3 _gfortran_pow_i4_i16@GFORTRAN_1.0 4.3 _gfortran_pow_i8_i16@GFORTRAN_1.0 4.3 _gfortran_pow_r10_i16@GFORTRAN_1.0 4.3 _gfortran_pow_r16_i16@GFORTRAN_1.0 4.6 _gfortran_pow_r16_i4@GFORTRAN_1.0 4.6 _gfortran_pow_r16_i8@GFORTRAN_1.0 4.6 _gfortran_pow_r4_i16@GFORTRAN_1.0 4.3 _gfortran_pow_r8_i16@GFORTRAN_1.0 4.3 _gfortran_product_i16@GFORTRAN_1.0 4.3 _gfortran_reshape_16@GFORTRAN_1.0 4.3 _gfortran_shape_16@GFORTRAN_1.0 4.3 _gfortran_siall_i16@GFORTRAN_1.4 4.6 _gfortran_siany_i16@GFORTRAN_1.4 4.6 _gfortran_siparity_i16@GFORTRAN_1.4 4.6 _gfortran_smaxloc0_16_i16@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_16_i1@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_16_i2@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_16_i4@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_16_i8@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_16_r10@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_16_r4@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_16_r8@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_4_i16@GFORTRAN_1.0 4.3 _gfortran_smaxloc0_8_i16@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_16_i16@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_16_i1@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_16_i2@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_16_i4@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_16_i8@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_16_r10@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_16_r4@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_16_r8@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_4_i16@GFORTRAN_1.0 4.3 _gfortran_smaxloc1_8_i16@GFORTRAN_1.0 4.3 _gfortran_smaxval_i16@GFORTRAN_1.0 4.3 _gfortran_sminloc0_16_i16@GFORTRAN_1.0 4.3 _gfortran_sminloc0_16_i1@GFORTRAN_1.0 4.3 _gfortran_sminloc0_16_i2@GFORTRAN_1.0 4.3 _gfortran_sminloc0_16_i4@GFORTRAN_1.0 4.3 _gfortran_sminloc0_16_i8@GFORTRAN_1.0 4.3 _gfortran_sminloc0_16_r10@GFORTRAN_1.0 4.3 _gfortran_sminloc0_16_r4@GFORTRAN_1.0 4.3 _gfortran_sminloc0_16_r8@GFORTRAN_1.0 4.3 _gfortran_sminloc0_4_i16@GFORTRAN_1.0 4.3 _gfortran_sminloc0_8_i16@GFORTRAN_1.0 4.3 _gfortran_sminloc1_16_i16@GFORTRAN_1.0 4.3 _gfortran_sminloc1_16_i1@GFORTRAN_1.0 4.3 _gfortran_sminloc1_16_i2@GFORTRAN_1.0 4.3 _gfortran_sminloc1_16_i4@GFORTRAN_1.0 4.3 _gfortran_sminloc1_16_i8@GFORTRAN_1.0 4.3 _gfortran_sminloc1_16_r10@GFORTRAN_1.0 4.3 _gfortran_sminloc1_16_r4@GFORTRAN_1.0 4.3 _gfortran_sminloc1_16_r8@GFORTRAN_1.0 4.3 _gfortran_sminloc1_4_i16@GFORTRAN_1.0 4.3 _gfortran_sminloc1_8_i16@GFORTRAN_1.0 4.3 _gfortran_sminval_i16@GFORTRAN_1.0 4.3 _gfortran_specific__abs_i16@GFORTRAN_1.0 4.3 _gfortran_specific__char_1_i16@GFORTRAN_1.0 4.3 _gfortran_specific__dim_i16@GFORTRAN_1.0 4.3 _gfortran_specific__index_1_i16@GFORTRAN_1.0 4.3 _gfortran_specific__len_1_i16@GFORTRAN_1.0 4.3 _gfortran_specific__mod_i16@GFORTRAN_1.0 4.3 _gfortran_specific__nint_16_10@GFORTRAN_1.0 4.3 _gfortran_specific__nint_16_16@GFORTRAN_1.0 4.6 _gfortran_specific__nint_16_4@GFORTRAN_1.0 4.3 _gfortran_specific__nint_16_8@GFORTRAN_1.0 4.3 _gfortran_specific__sign_i16@GFORTRAN_1.0 4.3 _gfortran_sproduct_i16@GFORTRAN_1.0 4.3 _gfortran_ssum_i16@GFORTRAN_1.0 4.3 _gfortran_sum_i16@GFORTRAN_1.0 4.3 _gfortran_transpose_i16@GFORTRAN_1.0 4.3 gnat-4.8-4.8.2/debian/libstdc++6.symbols.ldbl.32bit.s3900000644000000000000000000010235412173542725016717 0ustar CXXABI_LDBL_1.3@CXXABI_LDBL_1.3 4.2.1 GLIBCXX_LDBL_3.4.10@GLIBCXX_LDBL_3.4.10 4.3.0~rc2 GLIBCXX_LDBL_3.4.7@GLIBCXX_LDBL_3.4.7 4.2.1 GLIBCXX_LDBL_3.4@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt3tr14hashIgEclEg@GLIBCXX_LDBL_3.4.10 4.3.0~rc2 _ZNKSt4hashIgEclEg@GLIBCXX_LDBL_3.4.10 4.3.0~rc2 _ZGVNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZGVNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZGVNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZGVNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZGVNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZGVNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZGVNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZGVNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIjEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIlEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intImEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intItEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIxEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIyEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16_M_extract_floatES4_S4_RSt8ios_baseRSt12_Ios_IostateRSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRPv@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRb@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRf@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRj@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRl@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRm@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRt@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRx@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRy@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRPv@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRb@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRf@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRj@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRl@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRm@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRt@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRx@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRy@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8__do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIjEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIlEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intImEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intItEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIxEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIyEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16_M_extract_floatES4_S4_RSt8ios_baseRSt12_Ios_IostateRSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRPv@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRb@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRf@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRj@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRl@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRm@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRt@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRx@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_RSt8ios_baseRSt12_Ios_IostateRy@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRPv@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRb@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRf@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRj@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRl@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRm@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRt@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRx@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRy@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8__do_getES4_S4_RSt8ios_baseRSt12_Ios_IostateRd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE12_M_group_intEPKcmcRSt8ios_basePcSA_Ri@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES4_S4_RSt8ios_basecT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intImEES4_S4_RSt8ios_basecT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIxEES4_S4_RSt8ios_basecT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIyEES4_S4_RSt8ios_basecT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE14_M_group_floatEPKcmcS7_PcS8_Ri@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES4_S4_RSt8ios_baseccT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIgEES4_S4_RSt8ios_baseccT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_RSt8ios_basecPKv@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_RSt8ios_basecb@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_RSt8ios_basecd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_RSt8ios_basecg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_RSt8ios_basecl@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_RSt8ios_basecm@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_RSt8ios_basecx@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_RSt8ios_basecy@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6_M_padEciRSt8ios_basePcPKcRi@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_RSt8ios_basecPKv@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_RSt8ios_basecb@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_RSt8ios_basecd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_RSt8ios_basecg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_RSt8ios_basecl@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_RSt8ios_basecm@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_RSt8ios_basecx@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_RSt8ios_basecy@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE8__do_putES4_RSt8ios_basecd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE12_M_group_intEPKcmwRSt8ios_basePwSA_Ri@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIlEES4_S4_RSt8ios_basewT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intImEES4_S4_RSt8ios_basewT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIxEES4_S4_RSt8ios_basewT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIyEES4_S4_RSt8ios_basewT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE14_M_group_floatEPKcmwPKwPwSA_Ri@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIdEES4_S4_RSt8ios_basewcT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIgEES4_S4_RSt8ios_basewcT_@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_RSt8ios_basewPKv@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_RSt8ios_basewb@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_RSt8ios_basewd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_RSt8ios_basewg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_RSt8ios_basewl@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_RSt8ios_basewm@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_RSt8ios_basewx@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_RSt8ios_basewy@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6_M_padEwiRSt8ios_basePwPKwRi@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_RSt8ios_basewPKv@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_RSt8ios_basewb@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_RSt8ios_basewd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_RSt8ios_basewg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_RSt8ios_basewl@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_RSt8ios_basewm@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_RSt8ios_basewx@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_RSt8ios_basewy@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE8__do_putES4_RSt8ios_basewd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb0EEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb1EEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8__do_getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb0EEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb1EEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRSbIwS3_SaIwEE@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRSbIwS3_SaIwEE@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8__do_getES4_S4_bRSt8ios_baseRSt12_Ios_IostateRd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_bRSt8ios_basecRKSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES4_bRSt8ios_basecg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_bRSt8ios_basecRKSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES4_bRSt8ios_basecg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE8__do_putES4_bRSt8ios_basecd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb0EEES4_S4_RSt8ios_basecRKSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb1EEES4_S4_RSt8ios_basecRKSs@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_bRSt8ios_basewRKSbIwS3_SaIwEE@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES4_bRSt8ios_basewg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_bRSt8ios_basewRKSbIwS3_SaIwEE@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES4_bRSt8ios_basewg@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE8__do_putES4_bRSt8ios_basewd@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb0EEES4_S4_RSt8ios_basewRKSbIwS3_SaIwEE@GLIBCXX_LDBL_3.4 4.2.1 _ZNKSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb1EEES4_S4_RSt8ios_basewRKSbIwS3_SaIwEE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSi10_M_extractIgEERSiRT_@GLIBCXX_LDBL_3.4.7 4.2.1 _ZNSirsERg@GLIBCXX_LDBL_3.4 4.2.1 _ZNSo9_M_insertIgEERSoT_@GLIBCXX_LDBL_3.4.7 4.2.1 _ZNSolsEg@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIgEERS2_RT_@GLIBCXX_LDBL_3.4.7 4.2.1 _ZNSt13basic_istreamIwSt11char_traitsIwEErsERg@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIgEERS2_T_@GLIBCXX_LDBL_3.4.7 4.2.1 _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEg@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE10has_denormE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE10is_boundedE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE10is_integerE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE11round_styleE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE12has_infinityE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE12max_digits10E@GLIBCXX_LDBL_3.4 4.5.0 _ZNSt14numeric_limitsIgE12max_exponentE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE12min_exponentE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE13has_quiet_NaNE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE14is_specializedE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE14max_exponent10E@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE14min_exponent10E@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE15has_denorm_lossE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE15tinyness_beforeE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE17has_signaling_NaNE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE5radixE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE5trapsE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE6digitsE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE8digits10E@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE8is_exactE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE9is_iec559E@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE9is_moduloE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt14numeric_limitsIgE9is_signedE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev@GLIBCXX_LDBL_3.4 4.2.1 _ZSt14__convert_to_vIgEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9has_facetINSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEEbRKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9has_facetINSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEEbRKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9has_facetINSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEEbRKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9has_facetINSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEEbRKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9has_facetINSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEEbRKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9has_facetINSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEEbRKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9has_facetINSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEEbRKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9has_facetINSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEEbRKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9use_facetINSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEERKT_RKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9use_facetINSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEERKT_RKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9use_facetINSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEERKT_RKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9use_facetINSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEERKT_RKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9use_facetINSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEERKT_RKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9use_facetINSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEERKT_RKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9use_facetINSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEERKT_RKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZSt9use_facetINSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEERKT_RKSt6locale@GLIBCXX_LDBL_3.4 4.2.1 _ZStlsIgcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E@GLIBCXX_LDBL_3.4 4.2.1 _ZStlsIgwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E@GLIBCXX_LDBL_3.4 4.2.1 _ZStrsIgcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E@GLIBCXX_LDBL_3.4 4.2.1 _ZStrsIgwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E@GLIBCXX_LDBL_3.4 4.2.1 _ZTINSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTINSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTINSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTINSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTINSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTINSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTINSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTINSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTIPKg@CXXABI_LDBL_1.3 4.2.1 _ZTIPg@CXXABI_LDBL_1.3 4.2.1 _ZTIg@CXXABI_LDBL_1.3 4.2.1 _ZTSNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTSNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTSNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTSNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTSNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTSNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTSNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTSNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTSPKg@CXXABI_LDBL_1.3 4.2.1 _ZTSPg@CXXABI_LDBL_1.3 4.2.1 _ZTSg@CXXABI_LDBL_1.3 4.2.1 _ZTVNSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTVNSt17__gnu_cxx_ldbl1287num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTVNSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTVNSt17__gnu_cxx_ldbl1287num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTVNSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTVNSt17__gnu_cxx_ldbl1289money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTVNSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE@GLIBCXX_LDBL_3.4 4.2.1 _ZTVNSt17__gnu_cxx_ldbl1289money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE@GLIBCXX_LDBL_3.4 4.2.1 gnat-4.8-4.8.2/debian/NEWS.html0000644000000000000000000011774612173542725012567 0ustar GCC 4.8 Release Series — Changes, New Features, and Fixes - GNU Project - Free Software Foundation (FSF)

GCC 4.8 Release Series
Changes, New Features, and Fixes

Caveats

GCC now uses C++ as its implementation language. This means that to build GCC from sources, you will need a C++ compiler that understands C++ 2003. For more details on the rationale and specific changes, please refer to the C++ conversion page.

To enable the Graphite framework for loop optimizations you now need CLooG version 0.18.0 and ISL version 0.11.1. Both can be obtained from the GCC infrastructure directory. The installation manual contains more information about requirements to build GCC.

GCC now uses a more aggressive analysis to derive an upper bound for the number of iterations of loops using constraints imposed by language standards. This may cause non-conforming programs to no longer work as expected, such as SPEC CPU 2006 464.h264ref and 416.gamess. A new option, -fno-aggressive-loop-optimizations, was added to disable this aggressive analysis. In some loops that have known constant number of iterations, but undefined behavior is known to occur in the loop before reaching or during the last iteration, GCC will warn about the undefined behavior in the loop instead of deriving lower upper bound of the number of iterations for the loop. The warning can be disabled with -Wno-aggressive-loop-optimizations.

On ARM, a bug has been fixed in GCC's implementation of the AAPCS rules for the layout of vectors that could lead to wrong code being generated. Vectors larger than 8 bytes in size are now by default aligned to an 8-byte boundary. This is an ABI change: code that makes explicit use of vector types may be incompatible with binary objects built with older versions of GCC. Auto-vectorized code is not affected by this change.

On AVR, support has been removed for the command-line option -mshort-calls deprecated in GCC 4.7.

On AVR, the configure option --with-avrlibc supported since GCC 4.7.2 is turned on per default for all non-RTEMS configurations. This option arranges for a better integration of AVR Libc with avr-gcc. For technical details, see PR54461. To turn off the option in non-RTEMS configurations, use --with-avrlibc=no. If the compiler is configured for RTEMS, the option is always turned off.

More information on porting to GCC 4.8 from previous versions of GCC can be found in the porting guide for this release.

General Optimizer Improvements (and Changes)

  • DWARF4 is now the default when generating DWARF debug information. When -g is used on a platform that uses DWARF debugging information, GCC will now default to -gdwarf-4 -fno-debug-types-section.
    GDB 7.5, Valgrind 3.8.0 and elfutils 0.154 debug information consumers support DWARF4 by default. Before GCC 4.8 the default version used was DWARF2. To make GCC 4.8 generate an older DWARF version use -g together with -gdwarf-2 or -gdwarf-3. The default for Darwin and VxWorks is still -gdwarf-2 -gstrict-dwarf.
  • A new general optimization level, -Og, has been introduced. It addresses the need for fast compilation and a superior debugging experience while providing a reasonable level of runtime performance. Overall experience for development should be better than the default optimization level -O0.
  • A new option -ftree-partial-pre was added to control the partial redundancy elimination (PRE) optimization. This option is enabled by default at the -O3 optimization level, and it makes PRE more aggressive.
  • The option -fconserve-space has been removed; it was no longer useful on most targets since GCC supports putting variables into BSS without making them common.
  • The struct reorg and matrix reorg optimizations (command-line options -fipa-struct-reorg and -fipa-matrix-reorg) have been removed. They did not always work correctly, nor did they work with link-time optimization (LTO), hence were only applicable to programs consisting of a single translation unit.
  • Several scalability bottle-necks have been removed from GCC's optimization passes. Compilation of extremely large functions, e.g. due to the use of the flatten attribute in the "Eigen" C++ linear algebra templates library, is significantly faster than previous releases of GCC.
  • Link-time optimization (LTO) improvements:
    • LTO partitioning has been rewritten for better reliability and maintanibility. Several important bugs leading to link failures have been fixed.
  • Interprocedural optimization improvements:
    • A new symbol table has been implemented. It builds on existing callgraph and varpool modules and provide a new API. Unusual symbol visibilities and aliases are handled more consistently leading to, for example, more aggressive unreachable code removal with LTO.
    • The inline heuristic can now bypass limits on the size of of inlined functions when the inlining is particularly profitable. This happens, for example, when loop bounds or array strides get propagated.
    • Values passed through aggregates (either by value or reference) are now propagated at the inter-procedural level leading to better inlining decisions (for example in the case of Fortran array descriptors) and devirtualization.
  • AddressSanitizer , a fast memory error detector, has been added and can be enabled via -fsanitize=address. Memory access instructions will be instrumented to detect heap-, stack-, and global-buffer overflow as well as use-after-free bugs. To get nicer stacktraces, use -fno-omit-frame-pointer. The AddressSanitizer is available on IA-32/x86-64/x32/PowerPC/PowerPC64 GNU/Linux and on x86-64 Darwin.
  • ThreadSanitizer has been added and can be enabled via -fsanitize=thread. Instructions will be instrumented to detect data races. The ThreadSanitizer is available on x86-64 GNU/Linux.

New Languages and Language specific improvements

C family

  • Each diagnostic emitted now includes the original source line and a caret '^' indicating the column. The option -fno-diagnostics-show-caret suppresses this information.
  • The option -ftrack-macro-expansion=2 is now enabled by default. This allows the compiler to display the macro expansion stack in diagnostics. Combined with the caret information, an example diagnostic showing these two features is:
    t.c:1:94: error: invalid operands to binary < (have ‘struct mystruct’ and ‘float’)
     #define MYMAX(A,B)    __extension__ ({ __typeof__(A) __a = (A); __typeof__(B) __b = (B); __a < __b ? __b : __a; })
                                                                                                  ^
    t.c:7:7: note: in expansion of macro 'MYMAX'
       X = MYMAX(P, F);
           ^
    
  • A new -Wsizeof-pointer-memaccess warning has been added (also enabled by -Wall) to warn about suspicious length parameters to certain string and memory built-in functions if the argument uses sizeof. This warning warns e.g. about memset (ptr, 0, sizeof (ptr)); if ptr is not an array, but a pointer, and suggests a possible fix, or about memcpy (&foo, ptr, sizeof (&foo));.
  • The new option -Wpedantic is an alias for -pedantic, which is now deprecated. The forms -Wno-pedantic, -Werror=pedantic, and -Wno-error=pedantic work in the same way as for any other -W option. One caveat is that -Werror=pedantic is not equivalent to -pedantic-errors, since the latter makes into errors some warnings that are not controlled by -Wpedantic, and the former only affects diagnostics that are disabled when using -Wno-pedantic.
  • The option -Wshadow no longer warns if a declaration shadows a function declaration, unless the former declares a function or pointer to function, because this is a common and valid case in real-world code.

C++

  • G++ now implements the C++11 thread_local keyword; this differs from the GNU __thread keyword primarily in that it allows dynamic initialization and destruction semantics. Unfortunately, this support requires a run-time penalty for references to non-function-local thread_local variables defined in a different translation unit even if they don't need dynamic initialization, so users may want to continue to use __thread for TLS variables with static initialization semantics.

    If the programmer can be sure that no use of the variable in a non-defining TU needs to trigger dynamic initialization (either because the variable is statically initialized, or a use of the variable in the defining TU will be executed before any uses in another TU), they can avoid this overhead with the -fno-extern-tls-init option.

    OpenMP threadprivate variables now also support dynamic initialization and destruction by the same mechanism.

  • G++ now implements the C++11 attribute syntax, e.g.
    [[noreturn]] void f();
    
    and also the alignment specifier, e.g.
    alignas(double) int i;
    
  • G++ now implements C++11 inheriting constructors, e.g.
    struct A { A(int); };
    struct B: A { using A::A; }; // defines B::B(int)
    B b(42); // OK
    
  • As of GCC 4.8.1, G++ implements the change to decltype semantics from N3276.
    struct A f();
    decltype(f()) g();    // OK, return type of f() is not required to be complete.
    
  • G++ now supports a -std=c++1y option for experimentation with features proposed for the next revision of the standard, expected around 2017. Currently the only difference from -std=c++11 is support for return type deduction in normal functions, as proposed in N3386.
  • The G++ namespace association extension, __attribute ((strong)), has been deprecated. Inline namespaces should be used instead.
  • G++ now supports a -fext-numeric-literal option to control whether GNU numeric literal suffixes are accepted as extensions or processed as C++11 user-defined numeric literal suffixes. The flag is on (use suffixes for GNU literals) by default for -std=gnu++*, and -std=c++98. The flag is off (use suffixes for user-defined literals) by default for -std=c++11 and later.

Runtime Library (libstdc++)

  • Improved experimental support for the new ISO C++ standard, C++11, including:
    • forward_list meets the allocator-aware container requirements;
    • this_thread::sleep_for(), this_thread::sleep_until() and this_thread::yield() are defined without requiring the configure option --enable-libstdcxx-time;
  • Improvements to <random>:
    • SSE optimized normal_distribution.
    • Use of hardware RNG instruction for random_device on new x86 processors (requires the assembler to support the instruction.)
    and <ext/random>:
    • New random number engine simd_fast_mersenne_twister_engine with an optimized SSE implementation.
    • New random number distributions beta_distribution, normal_mv_distribution, rice_distribution, nakagami_distribution, pareto_distribution, k_distribution, arcsine_distribution, hoyt_distribution.
  • Added --disable-libstdcxx-verbose configure option to disable diagnostic messages issued when a process terminates abnormally. This may be useful for embedded systems to reduce the size of executables that link statically to the library.

Fortran

  • Compatibility notice:
    • Module files: The version of module files (.mod) has been incremented. Fortran MODULEs compiled by earlier GCC versions have to be recompiled, when they are USEd by files compiled with GCC 4.8. GCC 4.8 is not able to read .mod files created by earlier versions; attempting to do so gives an error message.
      Note: The ABI of the produced assembler data itself has not changed; object files and libraries are fully compatible with older versions except as noted below.
    • ABI: Some internal names (used in the assembler/object file) have changed for symbols declared in the specification part of a module. If an affected module – or a file using it via use association – is recompiled, the module and all files which directly use such symbols have to be recompiled as well. This change only affects the following kind of module symbols:
      • Procedure pointers. Note: C-interoperable function pointers (type(c_funptr)) are not affected nor are procedure-pointer components.
      • Deferred-length character strings.
  • The BACKTRACE intrinsic subroutine has been added. It shows a backtrace at an arbitrary place in user code; program execution continues normally afterwards.
  • The -Wc-binding-type warning option has been added (disabled by default). It warns if the a variable might not be C interoperable; in particular, if the variable has been declared using an intrinsic type with default kind instead of using a kind parameter defined for C interoperability in the intrinsic ISO_C_Binding module. Before, this warning was always printed. The -Wc-binding-type option is enabled by -Wall.
  • The -Wrealloc-lhs and -Wrealloc-lhs-all warning command-line options have been added, which diagnose when code to is inserted for automatic (re)allocation of a variable during assignment. This option can be used to decide whether it is safe to use -fno-realloc-lhs. Additionally, it can be used to find automatic (re)allocation in hot loops. (For arrays, replacing var= by var(:)= disables the automatic reallocation.)
  • The -Wcompare-reals command-line option has been added. When this is set, warnings are issued when comparing REAL or COMPLEX types for equality and inequality; consider replacing a == b by abs(a−b) < eps with a suitable eps. -Wcompare-reals is enabled by -Wextra.
  • The -Wtarget-lifetime command-line option has been added (enabled with -Wall), which warns if the pointer in a pointer assignment might outlive its target.
  • Reading floating point numbers which use q for the exponential (such as 4.0q0) is now supported as vendor extension for better compatibility with old data files. It is strongly recommended to use for I/O the equivalent but standard conforming e (such as 4.0e0).

    (For Fortran source code, consider replacing the q in floating-point literals by a kind parameter (e.g. 4.0e0_qp with a suitable qp). Note that – in Fortran source code – replacing q by a simple e is not equivalent.)

  • The GFORTRAN_TMPDIR environment variable for specifying a non-default directory for files opened with STATUS="SCRATCH", is not used anymore. Instead gfortran checks the POSIX/GNU standard TMPDIR environment variable. If TMPDIR is not defined, gfortran falls back to other methods to determine the directory for temporary files as documented in the user manual.
  • Fortran 2003:
    • Support for unlimited polymorphic variables (CLASS(*)) has been added. Nonconstant character lengths are not yet supported.
  • TS 29113:
    • Assumed types (TYPE(*)) are now supported.
    • Experimental support for assumed-rank arrays (dimension(..)) has been added. Note that currently gfortran's own array descriptor is used, which is different from the one defined in TS29113, see gfortran's header file or use the Chasm Language Interoperability Tools.

Go

  • GCC 4.8.0 implements a preliminary version of the upcoming Go 1.1 release. The library support is not quite complete, due to release timing.
  • Go has been tested on GNU/Linux and Solaris platforms for various processors including x86, x86_64, PowerPC, SPARC, and Alpha. It may work on other platforms as well.

New Targets and Target Specific Improvements

AArch64

  • A new port has been added to support AArch64, the new 64-bit architecture from ARM. Note that this is a separate port from the existing 32-bit ARM port.
  • The port provides initial support for the Cortex-A53 and the Cortex-A57 processors with the command line options -mcpu=cortex-a53 and -mcpu=cortex-a57.

ARM

  • Initial support has been added for the AArch32 extensions defined in the ARMv8 architecture.
  • Code generation improvements for the Cortex-A7 and Cortex-A15 CPUs.
  • A new option, -mcpu=marvell-pj4, has been added to generate code for the Marvell PJ4 processor.
  • The compiler can now automatically generate the VFMA, VFMS, REVSH and REV16 instructions.
  • A new vectorizer cost model for Advanced SIMD configurations to improve the auto-vectorization strategies used.
  • The scheduler now takes into account the number of live registers to reduce the amount of spilling that can occur. This should improve code performance in large functions. The limit can be removed by using the option -fno-sched-pressure.
  • Improvements have been made to the Marvell iWMMX code generation and support for the iWMMX2 SIMD unit has been added. The option -mcpu=iwmmxt2 can be used to enable code generation for the latter.
  • A number of code generation improvements for Thumb2 to reduce code size when compiling for the M-profile processors.
  • The RTEMS (arm-rtems) port has been updated to use the EABI.
  • Code generation support for the old FPA and Maverick floating-point architectures has been removed. Ports that previously relied on these features have also been removed. This includes the targets:
    • arm*-*-linux-gnu (use arm*-*-linux-gnueabi)
    • arm*-*-elf (use arm*-*-eabi)
    • arm*-*-uclinux* (use arm*-*-uclinux*eabi)
    • arm*-*-ecos-elf (no alternative)
    • arm*-*-freebsd (no alternative)
    • arm*-wince-pe* (no alternative).

AVR

  • Support for the "Embedded C" fixed-point has been added. For details, see the GCC wiki and the user manual. The support is not complete.
  • A new print modifier %r for register operands in inline assembler is supported. It will print the raw register number without the register prefix 'r':
        /* Return the most significant byte of 'val', a 64-bit value.  */
    
        unsigned char msb (long long val)
        {
          unsigned char c;
          __asm__ ("mov %0, %r1+7" : "=r" (c) : "r" (val));
          return c;
        }
    The inline assembler in this example will generate code like
        mov r24, 8+7
    provided c is allocated to R24 and val is allocated to R8R15. This works because the GNU assembler accepts plain register numbers without register prefix.
  • Static initializers with 3-byte symbols are supported now:
        extern const __memx char foo;
        const __memx void *pfoo = &foo;
    This requires at least Binutils 2.23.

IA-32/x86-64

  • Allow -mpreferred-stack-boundary=3 for the x86-64 architecture with SSE extensions disabled. Since the x86-64 ABI requires 16 byte stack alignment, this is ABI incompatible and intended to be used in controlled environments where stack space is an important limitation. This option will lead to wrong code when functions compiled with 16 byte stack alignment (such as functions from a standard library) are called with misaligned stack. In this case, SSE instructions may lead to misaligned memory access traps. In addition, variable arguments will be handled incorrectly for 16 byte aligned objects (including x87 long double and __int128), leading to wrong results. You must build all modules with -mpreferred-stack-boundary=3, including any libraries. This includes the system libraries and startup modules.
  • Support for the new Intel processor codename Broadwell with RDSEED, ADCX, ADOX, PREFETCHW is available through -madx, -mprfchw, -mrdseed command-line options.
  • Support for the Intel RTM and HLE intrinsics, built-in functions and code generation is available via -mrtm and -mhle.
  • Support for the Intel FXSR, XSAVE and XSAVEOPT instruction sets. Intrinsics and built-in functions are available via -mfxsr, -mxsave and -mxsaveopt respectively.
  • New -maddress-mode=[short|long] options for x32. -maddress-mode=short overrides default 64-bit addresses to 32-bit by emitting the 0x67 address-size override prefix. This is the default address mode for x32.
  • New built-in functions to detect run-time CPU type and ISA:
    • A built-in function __builtin_cpu_is has been added to detect if the run-time CPU is of a particular type. It returns a positive integer on a match and zero otherwise. It accepts one string literal argument, the CPU name. For example, __builtin_cpu_is("westmere") returns a positive integer if the run-time CPU is an Intel Core i7 Westmere processor. Please refer to the user manual for the list of valid CPU names recognized.
    • A built-in function __builtin_cpu_supports has been added to detect if the run-time CPU supports a particular ISA feature. It returns a positive integer on a match and zero otherwise. It accepts one string literal argument, the ISA feature. For example, __builtin_cpu_supports("ssse3") returns a positive integer if the run-time CPU supports SSSE3 instructions. Please refer to the user manual for the list of valid ISA names recognized.

    Caveat: If these built-in functions are called before any static constructors are invoked, like during IFUNC initialization, then the CPU detection initialization must be explicitly run using this newly provided built-in function, __builtin_cpu_init. The initialization needs to be done only once. For example, this is how the invocation would look like inside an IFUNC initializer:

        static void (*some_ifunc_resolver(void))(void)
        {
          __builtin_cpu_init();
          if (__builtin_cpu_is("amdfam10h") ...
          if (__builtin_cpu_supports("popcnt") ...
        }
        
  • Function Multiversioning Support with G++:

    It is now possible to create multiple function versions each targeting a specific processor and/or ISA. Function versions have the same signature but different target attributes. For example, here is a program with function versions:

        __attribute__ ((target ("default")))
        int foo(void)
        {
          return 1;
        }
    
        __attribute__ ((target ("sse4.2")))
        int foo(void)
        {
          return 2;
        }
    
        int main (void)
        {
          int (*p) = &foo;
          assert ((*p)() == foo());
          return 0;
        }
        
    Please refer to this wiki for more information.
  • The x86 backend has been improved to allow option -fschedule-insns to work reliably. This option can be used to schedule instructions better and leads to improved performace in certain cases.
  • Windows MinGW-w64 targets (*-w64-mingw*) require at least r5437 from the Mingw-w64 trunk.
  • Support for new AMD family 15h processors (Steamroller core) is now available through the -march=bdver3 and -mtune=bdver3 options.
  • Support for new AMD family 16h processors (Jaguar core) is now available through the -march=btver2 and -mtune=btver2 options.

FRV

  • This target now supports the -fstack-usage command-line option.

MIPS

  • GCC can now generate code specifically for the R4700, Broadcom XLP and MIPS 34kn processors. The associated -march options are -march=r4700, -march=xlp and -march=34kn respectively.
  • GCC now generates better DSP code for MIPS 74k cores thanks to further scheduling optimizations.
  • The MIPS port now supports the -fstack-check option.
  • GCC now passes the -mmcu and -mno-mcu options to the assembler.
  • Previous versions of GCC would silently accept -fpic and -fPIC for -mno-abicalls targets like mips*-elf. This combination was not intended or supported, and did not generate position-independent code. GCC 4.8 now reports an error when this combination is used.

PowerPC / PowerPC64 / RS6000

  • SVR4 configurations (GNU/Linux, FreeBSD, NetBSD) no longer save, restore or update the VRSAVE register by default. The respective operating systems manage the VRSAVE register directly.
  • Large TOC support has been added for AIX through the command line option -mcmodel=large.
  • Native Thread-Local Storage support has been added for AIX.
  • VMX (Altivec) and VSX instruction sets now are enabled implicitly when targetting processors that support those hardware features on AIX 6.1 and above.

RX

  • This target will now issue a warning message whenever multiple fast interrupt handlers are found in the same cpmpilation unit. This feature can be turned off by the new -mno-warn-multiple-fast-interrupts command-line option.

S/390, System z

  • Support for the IBM zEnterprise zEC12 processor has been added. When using the -march=zEC12 option, the compiler will generate code making use of the following new instructions:
    • load and trap instructions
    • 2 new compare and trap instructions
    • rotate and insert selected bits - without CC clobber
    The -mtune=zEC12 option enables zEC12 specific instruction scheduling without making use of new instructions.
  • Register pressure sensitive instruction scheduling is enabled by default.
  • The ifunc function attribute is enabled by default.
  • memcpy and memcmp invokations on big memory chunks or with run time lengths are not generated inline anymore when tuning for z10 or higher. The purpose is to make use of the IFUNC optimized versions in Glibc.

SH

  • The default alignment settings have been reduced to be less aggressive. This results in more compact code for optimization levels other than -Os.
  • Improved support for the __atomic built-in functions:
    • A new option -matomic-model=model selects the model for the generated atomic sequences. The following models are supported:
      soft-gusa
      Software gUSA sequences (SH3* and SH4* only). On SH4A targets this will now also partially utilize the movco.l and movli.l instructions. This is the default when the target is sh3*-*-linux* or sh4*-*-linux*.
      hard-llcs
      Hardware movco.l / movli.l sequences (SH4A only).
      soft-tcb
      Software thread control block sequences.
      soft-imask
      Software interrupt flipping sequences (privileged mode only). This is the default when the target is sh1*-*-linux* or sh2*-*-linux*.
      none
      Generates function calls to the respective __atomic built-in functions. This is the default for SH64 targets or when the target is not sh*-*-linux*.
    • The option -msoft-atomic has been deprecated. It is now an alias for -matomic-model=soft-gusa.
    • A new option -mtas makes the compiler generate the tas.b instruction for the __atomic_test_and_set built-in function regardless of the selected atomic model.
    • The __sync functions in libgcc now reflect the selected atomic model when building the toolchain.
  • Added support for the mov.b and mov.w instructions with displacement addressing.
  • Added support for the SH2A instructions movu.b and movu.w.
  • Various improvements to code generated for integer arithmetic.
  • Improvements to conditional branches and code that involves the T bit. A new option -mzdcbranch tells the compiler to favor zero-displacement branches. This is enabled by default for SH4* targets.
  • The pref instruction will now be emitted by the __builtin_prefetch built-in function for SH3* targets.
  • The fmac instruction will now be emitted by the fmaf standard function and the __builtin_fmaf built-in function.
  • The -mfused-madd option has been deprecated in favor of the machine-independent -ffp-contract option. Notice that the fmac instruction will now be generated by default for expressions like a * b + c. This is due to the compiler default setting -ffp-contract=fast.
  • Added new options -mfsrra and -mfsca to allow the compiler using the fsrra and fsca instructions on targets other than SH4A (where they are already enabled by default).
  • Added support for the __builtin_bswap32 built-in function. It is now expanded as a sequence of swap.b and swap.w instructions instead of a library function call.
  • The behavior of the -mieee option has been fixed and the negative form -mno-ieee has been added to control the IEEE conformance of floating point comparisons. By default -mieee is now enabled and the option -ffinite-math-only implicitly sets -mno-ieee.
  • Added support for the built-in functions __builtin_thread_pointer and __builtin_set_thread_pointer. This assumes that GBR is used to hold the thread pointer of the current thread. Memory loads and stores relative to the address returned by __builtin_thread_pointer will now also utilize GBR based displacement address modes.

SPARC

  • Added optimized instruction scheduling for Niagara4.

TILE-Gx

  • Added support for the -mcmodel=MODEL command-line option. The models supported are small and large.

V850

  • This target now supports the E3V5 architecture via the use of the new -mv850e3v5 command-line option. It also has experimental support for the e3v5 LOOP instruction which can be enabled via the new -mloop command-line option.

XStormy16

  • This target now supports the -fstack-usage command-line option.

Operating Systems

Windows (Cygwin)

  • Executables are now linked against shared libgcc by default. The previous default was to link statically, which can still be done by explicitly specifying -static or -static-libgcc on the command line. However it is strongly advised against, as it will cause problems for any application that makes use of DLLs compiled by GCC. It should be alright for a monolithic stand-alone application that only links against the Windows OS DLLs, but offers little or no benefit.
gnat-4.8-4.8.2/debian/libgfortran3.symbols.ia640000644000000000000000000000040512173542725015654 0ustar libgfortran.so.3 libgfortran3 #MINVER# #include "libgfortran3.symbols.common" #include "libgfortran3.symbols.10" #include "libgfortran3.symbols.16" #include "libgfortran3.symbols.16.powerpc" #include "libgfortran3.symbols.64" #include "libgfortran3.symbols.qf" gnat-4.8-4.8.2/debian/gcj-wrapper-BV0000644000000000000000000000566712173542725013574 0ustar #!/usr/bin/perl -w # # Starts the GNU Java compiler. # # Command-line arguments should be in the style of Sun's Java compiler; # these will be converted to gcj arguments before being passed to the # gcj itself. # # Copyright (C) 2002-2003 by Ben Burton # Based on the original gcj-wrapper-3.2 shell script. use strict; # The real Java compiler: my $javaCompiler = '/usr/bin/gcj-@BV@'; # The command-line arguments to pass to the real Java compiler: my @commandLine; # The warning flags to pass to the GNU Java compiler: my $warnings = '-Wall'; # Build the command-line from the arguments given. my $parsingOptions = 1; my $copyNextArg = 0; my $ignoreNextArg = 0; my $appendNextArg = ''; foreach my $arg (@ARGV) { # See if we already know what to do with this argument. if ($ignoreNextArg) { # Throw it away. $ignoreNextArg = 0; next; } elsif ($copyNextArg or not $parsingOptions) { # Copy it directly. push @commandLine, $arg; $copyNextArg = 0; next; } elsif ($appendNextArg) { # Append it to $appendNextArg and then copy directly. push @commandLine, ($appendNextArg . $arg); $appendNextArg = ''; next; } # Try to interpret Sun-style options. if ($arg eq '-version') { push @commandLine, '--version'; } elsif ($arg eq '-h' or $arg eq '-help') { push @commandLine, '--help'; } elsif ($arg eq '-classpath' or $arg eq '--classpath' or $arg eq '--cp') { $appendNextArg = '--classpath='; } elsif ($arg eq '-encoding' or $arg eq '-bootclasspath' or $arg eq '-extdirs') { $appendNextArg = '-' . $arg . '='; } elsif ($arg eq '-d') { push @commandLine, '-d'; $copyNextArg = 1; } elsif ($arg eq '-nowarn') { $warnings = ''; } elsif ($arg =~ /^-g/) { # Some kind of debugging option - just switch debugging on. push @commandLine, '-g' if ($arg ne '-g:none'); } elsif ($arg eq '-O') { push @commandLine, '-O2'; } elsif ($arg eq '-Xss') { push @commandLine, $arg; } elsif ($arg =~ /^-X/) { # An extended Sun option (which we don't support). push @commandLine, '--help' if ($arg eq '-X'); } elsif ($arg eq '-source' or $arg eq '-sourcepath' or $arg eq '-target') { # An unsupported option with a following argument. $ignoreNextArg = 1; } elsif ($arg =~ /^-/) { # An unsupported standalone option. } else { # Some non-option argument has been given. # Stop parsing options at this point. push @commandLine, $arg; $parsingOptions = 0; } } # Was there a partial argument that was never completed? push @commandLine, $appendNextArg if ($appendNextArg); # Call the real Java compiler. my @fullCommandLine = ( $javaCompiler, '-C' ); push @fullCommandLine, $warnings if ($warnings); push @fullCommandLine, @commandLine; exec @fullCommandLine or exit(1); gnat-4.8-4.8.2/debian/rules.source0000644000000000000000000000052312173542726013462 0ustar SOURCE_DIR := $(dir $(lastword $(MAKEFILE_LIST))) patchdir = $(SOURCE_DIR)/patches include $(SOURCE_DIR)/debian/rules.defs include $(SOURCE_DIR)/debian/rules.patch include $(SOURCE_DIR)/debian/rules.unpack patch-source: $(patch_stamp) clean-source: rm -rf $(stampdir) rm -rf $(gcc_srcdir) $(gdc_srcdir) rm -rf bin rm -rf $(srcdir) gnat-4.8-4.8.2/debian/lib64itm1.symbols0000644000000000000000000000022612274247101014222 0ustar libitm.so.1 lib64itm1 #MINVER# #include "libitm1.symbols.common" #include "libitm1.symbols.64bit" (arch=amd64 i386 x32)#include "libitm1.symbols.x86" gnat-4.8-4.8.2/debian/lib32quadmath0.symbols0000644000000000000000000000012012173542725015230 0ustar libquadmath.so.0 lib32quadmath0 #MINVER# #include "libquadmath0.symbols.common" gnat-4.8-4.8.2/debian/lib64gfortran3.symbols.mipsel0000644000000000000000000000031312173542725016552 0ustar libgfortran.so.3 lib64gfortran3 #MINVER# #include "libgfortran3.symbols.common" #include "libgfortran3.symbols.16.powerpc" #include "libgfortran3.symbols.16.powerpc64" #include "libgfortran3.symbols.64" gnat-4.8-4.8.2/debian/libgcc1.symbols.armhf0000644000000000000000000011554212173542725015127 0ustar libgcc_s.so.1 libgcc1 #MINVER# (ignore-blacklist)#include "libgcc1.symbols.aeabi" GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3.4@GCC_3.3.4 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_3.5@GCC_3.5 1:4.3.0 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_4.3.0 1:4.3.0 _Unwind_Complete@GCC_3.5 1:4.3.0 _Unwind_DeleteException@GCC_3.0 1:4.3.0 _Unwind_ForcedUnwind@GCC_3.0 1:4.3.0 _Unwind_GetCFA@GCC_3.3 1:4.3.0 _Unwind_GetDataRelBase@GCC_3.0 1:4.3.0 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.3.0 _Unwind_GetRegionStart@GCC_3.0 1:4.3.0 _Unwind_GetTextRelBase@GCC_3.0 1:4.3.0 _Unwind_RaiseException@GCC_3.0 1:4.3.0 _Unwind_Resume@GCC_3.0 1:4.3.0 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.3.0 _Unwind_VRS_Get@GCC_3.5 1:4.3.0 _Unwind_VRS_Pop@GCC_3.5 1:4.3.0 _Unwind_VRS_Set@GCC_3.5 1:4.3.0 __absvdi2@GCC_3.0 1:4.3.0 __absvsi2@GCC_3.0 1:4.3.0 __adddf3@GCC_3.0 1:4.3.0 __addsf3@GCC_3.0 1:4.3.0 __addvdi3@GCC_3.0 1:4.3.0 __addvsi3@GCC_3.0 1:4.3.0 __ashldi3@GCC_3.0 1:4.3.0 __ashrdi3@GCC_3.0 1:4.3.0 __bswapdi2@GCC_4.3.0 1:4.3.0 __bswapsi2@GCC_4.3.0 1:4.3.0 __clear_cache@GCC_3.0 1:4.3.0 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbsi2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.3.0 __clzsi2@GCC_3.4 1:4.3.0 __cmpdi2@GCC_3.0 1:4.3.0 __ctzdi2@GCC_3.4 1:4.3.0 __ctzsi2@GCC_3.4 1:4.3.0 __divdc3@GCC_4.0.0 1:4.3.0 __divdf3@GCC_3.0 1:4.3.0 __divdi3@GLIBC_2.0 1:4.3.0 __divsc3@GCC_4.0.0 1:4.3.0 __divsf3@GCC_3.0 1:4.3.0 __divsi3@GCC_3.0 1:4.3.0 __emutls_get_address@GCC_4.3.0 1:4.3.0 __emutls_register_common@GCC_4.3.0 1:4.3.0 __enable_execute_stack@GCC_3.4.2 1:4.3.0 __eqdf2@GCC_3.0 1:4.3.0 __eqsf2@GCC_3.0 1:4.3.0 __extendsfdf2@GCC_3.0 1:4.3.0 __ffsdi2@GCC_3.0 1:4.3.0 __ffssi2@GCC_4.3.0 1:4.3.0 __fixdfdi@GCC_3.0 1:4.3.0 __fixdfsi@GCC_3.0 1:4.3.0 __fixsfdi@GCC_3.0 1:4.3.0 __fixsfsi@GCC_3.0 1:4.3.0 __fixunsdfdi@GCC_3.0 1:4.3.0 __fixunsdfsi@GCC_3.0 1:4.3.0 __fixunssfdi@GCC_3.0 1:4.3.0 __fixunssfsi@GCC_3.0 1:4.3.0 __floatdidf@GCC_3.0 1:4.3.0 __floatdisf@GCC_3.0 1:4.3.0 __floatsidf@GCC_3.0 1:4.3.0 __floatsisf@GCC_3.0 1:4.3.0 __floatundidf@GCC_4.2.0 1:4.3.0 __floatundisf@GCC_4.2.0 1:4.3.0 __floatunsidf@GCC_4.2.0 1:4.3.0 __floatunsisf@GCC_4.2.0 1:4.3.0 __gcc_personality_v0@GCC_3.3.1 1:4.3.0 __gedf2@GCC_3.0 1:4.3.0 __gesf2@GCC_3.0 1:4.3.0 __gnu_addda3@GCC_4.3.0 1:4.3.0 __gnu_adddq3@GCC_4.3.0 1:4.3.0 __gnu_addha3@GCC_4.3.0 1:4.3.0 __gnu_addhq3@GCC_4.3.0 1:4.3.0 __gnu_addqq3@GCC_4.3.0 1:4.3.0 __gnu_addsa3@GCC_4.3.0 1:4.3.0 __gnu_addsq3@GCC_4.3.0 1:4.3.0 __gnu_adduda3@GCC_4.3.0 1:4.3.0 __gnu_addudq3@GCC_4.3.0 1:4.3.0 __gnu_adduha3@GCC_4.3.0 1:4.3.0 __gnu_adduhq3@GCC_4.3.0 1:4.3.0 __gnu_adduqq3@GCC_4.3.0 1:4.3.0 __gnu_addusa3@GCC_4.3.0 1:4.3.0 __gnu_addusq3@GCC_4.3.0 1:4.3.0 __gnu_ashlda3@GCC_4.3.0 1:4.3.0 __gnu_ashldq3@GCC_4.3.0 1:4.3.0 __gnu_ashlha3@GCC_4.3.0 1:4.3.0 __gnu_ashlhq3@GCC_4.3.0 1:4.3.0 __gnu_ashlqq3@GCC_4.3.0 1:4.3.0 __gnu_ashlsa3@GCC_4.3.0 1:4.3.0 __gnu_ashlsq3@GCC_4.3.0 1:4.3.0 __gnu_ashluda3@GCC_4.3.0 1:4.3.0 __gnu_ashludq3@GCC_4.3.0 1:4.3.0 __gnu_ashluha3@GCC_4.3.0 1:4.3.0 __gnu_ashluhq3@GCC_4.3.0 1:4.3.0 __gnu_ashluqq3@GCC_4.3.0 1:4.3.0 __gnu_ashlusa3@GCC_4.3.0 1:4.3.0 __gnu_ashlusq3@GCC_4.3.0 1:4.3.0 __gnu_ashrda3@GCC_4.3.0 1:4.3.0 __gnu_ashrdq3@GCC_4.3.0 1:4.3.0 __gnu_ashrha3@GCC_4.3.0 1:4.3.0 __gnu_ashrhq3@GCC_4.3.0 1:4.3.0 __gnu_ashrqq3@GCC_4.3.0 1:4.3.0 __gnu_ashrsa3@GCC_4.3.0 1:4.3.0 __gnu_ashrsq3@GCC_4.3.0 1:4.3.0 __gnu_cmpda2@GCC_4.3.0 1:4.3.0 __gnu_cmpdq2@GCC_4.3.0 1:4.3.0 __gnu_cmpha2@GCC_4.3.0 1:4.3.0 __gnu_cmphq2@GCC_4.3.0 1:4.3.0 __gnu_cmpqq2@GCC_4.3.0 1:4.3.0 __gnu_cmpsa2@GCC_4.3.0 1:4.3.0 __gnu_cmpsq2@GCC_4.3.0 1:4.3.0 __gnu_cmpuda2@GCC_4.3.0 1:4.3.0 __gnu_cmpudq2@GCC_4.3.0 1:4.3.0 __gnu_cmpuha2@GCC_4.3.0 1:4.3.0 __gnu_cmpuhq2@GCC_4.3.0 1:4.3.0 __gnu_cmpuqq2@GCC_4.3.0 1:4.3.0 __gnu_cmpusa2@GCC_4.3.0 1:4.3.0 __gnu_cmpusq2@GCC_4.3.0 1:4.3.0 __gnu_divda3@GCC_4.3.0 1:4.3.0 __gnu_divdq3@GCC_4.3.0 1:4.3.0 __gnu_divha3@GCC_4.3.0 1:4.3.0 __gnu_divhq3@GCC_4.3.0 1:4.3.0 __gnu_divqq3@GCC_4.3.0 1:4.3.0 __gnu_divsa3@GCC_4.3.0 1:4.3.0 __gnu_divsq3@GCC_4.3.0 1:4.3.0 __gnu_fractdadf@GCC_4.3.0 1:4.3.0 __gnu_fractdadi@GCC_4.3.0 1:4.3.0 __gnu_fractdadq@GCC_4.3.0 1:4.3.0 __gnu_fractdaha2@GCC_4.3.0 1:4.3.0 __gnu_fractdahi@GCC_4.3.0 1:4.3.0 __gnu_fractdahq@GCC_4.3.0 1:4.3.0 __gnu_fractdaqi@GCC_4.3.0 1:4.3.0 __gnu_fractdaqq@GCC_4.3.0 1:4.3.0 __gnu_fractdasa2@GCC_4.3.0 1:4.3.0 __gnu_fractdasf@GCC_4.3.0 1:4.3.0 __gnu_fractdasi@GCC_4.3.0 1:4.3.0 __gnu_fractdasq@GCC_4.3.0 1:4.3.0 __gnu_fractdauda@GCC_4.3.0 1:4.3.0 __gnu_fractdaudq@GCC_4.3.0 1:4.3.0 __gnu_fractdauha@GCC_4.3.0 1:4.3.0 __gnu_fractdauhq@GCC_4.3.0 1:4.3.0 __gnu_fractdauqq@GCC_4.3.0 1:4.3.0 __gnu_fractdausa@GCC_4.3.0 1:4.3.0 __gnu_fractdausq@GCC_4.3.0 1:4.3.0 __gnu_fractdfda@GCC_4.3.0 1:4.3.0 __gnu_fractdfdq@GCC_4.3.0 1:4.3.0 __gnu_fractdfha@GCC_4.3.0 1:4.3.0 __gnu_fractdfhq@GCC_4.3.0 1:4.3.0 __gnu_fractdfqq@GCC_4.3.0 1:4.3.0 __gnu_fractdfsa@GCC_4.3.0 1:4.3.0 __gnu_fractdfsq@GCC_4.3.0 1:4.3.0 __gnu_fractdfuda@GCC_4.3.0 1:4.3.0 __gnu_fractdfudq@GCC_4.3.0 1:4.3.0 __gnu_fractdfuha@GCC_4.3.0 1:4.3.0 __gnu_fractdfuhq@GCC_4.3.0 1:4.3.0 __gnu_fractdfuqq@GCC_4.3.0 1:4.3.0 __gnu_fractdfusa@GCC_4.3.0 1:4.3.0 __gnu_fractdfusq@GCC_4.3.0 1:4.3.0 __gnu_fractdida@GCC_4.3.0 1:4.3.0 __gnu_fractdidq@GCC_4.3.0 1:4.3.0 __gnu_fractdiha@GCC_4.3.0 1:4.3.0 __gnu_fractdihq@GCC_4.3.0 1:4.3.0 __gnu_fractdiqq@GCC_4.3.0 1:4.3.0 __gnu_fractdisa@GCC_4.3.0 1:4.3.0 __gnu_fractdisq@GCC_4.3.0 1:4.3.0 __gnu_fractdiuda@GCC_4.3.0 1:4.3.0 __gnu_fractdiudq@GCC_4.3.0 1:4.3.0 __gnu_fractdiuha@GCC_4.3.0 1:4.3.0 __gnu_fractdiuhq@GCC_4.3.0 1:4.3.0 __gnu_fractdiuqq@GCC_4.3.0 1:4.3.0 __gnu_fractdiusa@GCC_4.3.0 1:4.3.0 __gnu_fractdiusq@GCC_4.3.0 1:4.3.0 __gnu_fractdqda@GCC_4.3.0 1:4.3.0 __gnu_fractdqdf@GCC_4.3.0 1:4.3.0 __gnu_fractdqdi@GCC_4.3.0 1:4.3.0 __gnu_fractdqha@GCC_4.3.0 1:4.3.0 __gnu_fractdqhi@GCC_4.3.0 1:4.3.0 __gnu_fractdqhq2@GCC_4.3.0 1:4.3.0 __gnu_fractdqqi@GCC_4.3.0 1:4.3.0 __gnu_fractdqqq2@GCC_4.3.0 1:4.3.0 __gnu_fractdqsa@GCC_4.3.0 1:4.3.0 __gnu_fractdqsf@GCC_4.3.0 1:4.3.0 __gnu_fractdqsi@GCC_4.3.0 1:4.3.0 __gnu_fractdqsq2@GCC_4.3.0 1:4.3.0 __gnu_fractdquda@GCC_4.3.0 1:4.3.0 __gnu_fractdqudq@GCC_4.3.0 1:4.3.0 __gnu_fractdquha@GCC_4.3.0 1:4.3.0 __gnu_fractdquhq@GCC_4.3.0 1:4.3.0 __gnu_fractdquqq@GCC_4.3.0 1:4.3.0 __gnu_fractdqusa@GCC_4.3.0 1:4.3.0 __gnu_fractdqusq@GCC_4.3.0 1:4.3.0 __gnu_fracthada2@GCC_4.3.0 1:4.3.0 __gnu_fracthadf@GCC_4.3.0 1:4.3.0 __gnu_fracthadi@GCC_4.3.0 1:4.3.0 __gnu_fracthadq@GCC_4.3.0 1:4.3.0 __gnu_fracthahi@GCC_4.3.0 1:4.3.0 __gnu_fracthahq@GCC_4.3.0 1:4.3.0 __gnu_fracthaqi@GCC_4.3.0 1:4.3.0 __gnu_fracthaqq@GCC_4.3.0 1:4.3.0 __gnu_fracthasa2@GCC_4.3.0 1:4.3.0 __gnu_fracthasf@GCC_4.3.0 1:4.3.0 __gnu_fracthasi@GCC_4.3.0 1:4.3.0 __gnu_fracthasq@GCC_4.3.0 1:4.3.0 __gnu_fracthauda@GCC_4.3.0 1:4.3.0 __gnu_fracthaudq@GCC_4.3.0 1:4.3.0 __gnu_fracthauha@GCC_4.3.0 1:4.3.0 __gnu_fracthauhq@GCC_4.3.0 1:4.3.0 __gnu_fracthauqq@GCC_4.3.0 1:4.3.0 __gnu_fracthausa@GCC_4.3.0 1:4.3.0 __gnu_fracthausq@GCC_4.3.0 1:4.3.0 __gnu_fracthida@GCC_4.3.0 1:4.3.0 __gnu_fracthidq@GCC_4.3.0 1:4.3.0 __gnu_fracthiha@GCC_4.3.0 1:4.3.0 __gnu_fracthihq@GCC_4.3.0 1:4.3.0 __gnu_fracthiqq@GCC_4.3.0 1:4.3.0 __gnu_fracthisa@GCC_4.3.0 1:4.3.0 __gnu_fracthisq@GCC_4.3.0 1:4.3.0 __gnu_fracthiuda@GCC_4.3.0 1:4.3.0 __gnu_fracthiudq@GCC_4.3.0 1:4.3.0 __gnu_fracthiuha@GCC_4.3.0 1:4.3.0 __gnu_fracthiuhq@GCC_4.3.0 1:4.3.0 __gnu_fracthiuqq@GCC_4.3.0 1:4.3.0 __gnu_fracthiusa@GCC_4.3.0 1:4.3.0 __gnu_fracthiusq@GCC_4.3.0 1:4.3.0 __gnu_fracthqda@GCC_4.3.0 1:4.3.0 __gnu_fracthqdf@GCC_4.3.0 1:4.3.0 __gnu_fracthqdi@GCC_4.3.0 1:4.3.0 __gnu_fracthqdq2@GCC_4.3.0 1:4.3.0 __gnu_fracthqha@GCC_4.3.0 1:4.3.0 __gnu_fracthqhi@GCC_4.3.0 1:4.3.0 __gnu_fracthqqi@GCC_4.3.0 1:4.3.0 __gnu_fracthqqq2@GCC_4.3.0 1:4.3.0 __gnu_fracthqsa@GCC_4.3.0 1:4.3.0 __gnu_fracthqsf@GCC_4.3.0 1:4.3.0 __gnu_fracthqsi@GCC_4.3.0 1:4.3.0 __gnu_fracthqsq2@GCC_4.3.0 1:4.3.0 __gnu_fracthquda@GCC_4.3.0 1:4.3.0 __gnu_fracthqudq@GCC_4.3.0 1:4.3.0 __gnu_fracthquha@GCC_4.3.0 1:4.3.0 __gnu_fracthquhq@GCC_4.3.0 1:4.3.0 __gnu_fracthquqq@GCC_4.3.0 1:4.3.0 __gnu_fracthqusa@GCC_4.3.0 1:4.3.0 __gnu_fracthqusq@GCC_4.3.0 1:4.3.0 __gnu_fractqida@GCC_4.3.0 1:4.3.0 __gnu_fractqidq@GCC_4.3.0 1:4.3.0 __gnu_fractqiha@GCC_4.3.0 1:4.3.0 __gnu_fractqihq@GCC_4.3.0 1:4.3.0 __gnu_fractqiqq@GCC_4.3.0 1:4.3.0 __gnu_fractqisa@GCC_4.3.0 1:4.3.0 __gnu_fractqisq@GCC_4.3.0 1:4.3.0 __gnu_fractqiuda@GCC_4.3.0 1:4.3.0 __gnu_fractqiudq@GCC_4.3.0 1:4.3.0 __gnu_fractqiuha@GCC_4.3.0 1:4.3.0 __gnu_fractqiuhq@GCC_4.3.0 1:4.3.0 __gnu_fractqiuqq@GCC_4.3.0 1:4.3.0 __gnu_fractqiusa@GCC_4.3.0 1:4.3.0 __gnu_fractqiusq@GCC_4.3.0 1:4.3.0 __gnu_fractqqda@GCC_4.3.0 1:4.3.0 __gnu_fractqqdf@GCC_4.3.0 1:4.3.0 __gnu_fractqqdi@GCC_4.3.0 1:4.3.0 __gnu_fractqqdq2@GCC_4.3.0 1:4.3.0 __gnu_fractqqha@GCC_4.3.0 1:4.3.0 __gnu_fractqqhi@GCC_4.3.0 1:4.3.0 __gnu_fractqqhq2@GCC_4.3.0 1:4.3.0 __gnu_fractqqqi@GCC_4.3.0 1:4.3.0 __gnu_fractqqsa@GCC_4.3.0 1:4.3.0 __gnu_fractqqsf@GCC_4.3.0 1:4.3.0 __gnu_fractqqsi@GCC_4.3.0 1:4.3.0 __gnu_fractqqsq2@GCC_4.3.0 1:4.3.0 __gnu_fractqquda@GCC_4.3.0 1:4.3.0 __gnu_fractqqudq@GCC_4.3.0 1:4.3.0 __gnu_fractqquha@GCC_4.3.0 1:4.3.0 __gnu_fractqquhq@GCC_4.3.0 1:4.3.0 __gnu_fractqquqq@GCC_4.3.0 1:4.3.0 __gnu_fractqqusa@GCC_4.3.0 1:4.3.0 __gnu_fractqqusq@GCC_4.3.0 1:4.3.0 __gnu_fractsada2@GCC_4.3.0 1:4.3.0 __gnu_fractsadf@GCC_4.3.0 1:4.3.0 __gnu_fractsadi@GCC_4.3.0 1:4.3.0 __gnu_fractsadq@GCC_4.3.0 1:4.3.0 __gnu_fractsaha2@GCC_4.3.0 1:4.3.0 __gnu_fractsahi@GCC_4.3.0 1:4.3.0 __gnu_fractsahq@GCC_4.3.0 1:4.3.0 __gnu_fractsaqi@GCC_4.3.0 1:4.3.0 __gnu_fractsaqq@GCC_4.3.0 1:4.3.0 __gnu_fractsasf@GCC_4.3.0 1:4.3.0 __gnu_fractsasi@GCC_4.3.0 1:4.3.0 __gnu_fractsasq@GCC_4.3.0 1:4.3.0 __gnu_fractsauda@GCC_4.3.0 1:4.3.0 __gnu_fractsaudq@GCC_4.3.0 1:4.3.0 __gnu_fractsauha@GCC_4.3.0 1:4.3.0 __gnu_fractsauhq@GCC_4.3.0 1:4.3.0 __gnu_fractsauqq@GCC_4.3.0 1:4.3.0 __gnu_fractsausa@GCC_4.3.0 1:4.3.0 __gnu_fractsausq@GCC_4.3.0 1:4.3.0 __gnu_fractsfda@GCC_4.3.0 1:4.3.0 __gnu_fractsfdq@GCC_4.3.0 1:4.3.0 __gnu_fractsfha@GCC_4.3.0 1:4.3.0 __gnu_fractsfhq@GCC_4.3.0 1:4.3.0 __gnu_fractsfqq@GCC_4.3.0 1:4.3.0 __gnu_fractsfsa@GCC_4.3.0 1:4.3.0 __gnu_fractsfsq@GCC_4.3.0 1:4.3.0 __gnu_fractsfuda@GCC_4.3.0 1:4.3.0 __gnu_fractsfudq@GCC_4.3.0 1:4.3.0 __gnu_fractsfuha@GCC_4.3.0 1:4.3.0 __gnu_fractsfuhq@GCC_4.3.0 1:4.3.0 __gnu_fractsfuqq@GCC_4.3.0 1:4.3.0 __gnu_fractsfusa@GCC_4.3.0 1:4.3.0 __gnu_fractsfusq@GCC_4.3.0 1:4.3.0 __gnu_fractsida@GCC_4.3.0 1:4.3.0 __gnu_fractsidq@GCC_4.3.0 1:4.3.0 __gnu_fractsiha@GCC_4.3.0 1:4.3.0 __gnu_fractsihq@GCC_4.3.0 1:4.3.0 __gnu_fractsiqq@GCC_4.3.0 1:4.3.0 __gnu_fractsisa@GCC_4.3.0 1:4.3.0 __gnu_fractsisq@GCC_4.3.0 1:4.3.0 __gnu_fractsiuda@GCC_4.3.0 1:4.3.0 __gnu_fractsiudq@GCC_4.3.0 1:4.3.0 __gnu_fractsiuha@GCC_4.3.0 1:4.3.0 __gnu_fractsiuhq@GCC_4.3.0 1:4.3.0 __gnu_fractsiuqq@GCC_4.3.0 1:4.3.0 __gnu_fractsiusa@GCC_4.3.0 1:4.3.0 __gnu_fractsiusq@GCC_4.3.0 1:4.3.0 __gnu_fractsqda@GCC_4.3.0 1:4.3.0 __gnu_fractsqdf@GCC_4.3.0 1:4.3.0 __gnu_fractsqdi@GCC_4.3.0 1:4.3.0 __gnu_fractsqdq2@GCC_4.3.0 1:4.3.0 __gnu_fractsqha@GCC_4.3.0 1:4.3.0 __gnu_fractsqhi@GCC_4.3.0 1:4.3.0 __gnu_fractsqhq2@GCC_4.3.0 1:4.3.0 __gnu_fractsqqi@GCC_4.3.0 1:4.3.0 __gnu_fractsqqq2@GCC_4.3.0 1:4.3.0 __gnu_fractsqsa@GCC_4.3.0 1:4.3.0 __gnu_fractsqsf@GCC_4.3.0 1:4.3.0 __gnu_fractsqsi@GCC_4.3.0 1:4.3.0 __gnu_fractsquda@GCC_4.3.0 1:4.3.0 __gnu_fractsqudq@GCC_4.3.0 1:4.3.0 __gnu_fractsquha@GCC_4.3.0 1:4.3.0 __gnu_fractsquhq@GCC_4.3.0 1:4.3.0 __gnu_fractsquqq@GCC_4.3.0 1:4.3.0 __gnu_fractsqusa@GCC_4.3.0 1:4.3.0 __gnu_fractsqusq@GCC_4.3.0 1:4.3.0 __gnu_fractudada@GCC_4.3.0 1:4.3.0 __gnu_fractudadf@GCC_4.3.0 1:4.3.0 __gnu_fractudadi@GCC_4.3.0 1:4.3.0 __gnu_fractudadq@GCC_4.3.0 1:4.3.0 __gnu_fractudaha@GCC_4.3.0 1:4.3.0 __gnu_fractudahi@GCC_4.3.0 1:4.3.0 __gnu_fractudahq@GCC_4.3.0 1:4.3.0 __gnu_fractudaqi@GCC_4.3.0 1:4.3.0 __gnu_fractudaqq@GCC_4.3.0 1:4.3.0 __gnu_fractudasa@GCC_4.3.0 1:4.3.0 __gnu_fractudasf@GCC_4.3.0 1:4.3.0 __gnu_fractudasi@GCC_4.3.0 1:4.3.0 __gnu_fractudasq@GCC_4.3.0 1:4.3.0 __gnu_fractudaudq@GCC_4.3.0 1:4.3.0 __gnu_fractudauha2@GCC_4.3.0 1:4.3.0 __gnu_fractudauhq@GCC_4.3.0 1:4.3.0 __gnu_fractudauqq@GCC_4.3.0 1:4.3.0 __gnu_fractudausa2@GCC_4.3.0 1:4.3.0 __gnu_fractudausq@GCC_4.3.0 1:4.3.0 __gnu_fractudqda@GCC_4.3.0 1:4.3.0 __gnu_fractudqdf@GCC_4.3.0 1:4.3.0 __gnu_fractudqdi@GCC_4.3.0 1:4.3.0 __gnu_fractudqdq@GCC_4.3.0 1:4.3.0 __gnu_fractudqha@GCC_4.3.0 1:4.3.0 __gnu_fractudqhi@GCC_4.3.0 1:4.3.0 __gnu_fractudqhq@GCC_4.3.0 1:4.3.0 __gnu_fractudqqi@GCC_4.3.0 1:4.3.0 __gnu_fractudqqq@GCC_4.3.0 1:4.3.0 __gnu_fractudqsa@GCC_4.3.0 1:4.3.0 __gnu_fractudqsf@GCC_4.3.0 1:4.3.0 __gnu_fractudqsi@GCC_4.3.0 1:4.3.0 __gnu_fractudqsq@GCC_4.3.0 1:4.3.0 __gnu_fractudquda@GCC_4.3.0 1:4.3.0 __gnu_fractudquha@GCC_4.3.0 1:4.3.0 __gnu_fractudquhq2@GCC_4.3.0 1:4.3.0 __gnu_fractudquqq2@GCC_4.3.0 1:4.3.0 __gnu_fractudqusa@GCC_4.3.0 1:4.3.0 __gnu_fractudqusq2@GCC_4.3.0 1:4.3.0 __gnu_fractuhada@GCC_4.3.0 1:4.3.0 __gnu_fractuhadf@GCC_4.3.0 1:4.3.0 __gnu_fractuhadi@GCC_4.3.0 1:4.3.0 __gnu_fractuhadq@GCC_4.3.0 1:4.3.0 __gnu_fractuhaha@GCC_4.3.0 1:4.3.0 __gnu_fractuhahi@GCC_4.3.0 1:4.3.0 __gnu_fractuhahq@GCC_4.3.0 1:4.3.0 __gnu_fractuhaqi@GCC_4.3.0 1:4.3.0 __gnu_fractuhaqq@GCC_4.3.0 1:4.3.0 __gnu_fractuhasa@GCC_4.3.0 1:4.3.0 __gnu_fractuhasf@GCC_4.3.0 1:4.3.0 __gnu_fractuhasi@GCC_4.3.0 1:4.3.0 __gnu_fractuhasq@GCC_4.3.0 1:4.3.0 __gnu_fractuhauda2@GCC_4.3.0 1:4.3.0 __gnu_fractuhaudq@GCC_4.3.0 1:4.3.0 __gnu_fractuhauhq@GCC_4.3.0 1:4.3.0 __gnu_fractuhauqq@GCC_4.3.0 1:4.3.0 __gnu_fractuhausa2@GCC_4.3.0 1:4.3.0 __gnu_fractuhausq@GCC_4.3.0 1:4.3.0 __gnu_fractuhqda@GCC_4.3.0 1:4.3.0 __gnu_fractuhqdf@GCC_4.3.0 1:4.3.0 __gnu_fractuhqdi@GCC_4.3.0 1:4.3.0 __gnu_fractuhqdq@GCC_4.3.0 1:4.3.0 __gnu_fractuhqha@GCC_4.3.0 1:4.3.0 __gnu_fractuhqhi@GCC_4.3.0 1:4.3.0 __gnu_fractuhqhq@GCC_4.3.0 1:4.3.0 __gnu_fractuhqqi@GCC_4.3.0 1:4.3.0 __gnu_fractuhqqq@GCC_4.3.0 1:4.3.0 __gnu_fractuhqsa@GCC_4.3.0 1:4.3.0 __gnu_fractuhqsf@GCC_4.3.0 1:4.3.0 __gnu_fractuhqsi@GCC_4.3.0 1:4.3.0 __gnu_fractuhqsq@GCC_4.3.0 1:4.3.0 __gnu_fractuhquda@GCC_4.3.0 1:4.3.0 __gnu_fractuhqudq2@GCC_4.3.0 1:4.3.0 __gnu_fractuhquha@GCC_4.3.0 1:4.3.0 __gnu_fractuhquqq2@GCC_4.3.0 1:4.3.0 __gnu_fractuhqusa@GCC_4.3.0 1:4.3.0 __gnu_fractuhqusq2@GCC_4.3.0 1:4.3.0 __gnu_fractunsdadi@GCC_4.3.0 1:4.3.0 __gnu_fractunsdahi@GCC_4.3.0 1:4.3.0 __gnu_fractunsdaqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsdasi@GCC_4.3.0 1:4.3.0 __gnu_fractunsdida@GCC_4.3.0 1:4.3.0 __gnu_fractunsdidq@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiha@GCC_4.3.0 1:4.3.0 __gnu_fractunsdihq@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiqq@GCC_4.3.0 1:4.3.0 __gnu_fractunsdisa@GCC_4.3.0 1:4.3.0 __gnu_fractunsdisq@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiuda@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiudq@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiuha@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiuhq@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiuqq@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiusa@GCC_4.3.0 1:4.3.0 __gnu_fractunsdiusq@GCC_4.3.0 1:4.3.0 __gnu_fractunsdqdi@GCC_4.3.0 1:4.3.0 __gnu_fractunsdqhi@GCC_4.3.0 1:4.3.0 __gnu_fractunsdqqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsdqsi@GCC_4.3.0 1:4.3.0 __gnu_fractunshadi@GCC_4.3.0 1:4.3.0 __gnu_fractunshahi@GCC_4.3.0 1:4.3.0 __gnu_fractunshaqi@GCC_4.3.0 1:4.3.0 __gnu_fractunshasi@GCC_4.3.0 1:4.3.0 __gnu_fractunshida@GCC_4.3.0 1:4.3.0 __gnu_fractunshidq@GCC_4.3.0 1:4.3.0 __gnu_fractunshiha@GCC_4.3.0 1:4.3.0 __gnu_fractunshihq@GCC_4.3.0 1:4.3.0 __gnu_fractunshiqq@GCC_4.3.0 1:4.3.0 __gnu_fractunshisa@GCC_4.3.0 1:4.3.0 __gnu_fractunshisq@GCC_4.3.0 1:4.3.0 __gnu_fractunshiuda@GCC_4.3.0 1:4.3.0 __gnu_fractunshiudq@GCC_4.3.0 1:4.3.0 __gnu_fractunshiuha@GCC_4.3.0 1:4.3.0 __gnu_fractunshiuhq@GCC_4.3.0 1:4.3.0 __gnu_fractunshiuqq@GCC_4.3.0 1:4.3.0 __gnu_fractunshiusa@GCC_4.3.0 1:4.3.0 __gnu_fractunshiusq@GCC_4.3.0 1:4.3.0 __gnu_fractunshqdi@GCC_4.3.0 1:4.3.0 __gnu_fractunshqhi@GCC_4.3.0 1:4.3.0 __gnu_fractunshqqi@GCC_4.3.0 1:4.3.0 __gnu_fractunshqsi@GCC_4.3.0 1:4.3.0 __gnu_fractunsqida@GCC_4.3.0 1:4.3.0 __gnu_fractunsqidq@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiha@GCC_4.3.0 1:4.3.0 __gnu_fractunsqihq@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiqq@GCC_4.3.0 1:4.3.0 __gnu_fractunsqisa@GCC_4.3.0 1:4.3.0 __gnu_fractunsqisq@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiuda@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiudq@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiuha@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiuhq@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiuqq@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiusa@GCC_4.3.0 1:4.3.0 __gnu_fractunsqiusq@GCC_4.3.0 1:4.3.0 __gnu_fractunsqqdi@GCC_4.3.0 1:4.3.0 __gnu_fractunsqqhi@GCC_4.3.0 1:4.3.0 __gnu_fractunsqqqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsqqsi@GCC_4.3.0 1:4.3.0 __gnu_fractunssadi@GCC_4.3.0 1:4.3.0 __gnu_fractunssahi@GCC_4.3.0 1:4.3.0 __gnu_fractunssaqi@GCC_4.3.0 1:4.3.0 __gnu_fractunssasi@GCC_4.3.0 1:4.3.0 __gnu_fractunssida@GCC_4.3.0 1:4.3.0 __gnu_fractunssidq@GCC_4.3.0 1:4.3.0 __gnu_fractunssiha@GCC_4.3.0 1:4.3.0 __gnu_fractunssihq@GCC_4.3.0 1:4.3.0 __gnu_fractunssiqq@GCC_4.3.0 1:4.3.0 __gnu_fractunssisa@GCC_4.3.0 1:4.3.0 __gnu_fractunssisq@GCC_4.3.0 1:4.3.0 __gnu_fractunssiuda@GCC_4.3.0 1:4.3.0 __gnu_fractunssiudq@GCC_4.3.0 1:4.3.0 __gnu_fractunssiuha@GCC_4.3.0 1:4.3.0 __gnu_fractunssiuhq@GCC_4.3.0 1:4.3.0 __gnu_fractunssiuqq@GCC_4.3.0 1:4.3.0 __gnu_fractunssiusa@GCC_4.3.0 1:4.3.0 __gnu_fractunssiusq@GCC_4.3.0 1:4.3.0 __gnu_fractunssqdi@GCC_4.3.0 1:4.3.0 __gnu_fractunssqhi@GCC_4.3.0 1:4.3.0 __gnu_fractunssqqi@GCC_4.3.0 1:4.3.0 __gnu_fractunssqsi@GCC_4.3.0 1:4.3.0 __gnu_fractunsudadi@GCC_4.3.0 1:4.3.0 __gnu_fractunsudahi@GCC_4.3.0 1:4.3.0 __gnu_fractunsudaqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsudasi@GCC_4.3.0 1:4.3.0 __gnu_fractunsudqdi@GCC_4.3.0 1:4.3.0 __gnu_fractunsudqhi@GCC_4.3.0 1:4.3.0 __gnu_fractunsudqqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsudqsi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuhadi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuhahi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuhaqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuhasi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuhqdi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuhqhi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuhqqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuhqsi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuqqdi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuqqhi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuqqqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsuqqsi@GCC_4.3.0 1:4.3.0 __gnu_fractunsusadi@GCC_4.3.0 1:4.3.0 __gnu_fractunsusahi@GCC_4.3.0 1:4.3.0 __gnu_fractunsusaqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsusasi@GCC_4.3.0 1:4.3.0 __gnu_fractunsusqdi@GCC_4.3.0 1:4.3.0 __gnu_fractunsusqhi@GCC_4.3.0 1:4.3.0 __gnu_fractunsusqqi@GCC_4.3.0 1:4.3.0 __gnu_fractunsusqsi@GCC_4.3.0 1:4.3.0 __gnu_fractuqqda@GCC_4.3.0 1:4.3.0 __gnu_fractuqqdf@GCC_4.3.0 1:4.3.0 __gnu_fractuqqdi@GCC_4.3.0 1:4.3.0 __gnu_fractuqqdq@GCC_4.3.0 1:4.3.0 __gnu_fractuqqha@GCC_4.3.0 1:4.3.0 __gnu_fractuqqhi@GCC_4.3.0 1:4.3.0 __gnu_fractuqqhq@GCC_4.3.0 1:4.3.0 __gnu_fractuqqqi@GCC_4.3.0 1:4.3.0 __gnu_fractuqqqq@GCC_4.3.0 1:4.3.0 __gnu_fractuqqsa@GCC_4.3.0 1:4.3.0 __gnu_fractuqqsf@GCC_4.3.0 1:4.3.0 __gnu_fractuqqsi@GCC_4.3.0 1:4.3.0 __gnu_fractuqqsq@GCC_4.3.0 1:4.3.0 __gnu_fractuqquda@GCC_4.3.0 1:4.3.0 __gnu_fractuqqudq2@GCC_4.3.0 1:4.3.0 __gnu_fractuqquha@GCC_4.3.0 1:4.3.0 __gnu_fractuqquhq2@GCC_4.3.0 1:4.3.0 __gnu_fractuqqusa@GCC_4.3.0 1:4.3.0 __gnu_fractuqqusq2@GCC_4.3.0 1:4.3.0 __gnu_fractusada@GCC_4.3.0 1:4.3.0 __gnu_fractusadf@GCC_4.3.0 1:4.3.0 __gnu_fractusadi@GCC_4.3.0 1:4.3.0 __gnu_fractusadq@GCC_4.3.0 1:4.3.0 __gnu_fractusaha@GCC_4.3.0 1:4.3.0 __gnu_fractusahi@GCC_4.3.0 1:4.3.0 __gnu_fractusahq@GCC_4.3.0 1:4.3.0 __gnu_fractusaqi@GCC_4.3.0 1:4.3.0 __gnu_fractusaqq@GCC_4.3.0 1:4.3.0 __gnu_fractusasa@GCC_4.3.0 1:4.3.0 __gnu_fractusasf@GCC_4.3.0 1:4.3.0 __gnu_fractusasi@GCC_4.3.0 1:4.3.0 __gnu_fractusasq@GCC_4.3.0 1:4.3.0 __gnu_fractusauda2@GCC_4.3.0 1:4.3.0 __gnu_fractusaudq@GCC_4.3.0 1:4.3.0 __gnu_fractusauha2@GCC_4.3.0 1:4.3.0 __gnu_fractusauhq@GCC_4.3.0 1:4.3.0 __gnu_fractusauqq@GCC_4.3.0 1:4.3.0 __gnu_fractusausq@GCC_4.3.0 1:4.3.0 __gnu_fractusqda@GCC_4.3.0 1:4.3.0 __gnu_fractusqdf@GCC_4.3.0 1:4.3.0 __gnu_fractusqdi@GCC_4.3.0 1:4.3.0 __gnu_fractusqdq@GCC_4.3.0 1:4.3.0 __gnu_fractusqha@GCC_4.3.0 1:4.3.0 __gnu_fractusqhi@GCC_4.3.0 1:4.3.0 __gnu_fractusqhq@GCC_4.3.0 1:4.3.0 __gnu_fractusqqi@GCC_4.3.0 1:4.3.0 __gnu_fractusqqq@GCC_4.3.0 1:4.3.0 __gnu_fractusqsa@GCC_4.3.0 1:4.3.0 __gnu_fractusqsf@GCC_4.3.0 1:4.3.0 __gnu_fractusqsi@GCC_4.3.0 1:4.3.0 __gnu_fractusqsq@GCC_4.3.0 1:4.3.0 __gnu_fractusquda@GCC_4.3.0 1:4.3.0 __gnu_fractusqudq2@GCC_4.3.0 1:4.3.0 __gnu_fractusquha@GCC_4.3.0 1:4.3.0 __gnu_fractusquhq2@GCC_4.3.0 1:4.3.0 __gnu_fractusquqq2@GCC_4.3.0 1:4.3.0 __gnu_fractusqusa@GCC_4.3.0 1:4.3.0 __gnu_lshruda3@GCC_4.3.0 1:4.3.0 __gnu_lshrudq3@GCC_4.3.0 1:4.3.0 __gnu_lshruha3@GCC_4.3.0 1:4.3.0 __gnu_lshruhq3@GCC_4.3.0 1:4.3.0 __gnu_lshruqq3@GCC_4.3.0 1:4.3.0 __gnu_lshrusa3@GCC_4.3.0 1:4.3.0 __gnu_lshrusq3@GCC_4.3.0 1:4.3.0 __gnu_mulda3@GCC_4.3.0 1:4.3.0 __gnu_muldq3@GCC_4.3.0 1:4.3.0 __gnu_mulha3@GCC_4.3.0 1:4.3.0 __gnu_mulhq3@GCC_4.3.0 1:4.3.0 __gnu_mulqq3@GCC_4.3.0 1:4.3.0 __gnu_mulsa3@GCC_4.3.0 1:4.3.0 __gnu_mulsq3@GCC_4.3.0 1:4.3.0 __gnu_muluda3@GCC_4.3.0 1:4.3.0 __gnu_muludq3@GCC_4.3.0 1:4.3.0 __gnu_muluha3@GCC_4.3.0 1:4.3.0 __gnu_muluhq3@GCC_4.3.0 1:4.3.0 __gnu_muluqq3@GCC_4.3.0 1:4.3.0 __gnu_mulusa3@GCC_4.3.0 1:4.3.0 __gnu_mulusq3@GCC_4.3.0 1:4.3.0 __gnu_negda2@GCC_4.3.0 1:4.3.0 __gnu_negdq2@GCC_4.3.0 1:4.3.0 __gnu_negha2@GCC_4.3.0 1:4.3.0 __gnu_neghq2@GCC_4.3.0 1:4.3.0 __gnu_negqq2@GCC_4.3.0 1:4.3.0 __gnu_negsa2@GCC_4.3.0 1:4.3.0 __gnu_negsq2@GCC_4.3.0 1:4.3.0 __gnu_neguda2@GCC_4.3.0 1:4.3.0 __gnu_negudq2@GCC_4.3.0 1:4.3.0 __gnu_neguha2@GCC_4.3.0 1:4.3.0 __gnu_neguhq2@GCC_4.3.0 1:4.3.0 __gnu_neguqq2@GCC_4.3.0 1:4.3.0 __gnu_negusa2@GCC_4.3.0 1:4.3.0 __gnu_negusq2@GCC_4.3.0 1:4.3.0 __gnu_satfractdadq@GCC_4.3.0 1:4.3.0 __gnu_satfractdaha2@GCC_4.3.0 1:4.3.0 __gnu_satfractdahq@GCC_4.3.0 1:4.3.0 __gnu_satfractdaqq@GCC_4.3.0 1:4.3.0 __gnu_satfractdasa2@GCC_4.3.0 1:4.3.0 __gnu_satfractdasq@GCC_4.3.0 1:4.3.0 __gnu_satfractdauda@GCC_4.3.0 1:4.3.0 __gnu_satfractdaudq@GCC_4.3.0 1:4.3.0 __gnu_satfractdauha@GCC_4.3.0 1:4.3.0 __gnu_satfractdauhq@GCC_4.3.0 1:4.3.0 __gnu_satfractdauqq@GCC_4.3.0 1:4.3.0 __gnu_satfractdausa@GCC_4.3.0 1:4.3.0 __gnu_satfractdausq@GCC_4.3.0 1:4.3.0 __gnu_satfractdfda@GCC_4.3.0 1:4.3.0 __gnu_satfractdfdq@GCC_4.3.0 1:4.3.0 __gnu_satfractdfha@GCC_4.3.0 1:4.3.0 __gnu_satfractdfhq@GCC_4.3.0 1:4.3.0 __gnu_satfractdfqq@GCC_4.3.0 1:4.3.0 __gnu_satfractdfsa@GCC_4.3.0 1:4.3.0 __gnu_satfractdfsq@GCC_4.3.0 1:4.3.0 __gnu_satfractdfuda@GCC_4.3.0 1:4.3.0 __gnu_satfractdfudq@GCC_4.3.0 1:4.3.0 __gnu_satfractdfuha@GCC_4.3.0 1:4.3.0 __gnu_satfractdfuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractdfuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractdfusa@GCC_4.3.0 1:4.3.0 __gnu_satfractdfusq@GCC_4.3.0 1:4.3.0 __gnu_satfractdida@GCC_4.3.0 1:4.3.0 __gnu_satfractdidq@GCC_4.3.0 1:4.3.0 __gnu_satfractdiha@GCC_4.3.0 1:4.3.0 __gnu_satfractdihq@GCC_4.3.0 1:4.3.0 __gnu_satfractdiqq@GCC_4.3.0 1:4.3.0 __gnu_satfractdisa@GCC_4.3.0 1:4.3.0 __gnu_satfractdisq@GCC_4.3.0 1:4.3.0 __gnu_satfractdiuda@GCC_4.3.0 1:4.3.0 __gnu_satfractdiudq@GCC_4.3.0 1:4.3.0 __gnu_satfractdiuha@GCC_4.3.0 1:4.3.0 __gnu_satfractdiuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractdiuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractdiusa@GCC_4.3.0 1:4.3.0 __gnu_satfractdiusq@GCC_4.3.0 1:4.3.0 __gnu_satfractdqda@GCC_4.3.0 1:4.3.0 __gnu_satfractdqha@GCC_4.3.0 1:4.3.0 __gnu_satfractdqhq2@GCC_4.3.0 1:4.3.0 __gnu_satfractdqqq2@GCC_4.3.0 1:4.3.0 __gnu_satfractdqsa@GCC_4.3.0 1:4.3.0 __gnu_satfractdqsq2@GCC_4.3.0 1:4.3.0 __gnu_satfractdquda@GCC_4.3.0 1:4.3.0 __gnu_satfractdqudq@GCC_4.3.0 1:4.3.0 __gnu_satfractdquha@GCC_4.3.0 1:4.3.0 __gnu_satfractdquhq@GCC_4.3.0 1:4.3.0 __gnu_satfractdquqq@GCC_4.3.0 1:4.3.0 __gnu_satfractdqusa@GCC_4.3.0 1:4.3.0 __gnu_satfractdqusq@GCC_4.3.0 1:4.3.0 __gnu_satfracthada2@GCC_4.3.0 1:4.3.0 __gnu_satfracthadq@GCC_4.3.0 1:4.3.0 __gnu_satfracthahq@GCC_4.3.0 1:4.3.0 __gnu_satfracthaqq@GCC_4.3.0 1:4.3.0 __gnu_satfracthasa2@GCC_4.3.0 1:4.3.0 __gnu_satfracthasq@GCC_4.3.0 1:4.3.0 __gnu_satfracthauda@GCC_4.3.0 1:4.3.0 __gnu_satfracthaudq@GCC_4.3.0 1:4.3.0 __gnu_satfracthauha@GCC_4.3.0 1:4.3.0 __gnu_satfracthauhq@GCC_4.3.0 1:4.3.0 __gnu_satfracthauqq@GCC_4.3.0 1:4.3.0 __gnu_satfracthausa@GCC_4.3.0 1:4.3.0 __gnu_satfracthausq@GCC_4.3.0 1:4.3.0 __gnu_satfracthida@GCC_4.3.0 1:4.3.0 __gnu_satfracthidq@GCC_4.3.0 1:4.3.0 __gnu_satfracthiha@GCC_4.3.0 1:4.3.0 __gnu_satfracthihq@GCC_4.3.0 1:4.3.0 __gnu_satfracthiqq@GCC_4.3.0 1:4.3.0 __gnu_satfracthisa@GCC_4.3.0 1:4.3.0 __gnu_satfracthisq@GCC_4.3.0 1:4.3.0 __gnu_satfracthiuda@GCC_4.3.0 1:4.3.0 __gnu_satfracthiudq@GCC_4.3.0 1:4.3.0 __gnu_satfracthiuha@GCC_4.3.0 1:4.3.0 __gnu_satfracthiuhq@GCC_4.3.0 1:4.3.0 __gnu_satfracthiuqq@GCC_4.3.0 1:4.3.0 __gnu_satfracthiusa@GCC_4.3.0 1:4.3.0 __gnu_satfracthiusq@GCC_4.3.0 1:4.3.0 __gnu_satfracthqda@GCC_4.3.0 1:4.3.0 __gnu_satfracthqdq2@GCC_4.3.0 1:4.3.0 __gnu_satfracthqha@GCC_4.3.0 1:4.3.0 __gnu_satfracthqqq2@GCC_4.3.0 1:4.3.0 __gnu_satfracthqsa@GCC_4.3.0 1:4.3.0 __gnu_satfracthqsq2@GCC_4.3.0 1:4.3.0 __gnu_satfracthquda@GCC_4.3.0 1:4.3.0 __gnu_satfracthqudq@GCC_4.3.0 1:4.3.0 __gnu_satfracthquha@GCC_4.3.0 1:4.3.0 __gnu_satfracthquhq@GCC_4.3.0 1:4.3.0 __gnu_satfracthquqq@GCC_4.3.0 1:4.3.0 __gnu_satfracthqusa@GCC_4.3.0 1:4.3.0 __gnu_satfracthqusq@GCC_4.3.0 1:4.3.0 __gnu_satfractqida@GCC_4.3.0 1:4.3.0 __gnu_satfractqidq@GCC_4.3.0 1:4.3.0 __gnu_satfractqiha@GCC_4.3.0 1:4.3.0 __gnu_satfractqihq@GCC_4.3.0 1:4.3.0 __gnu_satfractqiqq@GCC_4.3.0 1:4.3.0 __gnu_satfractqisa@GCC_4.3.0 1:4.3.0 __gnu_satfractqisq@GCC_4.3.0 1:4.3.0 __gnu_satfractqiuda@GCC_4.3.0 1:4.3.0 __gnu_satfractqiudq@GCC_4.3.0 1:4.3.0 __gnu_satfractqiuha@GCC_4.3.0 1:4.3.0 __gnu_satfractqiuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractqiuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractqiusa@GCC_4.3.0 1:4.3.0 __gnu_satfractqiusq@GCC_4.3.0 1:4.3.0 __gnu_satfractqqda@GCC_4.3.0 1:4.3.0 __gnu_satfractqqdq2@GCC_4.3.0 1:4.3.0 __gnu_satfractqqha@GCC_4.3.0 1:4.3.0 __gnu_satfractqqhq2@GCC_4.3.0 1:4.3.0 __gnu_satfractqqsa@GCC_4.3.0 1:4.3.0 __gnu_satfractqqsq2@GCC_4.3.0 1:4.3.0 __gnu_satfractqquda@GCC_4.3.0 1:4.3.0 __gnu_satfractqqudq@GCC_4.3.0 1:4.3.0 __gnu_satfractqquha@GCC_4.3.0 1:4.3.0 __gnu_satfractqquhq@GCC_4.3.0 1:4.3.0 __gnu_satfractqquqq@GCC_4.3.0 1:4.3.0 __gnu_satfractqqusa@GCC_4.3.0 1:4.3.0 __gnu_satfractqqusq@GCC_4.3.0 1:4.3.0 __gnu_satfractsada2@GCC_4.3.0 1:4.3.0 __gnu_satfractsadq@GCC_4.3.0 1:4.3.0 __gnu_satfractsaha2@GCC_4.3.0 1:4.3.0 __gnu_satfractsahq@GCC_4.3.0 1:4.3.0 __gnu_satfractsaqq@GCC_4.3.0 1:4.3.0 __gnu_satfractsasq@GCC_4.3.0 1:4.3.0 __gnu_satfractsauda@GCC_4.3.0 1:4.3.0 __gnu_satfractsaudq@GCC_4.3.0 1:4.3.0 __gnu_satfractsauha@GCC_4.3.0 1:4.3.0 __gnu_satfractsauhq@GCC_4.3.0 1:4.3.0 __gnu_satfractsauqq@GCC_4.3.0 1:4.3.0 __gnu_satfractsausa@GCC_4.3.0 1:4.3.0 __gnu_satfractsausq@GCC_4.3.0 1:4.3.0 __gnu_satfractsfda@GCC_4.3.0 1:4.3.0 __gnu_satfractsfdq@GCC_4.3.0 1:4.3.0 __gnu_satfractsfha@GCC_4.3.0 1:4.3.0 __gnu_satfractsfhq@GCC_4.3.0 1:4.3.0 __gnu_satfractsfqq@GCC_4.3.0 1:4.3.0 __gnu_satfractsfsa@GCC_4.3.0 1:4.3.0 __gnu_satfractsfsq@GCC_4.3.0 1:4.3.0 __gnu_satfractsfuda@GCC_4.3.0 1:4.3.0 __gnu_satfractsfudq@GCC_4.3.0 1:4.3.0 __gnu_satfractsfuha@GCC_4.3.0 1:4.3.0 __gnu_satfractsfuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractsfuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractsfusa@GCC_4.3.0 1:4.3.0 __gnu_satfractsfusq@GCC_4.3.0 1:4.3.0 __gnu_satfractsida@GCC_4.3.0 1:4.3.0 __gnu_satfractsidq@GCC_4.3.0 1:4.3.0 __gnu_satfractsiha@GCC_4.3.0 1:4.3.0 __gnu_satfractsihq@GCC_4.3.0 1:4.3.0 __gnu_satfractsiqq@GCC_4.3.0 1:4.3.0 __gnu_satfractsisa@GCC_4.3.0 1:4.3.0 __gnu_satfractsisq@GCC_4.3.0 1:4.3.0 __gnu_satfractsiuda@GCC_4.3.0 1:4.3.0 __gnu_satfractsiudq@GCC_4.3.0 1:4.3.0 __gnu_satfractsiuha@GCC_4.3.0 1:4.3.0 __gnu_satfractsiuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractsiuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractsiusa@GCC_4.3.0 1:4.3.0 __gnu_satfractsiusq@GCC_4.3.0 1:4.3.0 __gnu_satfractsqda@GCC_4.3.0 1:4.3.0 __gnu_satfractsqdq2@GCC_4.3.0 1:4.3.0 __gnu_satfractsqha@GCC_4.3.0 1:4.3.0 __gnu_satfractsqhq2@GCC_4.3.0 1:4.3.0 __gnu_satfractsqqq2@GCC_4.3.0 1:4.3.0 __gnu_satfractsqsa@GCC_4.3.0 1:4.3.0 __gnu_satfractsquda@GCC_4.3.0 1:4.3.0 __gnu_satfractsqudq@GCC_4.3.0 1:4.3.0 __gnu_satfractsquha@GCC_4.3.0 1:4.3.0 __gnu_satfractsquhq@GCC_4.3.0 1:4.3.0 __gnu_satfractsquqq@GCC_4.3.0 1:4.3.0 __gnu_satfractsqusa@GCC_4.3.0 1:4.3.0 __gnu_satfractsqusq@GCC_4.3.0 1:4.3.0 __gnu_satfractudada@GCC_4.3.0 1:4.3.0 __gnu_satfractudadq@GCC_4.3.0 1:4.3.0 __gnu_satfractudaha@GCC_4.3.0 1:4.3.0 __gnu_satfractudahq@GCC_4.3.0 1:4.3.0 __gnu_satfractudaqq@GCC_4.3.0 1:4.3.0 __gnu_satfractudasa@GCC_4.3.0 1:4.3.0 __gnu_satfractudasq@GCC_4.3.0 1:4.3.0 __gnu_satfractudaudq@GCC_4.3.0 1:4.3.0 __gnu_satfractudauha2@GCC_4.3.0 1:4.3.0 __gnu_satfractudauhq@GCC_4.3.0 1:4.3.0 __gnu_satfractudauqq@GCC_4.3.0 1:4.3.0 __gnu_satfractudausa2@GCC_4.3.0 1:4.3.0 __gnu_satfractudausq@GCC_4.3.0 1:4.3.0 __gnu_satfractudqda@GCC_4.3.0 1:4.3.0 __gnu_satfractudqdq@GCC_4.3.0 1:4.3.0 __gnu_satfractudqha@GCC_4.3.0 1:4.3.0 __gnu_satfractudqhq@GCC_4.3.0 1:4.3.0 __gnu_satfractudqqq@GCC_4.3.0 1:4.3.0 __gnu_satfractudqsa@GCC_4.3.0 1:4.3.0 __gnu_satfractudqsq@GCC_4.3.0 1:4.3.0 __gnu_satfractudquda@GCC_4.3.0 1:4.3.0 __gnu_satfractudquha@GCC_4.3.0 1:4.3.0 __gnu_satfractudquhq2@GCC_4.3.0 1:4.3.0 __gnu_satfractudquqq2@GCC_4.3.0 1:4.3.0 __gnu_satfractudqusa@GCC_4.3.0 1:4.3.0 __gnu_satfractudqusq2@GCC_4.3.0 1:4.3.0 __gnu_satfractuhada@GCC_4.3.0 1:4.3.0 __gnu_satfractuhadq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhaha@GCC_4.3.0 1:4.3.0 __gnu_satfractuhahq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhaqq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhasa@GCC_4.3.0 1:4.3.0 __gnu_satfractuhasq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhauda2@GCC_4.3.0 1:4.3.0 __gnu_satfractuhaudq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhauhq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhauqq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhausa2@GCC_4.3.0 1:4.3.0 __gnu_satfractuhausq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqda@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqdq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqha@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqhq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqqq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqsa@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqsq@GCC_4.3.0 1:4.3.0 __gnu_satfractuhquda@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqudq2@GCC_4.3.0 1:4.3.0 __gnu_satfractuhquha@GCC_4.3.0 1:4.3.0 __gnu_satfractuhquqq2@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqusa@GCC_4.3.0 1:4.3.0 __gnu_satfractuhqusq2@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdida@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdidq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiha@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdihq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiqq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdisa@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdisq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiuda@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiudq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiuha@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiusa@GCC_4.3.0 1:4.3.0 __gnu_satfractunsdiusq@GCC_4.3.0 1:4.3.0 __gnu_satfractunshida@GCC_4.3.0 1:4.3.0 __gnu_satfractunshidq@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiha@GCC_4.3.0 1:4.3.0 __gnu_satfractunshihq@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiqq@GCC_4.3.0 1:4.3.0 __gnu_satfractunshisa@GCC_4.3.0 1:4.3.0 __gnu_satfractunshisq@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiuda@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiudq@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiuha@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiusa@GCC_4.3.0 1:4.3.0 __gnu_satfractunshiusq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqida@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqidq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiha@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqihq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiqq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqisa@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqisq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiuda@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiudq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiuha@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiusa@GCC_4.3.0 1:4.3.0 __gnu_satfractunsqiusq@GCC_4.3.0 1:4.3.0 __gnu_satfractunssida@GCC_4.3.0 1:4.3.0 __gnu_satfractunssidq@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiha@GCC_4.3.0 1:4.3.0 __gnu_satfractunssihq@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiqq@GCC_4.3.0 1:4.3.0 __gnu_satfractunssisa@GCC_4.3.0 1:4.3.0 __gnu_satfractunssisq@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiuda@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiudq@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiuha@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiuhq@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiuqq@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiusa@GCC_4.3.0 1:4.3.0 __gnu_satfractunssiusq@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqda@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqdq@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqha@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqhq@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqqq@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqsa@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqsq@GCC_4.3.0 1:4.3.0 __gnu_satfractuqquda@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqudq2@GCC_4.3.0 1:4.3.0 __gnu_satfractuqquha@GCC_4.3.0 1:4.3.0 __gnu_satfractuqquhq2@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqusa@GCC_4.3.0 1:4.3.0 __gnu_satfractuqqusq2@GCC_4.3.0 1:4.3.0 __gnu_satfractusada@GCC_4.3.0 1:4.3.0 __gnu_satfractusadq@GCC_4.3.0 1:4.3.0 __gnu_satfractusaha@GCC_4.3.0 1:4.3.0 __gnu_satfractusahq@GCC_4.3.0 1:4.3.0 __gnu_satfractusaqq@GCC_4.3.0 1:4.3.0 __gnu_satfractusasa@GCC_4.3.0 1:4.3.0 __gnu_satfractusasq@GCC_4.3.0 1:4.3.0 __gnu_satfractusauda2@GCC_4.3.0 1:4.3.0 __gnu_satfractusaudq@GCC_4.3.0 1:4.3.0 __gnu_satfractusauha2@GCC_4.3.0 1:4.3.0 __gnu_satfractusauhq@GCC_4.3.0 1:4.3.0 __gnu_satfractusauqq@GCC_4.3.0 1:4.3.0 __gnu_satfractusausq@GCC_4.3.0 1:4.3.0 __gnu_satfractusqda@GCC_4.3.0 1:4.3.0 __gnu_satfractusqdq@GCC_4.3.0 1:4.3.0 __gnu_satfractusqha@GCC_4.3.0 1:4.3.0 __gnu_satfractusqhq@GCC_4.3.0 1:4.3.0 __gnu_satfractusqqq@GCC_4.3.0 1:4.3.0 __gnu_satfractusqsa@GCC_4.3.0 1:4.3.0 __gnu_satfractusqsq@GCC_4.3.0 1:4.3.0 __gnu_satfractusquda@GCC_4.3.0 1:4.3.0 __gnu_satfractusqudq2@GCC_4.3.0 1:4.3.0 __gnu_satfractusquha@GCC_4.3.0 1:4.3.0 __gnu_satfractusquhq2@GCC_4.3.0 1:4.3.0 __gnu_satfractusquqq2@GCC_4.3.0 1:4.3.0 __gnu_satfractusqusa@GCC_4.3.0 1:4.3.0 __gnu_ssaddda3@GCC_4.3.0 1:4.3.0 __gnu_ssadddq3@GCC_4.3.0 1:4.3.0 __gnu_ssaddha3@GCC_4.3.0 1:4.3.0 __gnu_ssaddhq3@GCC_4.3.0 1:4.3.0 __gnu_ssaddqq3@GCC_4.3.0 1:4.3.0 __gnu_ssaddsa3@GCC_4.3.0 1:4.3.0 __gnu_ssaddsq3@GCC_4.3.0 1:4.3.0 __gnu_ssashlda3@GCC_4.3.0 1:4.3.0 __gnu_ssashldq3@GCC_4.3.0 1:4.3.0 __gnu_ssashlha3@GCC_4.3.0 1:4.3.0 __gnu_ssashlhq3@GCC_4.3.0 1:4.3.0 __gnu_ssashlqq3@GCC_4.3.0 1:4.3.0 __gnu_ssashlsa3@GCC_4.3.0 1:4.3.0 __gnu_ssashlsq3@GCC_4.3.0 1:4.3.0 __gnu_ssdivda3@GCC_4.3.0 1:4.3.0 __gnu_ssdivdq3@GCC_4.3.0 1:4.3.0 __gnu_ssdivha3@GCC_4.3.0 1:4.3.0 __gnu_ssdivhq3@GCC_4.3.0 1:4.3.0 __gnu_ssdivqq3@GCC_4.3.0 1:4.3.0 __gnu_ssdivsa3@GCC_4.3.0 1:4.3.0 __gnu_ssdivsq3@GCC_4.3.0 1:4.3.0 __gnu_ssmulda3@GCC_4.3.0 1:4.3.0 __gnu_ssmuldq3@GCC_4.3.0 1:4.3.0 __gnu_ssmulha3@GCC_4.3.0 1:4.3.0 __gnu_ssmulhq3@GCC_4.3.0 1:4.3.0 __gnu_ssmulqq3@GCC_4.3.0 1:4.3.0 __gnu_ssmulsa3@GCC_4.3.0 1:4.3.0 __gnu_ssmulsq3@GCC_4.3.0 1:4.3.0 __gnu_ssnegda2@GCC_4.3.0 1:4.3.0 __gnu_ssnegdq2@GCC_4.3.0 1:4.3.0 __gnu_ssnegha2@GCC_4.3.0 1:4.3.0 __gnu_ssneghq2@GCC_4.3.0 1:4.3.0 __gnu_ssnegqq2@GCC_4.3.0 1:4.3.0 __gnu_ssnegsa2@GCC_4.3.0 1:4.3.0 __gnu_ssnegsq2@GCC_4.3.0 1:4.3.0 __gnu_sssubda3@GCC_4.3.0 1:4.3.0 __gnu_sssubdq3@GCC_4.3.0 1:4.3.0 __gnu_sssubha3@GCC_4.3.0 1:4.3.0 __gnu_sssubhq3@GCC_4.3.0 1:4.3.0 __gnu_sssubqq3@GCC_4.3.0 1:4.3.0 __gnu_sssubsa3@GCC_4.3.0 1:4.3.0 __gnu_sssubsq3@GCC_4.3.0 1:4.3.0 __gnu_subda3@GCC_4.3.0 1:4.3.0 __gnu_subdq3@GCC_4.3.0 1:4.3.0 __gnu_subha3@GCC_4.3.0 1:4.3.0 __gnu_subhq3@GCC_4.3.0 1:4.3.0 __gnu_subqq3@GCC_4.3.0 1:4.3.0 __gnu_subsa3@GCC_4.3.0 1:4.3.0 __gnu_subsq3@GCC_4.3.0 1:4.3.0 __gnu_subuda3@GCC_4.3.0 1:4.3.0 __gnu_subudq3@GCC_4.3.0 1:4.3.0 __gnu_subuha3@GCC_4.3.0 1:4.3.0 __gnu_subuhq3@GCC_4.3.0 1:4.3.0 __gnu_subuqq3@GCC_4.3.0 1:4.3.0 __gnu_subusa3@GCC_4.3.0 1:4.3.0 __gnu_subusq3@GCC_4.3.0 1:4.3.0 __gnu_udivuda3@GCC_4.3.0 1:4.3.0 __gnu_udivudq3@GCC_4.3.0 1:4.3.0 __gnu_udivuha3@GCC_4.3.0 1:4.3.0 __gnu_udivuhq3@GCC_4.3.0 1:4.3.0 __gnu_udivuqq3@GCC_4.3.0 1:4.3.0 __gnu_udivusa3@GCC_4.3.0 1:4.3.0 __gnu_udivusq3@GCC_4.3.0 1:4.3.0 __gnu_unwind_frame@GCC_3.5 1:4.3.0 __gnu_usadduda3@GCC_4.3.0 1:4.3.0 __gnu_usaddudq3@GCC_4.3.0 1:4.3.0 __gnu_usadduha3@GCC_4.3.0 1:4.3.0 __gnu_usadduhq3@GCC_4.3.0 1:4.3.0 __gnu_usadduqq3@GCC_4.3.0 1:4.3.0 __gnu_usaddusa3@GCC_4.3.0 1:4.3.0 __gnu_usaddusq3@GCC_4.3.0 1:4.3.0 __gnu_usashluda3@GCC_4.3.0 1:4.3.0 __gnu_usashludq3@GCC_4.3.0 1:4.3.0 __gnu_usashluha3@GCC_4.3.0 1:4.3.0 __gnu_usashluhq3@GCC_4.3.0 1:4.3.0 __gnu_usashluqq3@GCC_4.3.0 1:4.3.0 __gnu_usashlusa3@GCC_4.3.0 1:4.3.0 __gnu_usashlusq3@GCC_4.3.0 1:4.3.0 __gnu_usdivuda3@GCC_4.3.0 1:4.3.0 __gnu_usdivudq3@GCC_4.3.0 1:4.3.0 __gnu_usdivuha3@GCC_4.3.0 1:4.3.0 __gnu_usdivuhq3@GCC_4.3.0 1:4.3.0 __gnu_usdivuqq3@GCC_4.3.0 1:4.3.0 __gnu_usdivusa3@GCC_4.3.0 1:4.3.0 __gnu_usdivusq3@GCC_4.3.0 1:4.3.0 __gnu_usmuluda3@GCC_4.3.0 1:4.3.0 __gnu_usmuludq3@GCC_4.3.0 1:4.3.0 __gnu_usmuluha3@GCC_4.3.0 1:4.3.0 __gnu_usmuluhq3@GCC_4.3.0 1:4.3.0 __gnu_usmuluqq3@GCC_4.3.0 1:4.3.0 __gnu_usmulusa3@GCC_4.3.0 1:4.3.0 __gnu_usmulusq3@GCC_4.3.0 1:4.3.0 __gnu_usneguda2@GCC_4.3.0 1:4.3.0 __gnu_usnegudq2@GCC_4.3.0 1:4.3.0 __gnu_usneguha2@GCC_4.3.0 1:4.3.0 __gnu_usneguhq2@GCC_4.3.0 1:4.3.0 __gnu_usneguqq2@GCC_4.3.0 1:4.3.0 __gnu_usnegusa2@GCC_4.3.0 1:4.3.0 __gnu_usnegusq2@GCC_4.3.0 1:4.3.0 __gnu_ussubuda3@GCC_4.3.0 1:4.3.0 __gnu_ussubudq3@GCC_4.3.0 1:4.3.0 __gnu_ussubuha3@GCC_4.3.0 1:4.3.0 __gnu_ussubuhq3@GCC_4.3.0 1:4.3.0 __gnu_ussubuqq3@GCC_4.3.0 1:4.3.0 __gnu_ussubusa3@GCC_4.3.0 1:4.3.0 __gnu_ussubusq3@GCC_4.3.0 1:4.3.0 __gtdf2@GCC_3.0 1:4.3.0 __gtsf2@GCC_3.0 1:4.3.0 __ledf2@GCC_3.0 1:4.3.0 __lesf2@GCC_3.0 1:4.3.0 __lshrdi3@GCC_3.0 1:4.3.0 __ltdf2@GCC_3.0 1:4.3.0 __ltsf2@GCC_3.0 1:4.3.0 __moddi3@GLIBC_2.0 1:4.3.0 __modsi3@GCC_3.0 1:4.3.0 __muldc3@GCC_4.0.0 1:4.3.0 __muldf3@GCC_3.0 1:4.3.0 __muldi3@GCC_3.0 1:4.3.0 __mulsc3@GCC_4.0.0 1:4.3.0 __mulsf3@GCC_3.0 1:4.3.0 __mulvdi3@GCC_3.0 1:4.3.0 __mulvsi3@GCC_3.0 1:4.3.0 __nedf2@GCC_3.0 1:4.3.0 __negdf2@GCC_3.0 1:4.3.0 __negdi2@GCC_3.0 1:4.3.0 __negsf2@GCC_3.0 1:4.3.0 __negvdi2@GCC_3.0 1:4.3.0 __negvsi2@GCC_3.0 1:4.3.0 __nesf2@GCC_3.0 1:4.3.0 __paritydi2@GCC_3.4 1:4.3.0 __paritysi2@GCC_3.4 1:4.3.0 __popcountdi2@GCC_3.4 1:4.3.0 __popcountsi2@GCC_3.4 1:4.3.0 __powidf2@GCC_4.0.0 1:4.3.0 __powisf2@GCC_4.0.0 1:4.3.0 __subdf3@GCC_3.0 1:4.3.0 __subsf3@GCC_3.0 1:4.3.0 __subvdi3@GCC_3.0 1:4.3.0 __subvsi3@GCC_3.0 1:4.3.0 __truncdfsf2@GCC_3.0 1:4.3.0 __ucmpdi2@GCC_3.0 1:4.3.0 __udivdi3@GLIBC_2.0 1:4.3.0 __udivmoddi4@GCC_3.0 1:4.3.0 __udivsi3@GCC_3.0 1:4.3.0 __umoddi3@GLIBC_2.0 1:4.3.0 __umodsi3@GCC_3.0 1:4.3.0 __unorddf2@GCC_3.3.4 1:4.3.0 __unordsf2@GCC_3.3.4 1:4.3.0 gnat-4.8-4.8.2/debian/libgcj-common.postinst0000644000000000000000000000031012173542725015424 0ustar #! /bin/sh -e case "$1" in configure) docdir=/usr/share/doc/libgcj-common if [ -d $docdir ] && [ ! -h $docdir ]; then rm -rf $docdir ln -s gcj-@BV@-base $docdir fi esac #DEBHELPER# gnat-4.8-4.8.2/debian/gcc-BV-doc.doc-base.gcc0000644000000000000000000000066412173542725015051 0ustar Document: gcc-@BV@ Title: The GNU C and C++ compiler Author: Various Abstract: This manual documents how to run, install and port the GNU compiler, as well as its new features and incompatibilities, and how to report bugs. Section: Programming Format: html Index: /usr/share/doc/gcc-@BV@-base/gcc.html Files: /usr/share/doc/gcc-@BV@-base/gcc.html Format: info Index: /usr/share/info/gcc-@BV@.info.gz Files: /usr/share/info/gcc-@BV@* gnat-4.8-4.8.2/debian/README.cross0000644000000000000000000001340512173542725013120 0ustar Building cross-compiler Debian packages --------------------------------------- It is possible to build C and C++ cross compilers and support libraries from gcc-4.0 source package. This document describes how to do so. Cross-compiler build support is not perfect yet, please send fixes and improvements to debian-gcc@lists.debian.org and debian-embedded@lists.debian.org Before you start, you should probably check available pre-built cross-toolchain debs. Available at http://www.emdebian.org Old patches could be reached at http://zigzag.lvk.cs.msu.su/~nikita/debian/ If they are no longer there, you may check EmDebian web site at http://www.emdebian.org/ or ask debian-embedded@lists.debian.org for newer location. Please check http://bugs.debian.org/391445 if you are about building gcc-4.3 or above. Most of them has been merged with gcc debian sources. 0. What's wrong with toolchain-source approach Package toolchain-source contains sources for binutils and gcc, as well as some support scripts to build cross-compiler packages. They seem to work. However, there is one fundamental problem with this approach. Gcc package is actively maintained and frequently updated. These updates do contain bug fixes and improvements, especially for non-x86 architectures. Cross-compilers built using toolchain-source will not get those fixes unless toolchain-source package is updated after each binutils and gcc update. The later is not hapenning in real life. For example, toolchain-source was upgraded from gcc-3.2 to gcc-3.3 half a year later than gcc-3.3 became Debian default compiler. Keeping toolchain-source package up-to-date requires lots of work, and seems to be a waste of time. It is much better to build cross-compilers directly from gcc source package. 1. What is needed to build a cross-compiler from gcc-4.3 source 1.1. dpkg-cross package Dpkg-cross package contains several tools to manage cross-compile environment. It can convert native debian library and lib-dev packages for the target architecture to binary-all packages that keep libraries and headers under /usr/$(TARGET)/. Also it contains helper tools for cross-compiling debian packages. Some of these tools are used while building libgcc1 and libstdc++ library packages. The resulting library packages follow the same convensions as library packages converted by dpkg-cross. Currently, at least version 1.18 of dpkg-cross is needed for cross-gcc package build. Version 1.32 of dpkg-cross is needed in order to build gcc-4.3. 1.2. cross-binutils for the target You need cross-binutils for your target to build cross-compiler. Binutils-multiarch package will not work because it does not provide cross- assemblers. If you don't want to use pre-built cross-binutils packages, you may build your own from binutils debian source package, using patches posted to bug #231707. Please use the latest of patch versions available there. Alternatively, you may use toolchain-source package to build cross-binutils (but in this case you will probably also want to use toolchain-source to build cross-compiler itself). However, multilib'ed cross-compilers may not build or work with these binutils. 1.3. libc for target You also need libc library and development packages for the target architecture installed. To get those, download linux-kernel-headers, libc6, and libc6-dev binary debs for your target, convert those using dpkg-cross -b, and install resulting -arch-cross debs. Consult dpkg-cross manual page for more information. Building with/for alternative libc's is not supported yet (but this is in TODO). Note that if you plan to use your cross-toolchain to develop kernel drivers or similar low-level things, you will probably also need kernel headers for the exact kernel version that your target hardware uses. 2. Building cross-compiler packages Get gcc-4.3 source package. Unpack it using dpkg-source -x, and cd to the package directory. Set GCC_TARGET environment variable to the target architectire name. Note that currently you should use debian architecture name (i.e 'powerpc' or 'arm'), not GNU system type (i.e. 'powerpc-linux' or 'arm-linux'). Setting GCC_TARGET to GNU system type will cause cross-compiler build to fail. Instead of setting GCC_TARGET, target architecture name may be put into debian/target file. If both GCC_TARGET is defined and debian/target file exists, GCC_TARGET is used. Run debian/rules control. This will change debian/control file, adjusting build-depends. By default, the packages will not depend on the system -base package. A variable DEB_CROSS_INDEPENDENT has been merged with DEB_CROSS variable. You can then build with either $ GCC_TARGET=[arch] dpkg-buildpackage -rfakeroot 3. Using crosshurd Jeff Bailey suggests alternate way to setup environment to build cross-compiler, using 'crosshurd' package. Crosshurd is like debootstrap but cross-arch, and works on the Hurd, Linux and FreeBSD. (The name is historical). If you setup your environment with crosshurd, you will need to fix symlinks in lib and usr/lib to be relative instead of absolute. For example: lrwxrwxrwx 1 root root 20 2004-05-06 23:02 libcom_err.so -> /lib/libcom_err.so.2 Needs to be changed to: lrwxrwxrwx 1 root root 20 2004-05-06 23:02 libcom_err.so -> ../../lib/libcom_err.so.2 Also, if you choose this method, set the environment variable 'with_sysroot' to point to the ABSOLUTE PATH where the crosshurd was done. Note however that build-depends of cross-gcc and dependencies in generated libgcc1 and libstdc++ packages assume that you use dpkg-cross to set up your environment, and may be wrong or incomplete if you use alternate methods. But probably you don't care. -- Nikita V. Youshchenko - Jun 2004 Hector Oron Martinez - Oct 2006 gnat-4.8-4.8.2/debian/libgfortran3.symbols.ppc64el0000644000000000000000000000031112274247101016352 0ustar libgfortran.so.3 libgfortran3 #MINVER# #include "libgfortran3.symbols.common" #include "libgfortran3.symbols.16.powerpc" #include "libgfortran3.symbols.16.powerpc64" #include "libgfortran3.symbols.64" gnat-4.8-4.8.2/debian/copyright0000644000000000000000000007216612320221533013035 0ustar This is the Debian GNU/Linux prepackaged version of the GNU compiler collection, containing Ada, C, C++, Fortran 95, Java, Objective-C, Objective-C++, and Treelang compilers, documentation, and support libraries. In addition, Debian provides the gdc compiler, either in the same source package, or built from a separate same source package. Packaging is done by the Debian GCC Maintainers , with sources obtained from: ftp://gcc.gnu.org/pub/gcc/releases/ (for full releases) svn://gcc.gnu.org/svn/gcc/ (for prereleases) http://bitbucket.org/goshawk/gdc (for D) The current gcc-4.8 source package is taken from the SVN gcc-4_8-branch. Changes: See changelog.Debian.gz Debian splits the GNU Compiler Collection into packages for each language, library, and documentation as follows: Language Compiler package Library package Documentation --------------------------------------------------------------------------- Ada gnat-4.8 libgnat-4.8 gnat-4.8-doc C gcc-4.8 gcc-4.8-doc C++ g++-4.8 libstdc++6 libstdc++6-4.8-doc D gdc-4.8 Fortran 95 gfortran-4.8 libgfortran3 gfortran-4.8-doc Go gccgo-4.8 libgo0 Java gcj-4.8 libgcj10 libgcj-doc Objective C gobjc-4.8 libobjc2 Objective C++ gobjc++-4.8 For some language run-time libraries, Debian provides source files, development files, debugging symbols and libraries containing position- independent code in separate packages: Language Sources Development Debugging Position-Independent ------------------------------------------------------------------------------ C++ libstdc++6-4.8-dbg libstdc++6-4.8-pic D libphobos-4.8-dev Java libgcj10-src libgcj10-dev libgcj10-dbg Additional packages include: All languages: libgcc1, libgcc2, libgcc4 GCC intrinsics (platform-dependent) gcc-4.8-base Base files common to all compilers gcc-4.8-soft-float Software floating point (ARM only) gcc-4.8-source The sources with patches Ada: libgnatvsn-dev, libgnatvsn4.8 GNAT version library libgnatprj-dev, libgnatprj4.8 GNAT Project Manager library C: cpp-4.8, cpp-4.8-doc GNU C Preprocessor libmudflap0-dev, libmudflap0 Library for instrumenting pointers libssp0-dev, libssp0 GCC stack smashing protection library libquadmath0 Math routines for the __float128 type fixincludes Fix non-ANSI header files protoize Create/remove ANSI prototypes from C code Java: gij The Java bytecode interpreter and VM libgcj-common Common files for the Java run-time libgcj10-awt The Abstract Windowing Toolkit libgcj10-jar Java ARchive for the Java run-time C, C++ and Fortran 95: libgomp1-dev, libgomp1 GCC OpenMP (GOMP) support library libitm1-dev, libitm1 GNU Transactional Memory Library Biarch support: On some 64-bit platforms which can also run 32-bit code, Debian provides additional packages containing 32-bit versions of some libraries. These packages have names beginning with 'lib32' instead of 'lib', for example lib32stdc++6. Similarly, on some 32-bit platforms which can also run 64-bit code, Debian provides additional packages with names beginning with 'lib64' instead of 'lib'. These packages contain 64-bit versions of the libraries. (At this time, not all platforms and not all libraries support biarch.) The license terms for these lib32 or lib64 packages are identical to the ones for the lib packages. COPYRIGHT STATEMENTS AND LICENSING TERMS GCC is Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. GCC 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 3, or (at your option) any later version. GCC 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. Files that have exception clauses are licensed under the terms of the GNU General Public License; either version 3, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL', version 3 of this license in `/usr/share/common-licenses/GPL-3'. The following runtime libraries are licensed under the terms of the GNU General Public License (v3 or later) with version 3.1 of the GCC Runtime Library Exception (included in this file): - libgcc (libgcc/, gcc/libgcc2.[ch], gcc/unwind*, gcc/gthr*, gcc/coretypes.h, gcc/crtstuff.c, gcc/defaults.h, gcc/dwarf2.h, gcc/emults.c, gcc/gbl-ctors.h, gcc/gcov-io.h, gcc/libgcov.c, gcc/tsystem.h, gcc/typeclass.h). - libatomic - libdecnumber - libgomp - libitm - libssp - libstdc++-v3 - libobjc - libmudflap - libgfortran - The libgnat-4.8 Ada support library and libgnatvsn library. - Various config files in gcc/config/ used in runtime libraries. In contrast, libgnatprj is licensed under the terms of the pure GNU General Public License. The libbacktrace library is licensed under the following terms: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: (1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. (2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. (3) The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The libsanitizer library (libasan) is licensed under the following terms: Copyright (c) 2009-2012 by the LLVM contributors. All rights reserved. Developed by: LLVM Team University of Illinois at Urbana-Champaign http://llvm.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimers in the documentation and/or other materials provided with the distribution. * Neither the names of the LLVM Team, University of Illinois at Urbana-Champaign, nor the names of its contributors may be used to endorse or promote products derived from this Software without specific prior written permission. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. The libgcj library is licensed under the terms of the GNU General Public License, with a special exception: Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. The libffi library is licensed under the following terms: libffi - Copyright (c) 1996-2003 Red Hat, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. The documentation is licensed under the GNU Free Documentation License (v1.2). On Debian GNU/Linux systems, the complete text of this license is in `/usr/share/common-licenses/GFDL-1.2'. GCC RUNTIME LIBRARY EXCEPTION Version 3.1, 31 March 2009 Copyright (C) 2009 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This GCC Runtime Library Exception ("Exception") is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception. When you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs to use, in this way, the header files and runtime libraries covered by this Exception. 0. Definitions. A file is an "Independent Module" if it either requires the Runtime Library for execution after a Compilation Process, or makes use of an interface provided by the Runtime Library, but is not otherwise based on the Runtime Library. "GCC" means a version of the GNU Compiler Collection, with or without modifications, governed by version 3 (or a specified later version) of the GNU General Public License (GPL) with the option of using any subsequent versions published by the FSF. "GPL-compatible Software" is software whose conditions of propagation, modification and use would permit combination with GCC in accord with the license of GCC. "Target Code" refers to output from any compiler for a real or virtual target processor architecture, in executable form or suitable for input to an assembler, loader, linker and/or execution phase. Notwithstanding that, Target Code does not include data in any format that is used as a compiler intermediate representation, or used for producing a compiler intermediate representation. The "Compilation Process" transforms code entirely represented in non-intermediate languages designed for human-written code, and/or in Java Virtual Machine byte code, into Target Code. Thus, for example, use of source code generators and preprocessors need not be considered part of the Compilation Process, since the Compilation Process can be understood as starting with the output of the generators or preprocessors. A Compilation Process is "Eligible" if it is done using GCC, alone or with other GPL-compatible software, or if it is done without using any work based on GCC. For example, using non-GPL-compatible Software to optimize any GCC intermediate representations would not qualify as an Eligible Compilation Process. 1. Grant of Additional Permission. You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules. 2. No Weakening of GCC Copyleft. The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. libquadmath/*.[hc]: Copyright (C) 2010 Free Software Foundation, Inc. Written by Francois-Xavier Coudert Written by Tobias Burnus This file is part of the libiberty library. Libiberty is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Libiberty 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 Library General Public License for more details. libquadmath/gdtoa: The author of this software is David M. Gay. Copyright (C) 1998, 1999, 2000, 2001 by Lucent Technologies All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that the copyright notice and this permission notice and warranty disclaimer appear in supporting documentation, and that the name of Lucent or any of its entities not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. libquadmath/math: atanq.c, expm1q.c, j0q.c, j1q.c, log1pq.c, logq.c: Copyright 2001 by Stephen L. Moshier This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, 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 Lesser General Public License for more details. coshq.c, erfq.c, jnq.c, lgammaq.c, powq.c, roundq.c: Changes for 128-bit __float128 are Copyright (C) 2001 Stephen L. Moshier and are incorporated herein by permission of the author. The author reserves the right to distribute this material elsewhere under different copying permissions. These modifications are distributed here under the following terms: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, 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 Lesser General Public License for more details. ldexpq.c: * Conversion to long double by Ulrich Drepper, * Cygnus Support, drepper@cygnus.com. cosq_kernel.c, expq.c, sincos_table.c, sincosq.c, sincosq_kernel.c, sinq_kernel.c, truncq.c: Copyright (C) 1997, 1999 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C 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 Lesser General Public License for more details. isinfq.c: * Written by J.T. Conklin . * Change for long double by Jakub Jelinek * Public domain. llroundq.c, lroundq.c, tgammaq.c: Copyright (C) 1997, 1999, 2002, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C 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 Lesser General Public License for more details. log10q.c: Cephes Math Library Release 2.2: January, 1991 Copyright 1984, 1991 by Stephen L. Moshier Adapted for glibc November, 2001 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, 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 Lesser General Public License for more details. remaining files: * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. libjava/classpath/resource/gnu/java/locale/* They are copyrighted and covered by the terms of use: http://www.unicode.org/copyright.html EXHIBIT 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/ and http://www.unicode.org/reports/. Unicode Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/ and http://www.unicode.org/reports/. NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. COPYRIGHT AND PERMISSION NOTICE Copyrigh (c) 1991-2011 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided that (a) the above copyright notice(s) and this permission notice appear with all copies of the Data Files or Software, (b) both the above copyright notice(s) and this permission notice appear in associated documentation, and (c) there is clear notice in each modified Data File or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or software has been modified. THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. Unicode and the Unicode logo are trademarks of Unicode, Inc., and may be registered in some jurisdictions. All other trademarks and registered trademarks mentioned herein are the property of their respective owners. gcc/go/gofrontend, libgo: Copyright (c) 2009 The Go Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. D: gdc-4.8 GNU D Compiler libphobos-4.8-dev D standard runtime library The D source package is made up of the following components. The D front-end for GCC: - d/* Copyright (C) 2004-2007 David Friedman Modified by Vincenzo Ampolo, Michael Parrot, Iain Buclaw, (C) 2009, 2010 This program 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 of the License, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL', version 2 of this license in `/usr/share/common-licenses/GPL-2'. The DMD Compiler implementation of the D programming language: - d/dmd/* Copyright (c) 1999-2010 by Digital Mars All Rights Reserved written by Walter Bright http://www.digitalmars.com License for redistribution is by either the Artistic License or the GNU General Public License (v1). On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL', the Artistic license in `/usr/share/common-licenses/Artistic'. The Zlib data compression library: - d/phobos/etc/c/zlib/* (C) 1995-2004 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. The Phobos standard runtime library: - d/phobos/* Unless otherwise marked within the file, each file in the source is under the following licenses: Copyright (C) 2004-2005 by Digital Mars, www.digitalmars.com Written by Walter Bright This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, in both source and binary form, subject to the following restrictions: o The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. o Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. o This notice may not be removed or altered from any source distribution. By plainly marking modifications, something along the lines of adding to each file that has been changed a "Modified by Foo Bar" line underneath the "Written by" line would be adequate. gnat-4.8-4.8.2/debian/lib32stdc++6.symbols.sparc640000644000000000000000000000050712175256105016003 0ustar libstdc++.so.6 lib32stdc++6 #MINVER# #include "libstdc++6.symbols.32bit" #include "libstdc++6.symbols.excprop" __gxx_personality_v0@CXXABI_1.3 4.1.1 #include "libstdc++6.symbols.glibcxxmath" #include "libstdc++6.symbols.ldbl.32bit" _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3.0~rc2 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3.0~rc2 gnat-4.8-4.8.2/debian/gcc-dummy.texi0000644000000000000000000000170312173542725013666 0ustar \input texinfo @c -*-texinfo-*- @c %**start of header @settitle The GNU Compiler Collection (GCC) @c Create a separate index for command line options. @defcodeindex op @c Merge the standard indexes into a single one. @syncodeindex fn cp @syncodeindex vr cp @syncodeindex ky cp @syncodeindex pg cp @syncodeindex tp cp @paragraphindent 1 @c %**end of header @copying The current documentation is licensed under the same terms as the Debian packaging. @end copying @ifnottex @dircategory Programming @direntry * @name@: (@name@). The GNU Compiler Collection (@name@). @end direntry @sp 1 @end ifnottex @summarycontents @contents @page @node Top @top Introduction @cindex introduction The official GNU compilers' documentation is released under the terms of the GNU Free Documentation License with cover texts. This has been considered non free by the Debian Project. Thus you will find it in the non-free section of the Debian archive. @bye gnat-4.8-4.8.2/debian/libgccLC.postinst0000644000000000000000000000030512173542725014352 0ustar #! /bin/sh -e case "$1" in configure) docdir=/usr/share/doc/libgcc@LC@ if [ -d $docdir ] && [ ! -h $docdir ]; then rm -rf $docdir ln -s gcc-@BV@-base $docdir fi esac #DEBHELPER# gnat-4.8-4.8.2/debian/lib64stdc++6.symbols.powerpc0000644000000000000000000000066312173542725016214 0ustar libstdc++.so.6 lib64stdc++6 #MINVER# #include "libstdc++6.symbols.64bit" #include "libstdc++6.symbols.128bit" #include "libstdc++6.symbols.excprop" _ZN9__gnu_cxx12__atomic_addEPVii@GLIBCXX_3.4 4.1.1 _ZN9__gnu_cxx18__exchange_and_addEPVii@GLIBCXX_3.4 4.1.1 #include "libstdc++6.symbols.glibcxxmath" #include "libstdc++6.symbols.ldbl.64bit" _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3.0~rc2 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3.0~rc2 gnat-4.8-4.8.2/debian/lib64gfortran3.symbols.powerpc0000644000000000000000000000031312173542725016740 0ustar libgfortran.so.3 lib64gfortran3 #MINVER# #include "libgfortran3.symbols.common" #include "libgfortran3.symbols.16.powerpc" #include "libgfortran3.symbols.16.powerpc64" #include "libgfortran3.symbols.64" gnat-4.8-4.8.2/debian/gcj-BV-jre-headless.postrm0000644000000000000000000000014612173542725015770 0ustar #! /bin/sh -e case "$1" in purge) rm -f /var/lib/gcj-@BV@/classmap.db esac #DEBHELPER# exit 0 gnat-4.8-4.8.2/debian/gccgo-BV-doc.doc-base0000644000000000000000000000113712173542725014640 0ustar Document: gccgo-@BV@ Title: The GNU Go compiler (version @BV@) Author: Various Abstract: This manual describes how to use gccgo, the GNU compiler for the Go programming language. This manual is specifically about gccgo. For more information about the Go programming language in general, including language specifications and standard package documentation, see http://golang.org/. Section: Programming Format: html Index: /usr/share/doc/gcc-@BV@-base/gccgo.html Files: /usr/share/doc/gcc-@BV@-base/gccgo.html Format: info Index: /usr/share/info/gccgo-@BV@.info.gz Files: /usr/share/info/gccgo-@BV@* gnat-4.8-4.8.2/debian/libn32gcc1.symbols.mips0000644000000000000000000015270312173542725015325 0ustar libgcc_s.so.1 libn32gcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3.4@GCC_3.3.4 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4.4@GCC_3.4.4 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.2.0 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.4.0@GCC_4.4.0 1:4.4 GCC_4.5.0@GCC_4.5.0 1:4.5 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __absvti2@GCC_3.4.4 1:4.1.1 __addda3@GCC_4.3.0 1:4.3 __adddf3@GCC_3.0 1:4.1.1 __adddq3@GCC_4.3.0 1:4.3 __addha3@GCC_4.3.0 1:4.3 __addhq3@GCC_4.3.0 1:4.3 __addqq3@GCC_4.3.0 1:4.3 __addsa3@GCC_4.3.0 1:4.3 __addsf3@GCC_3.0 1:4.1.1 __addsq3@GCC_4.3.0 1:4.3 __addta3@GCC_4.3.0 1:4.3 __addtf3@GCC_3.0 1:4.1.1 __addtq3@GCC_4.3.0 1:4.3 __adduda3@GCC_4.3.0 1:4.3 __addudq3@GCC_4.3.0 1:4.3 __adduha3@GCC_4.3.0 1:4.3 __adduhq3@GCC_4.3.0 1:4.3 __adduqq3@GCC_4.3.0 1:4.3 __addusa3@GCC_4.3.0 1:4.3 __addusq3@GCC_4.3.0 1:4.3 __adduta3@GCC_4.3.0 1:4.3 __addutq3@GCC_4.3.0 1:4.3 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __addvti3@GCC_3.4.4 1:4.1.1 __ashlda3@GCC_4.3.0 1:4.3 __ashldq3@GCC_4.3.0 1:4.3 __ashlha3@GCC_4.3.0 1:4.3 __ashlhq3@GCC_4.3.0 1:4.3 __ashlqq3@GCC_4.3.0 1:4.3 __ashlsa3@GCC_4.3.0 1:4.3 __ashlsq3@GCC_4.3.0 1:4.3 __ashlta3@GCC_4.3.0 1:4.3 __ashlti3@GCC_3.0 1:4.1.1 __ashltq3@GCC_4.3.0 1:4.3 __ashluda3@GCC_4.3.0 1:4.3 __ashludq3@GCC_4.3.0 1:4.3 __ashluha3@GCC_4.3.0 1:4.3 __ashluhq3@GCC_4.3.0 1:4.3 __ashluqq3@GCC_4.3.0 1:4.3 __ashlusa3@GCC_4.3.0 1:4.3 __ashlusq3@GCC_4.3.0 1:4.3 __ashluta3@GCC_4.3.0 1:4.3 __ashlutq3@GCC_4.3.0 1:4.3 __ashrda3@GCC_4.3.0 1:4.3 __ashrdq3@GCC_4.3.0 1:4.3 __ashrha3@GCC_4.3.0 1:4.3 __ashrhq3@GCC_4.3.0 1:4.3 __ashrqq3@GCC_4.3.0 1:4.3 __ashrsa3@GCC_4.3.0 1:4.3 __ashrsq3@GCC_4.3.0 1:4.3 __ashrta3@GCC_4.3.0 1:4.3 __ashrti3@GCC_3.0 1:4.1.1 __ashrtq3@GCC_4.3.0 1:4.3 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbti2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzti2@GCC_3.4 1:4.1.1 __cmpda2@GCC_4.3.0 1:4.3 __cmpdq2@GCC_4.3.0 1:4.3 __cmpha2@GCC_4.3.0 1:4.3 __cmphq2@GCC_4.3.0 1:4.3 __cmpqq2@GCC_4.3.0 1:4.3 __cmpsa2@GCC_4.3.0 1:4.3 __cmpsq2@GCC_4.3.0 1:4.3 __cmpta2@GCC_4.3.0 1:4.3 __cmpti2@GCC_3.0 1:4.1.1 __cmptq2@GCC_4.3.0 1:4.3 __cmpuda2@GCC_4.3.0 1:4.3 __cmpudq2@GCC_4.3.0 1:4.3 __cmpuha2@GCC_4.3.0 1:4.3 __cmpuhq2@GCC_4.3.0 1:4.3 __cmpuqq2@GCC_4.3.0 1:4.3 __cmpusa2@GCC_4.3.0 1:4.3 __cmpusq2@GCC_4.3.0 1:4.3 __cmputa2@GCC_4.3.0 1:4.3 __cmputq2@GCC_4.3.0 1:4.3 __ctzdi2@GCC_3.4 1:4.1.1 __ctzti2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divda3@GCC_4.3.0 1:4.3 __divdc3@GCC_4.0.0 1:4.1.1 __divdf3@GCC_3.0 1:4.1.1 __divdq3@GCC_4.3.0 1:4.3 __divha3@GCC_4.3.0 1:4.3 __divhq3@GCC_4.3.0 1:4.3 __divqq3@GCC_4.3.0 1:4.3 __divsa3@GCC_4.3.0 1:4.3 __divsc3@GCC_4.0.0 1:4.1.1 __divsf3@GCC_3.0 1:4.1.1 __divsq3@GCC_4.3.0 1:4.3 __divta3@GCC_4.3.0 1:4.3 __divtc3@GCC_4.0.0 1:4.1.1 __divtf3@GCC_3.0 1:4.1.1 __divti3@GCC_3.0 1:4.1.1 __divtq3@GCC_4.3.0 1:4.3 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __eqdf2@GCC_3.0 1:4.1.1 __eqsf2@GCC_3.0 1:4.1.1 __eqtf2@GCC_3.0 1:4.1.1 __extenddftf2@GCC_3.0 1:4.1.1 __extendsfdf2@GCC_3.0 1:4.1.1 __extendsftf2@GCC_3.0 1:4.1.1 __ffsdi2@GCC_3.0 1:4.1.1 __ffsti2@GCC_3.0 1:4.1.1 __fixdfdi@GCC_3.0 1:4.1.1 __fixdfsi@GCC_3.0 1:4.1.1 __fixdfti@GCC_3.0 1:4.1.1 __fixsfdi@GCC_3.0 1:4.1.1 __fixsfsi@GCC_3.0 1:4.1.1 __fixsfti@GCC_3.0 1:4.1.1 __fixtfdi@GCC_3.0 1:4.1.1 __fixtfsi@GCC_3.0 1:4.1.1 __fixtfti@GCC_3.0 1:4.1.1 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfsi@GCC_3.0 1:4.1.1 __fixunsdfti@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfsi@GCC_3.0 1:4.1.1 __fixunssfti@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_3.0 1:4.1.1 __fixunstfsi@GCC_3.0 1:4.1.1 __fixunstfti@GCC_3.0 1:4.1.1 __floatdidf@GCC_3.0 1:4.1.1 __floatdisf@GCC_3.0 1:4.1.1 __floatditf@GCC_3.0 1:4.1.1 __floatsidf@GCC_3.0 1:4.1.1 __floatsisf@GCC_3.0 1:4.1.1 __floatsitf@GCC_3.0 1:4.1.1 __floattidf@GCC_3.0 1:4.1.1 __floattisf@GCC_3.0 1:4.1.1 __floattitf@GCC_3.0 1:4.1.1 __floatundidf@GCC_4.2.0 1:4.2.1 __floatundisf@GCC_4.2.0 1:4.2.1 __floatunditf@GCC_4.2.0 1:4.2.1 __floatunsidf@GCC_4.2.0 1:4.2.1 __floatunsisf@GCC_4.2.0 1:4.2.1 __floatunsitf@GCC_4.2.0 1:4.2.1 __floatuntidf@GCC_4.2.0 1:4.2.1 __floatuntisf@GCC_4.2.0 1:4.2.1 __floatuntitf@GCC_4.2.0 1:4.2.1 __fractdadf@GCC_4.3.0 1:4.3 __fractdadi@GCC_4.3.0 1:4.3 __fractdadq@GCC_4.3.0 1:4.3 __fractdaha2@GCC_4.3.0 1:4.3 __fractdahi@GCC_4.3.0 1:4.3 __fractdahq@GCC_4.3.0 1:4.3 __fractdaqi@GCC_4.3.0 1:4.3 __fractdaqq@GCC_4.3.0 1:4.3 __fractdasa2@GCC_4.3.0 1:4.3 __fractdasf@GCC_4.3.0 1:4.3 __fractdasi@GCC_4.3.0 1:4.3 __fractdasq@GCC_4.3.0 1:4.3 __fractdata2@GCC_4.3.0 1:4.3 __fractdati@GCC_4.3.0 1:4.3 __fractdatq@GCC_4.3.0 1:4.3 __fractdauda@GCC_4.3.0 1:4.3 __fractdaudq@GCC_4.3.0 1:4.3 __fractdauha@GCC_4.3.0 1:4.3 __fractdauhq@GCC_4.3.0 1:4.3 __fractdauqq@GCC_4.3.0 1:4.3 __fractdausa@GCC_4.3.0 1:4.3 __fractdausq@GCC_4.3.0 1:4.3 __fractdauta@GCC_4.3.0 1:4.3 __fractdautq@GCC_4.3.0 1:4.3 __fractdfda@GCC_4.3.0 1:4.3 __fractdfdq@GCC_4.3.0 1:4.3 __fractdfha@GCC_4.3.0 1:4.3 __fractdfhq@GCC_4.3.0 1:4.3 __fractdfqq@GCC_4.3.0 1:4.3 __fractdfsa@GCC_4.3.0 1:4.3 __fractdfsq@GCC_4.3.0 1:4.3 __fractdfta@GCC_4.3.0 1:4.3 __fractdftq@GCC_4.3.0 1:4.3 __fractdfuda@GCC_4.3.0 1:4.3 __fractdfudq@GCC_4.3.0 1:4.3 __fractdfuha@GCC_4.3.0 1:4.3 __fractdfuhq@GCC_4.3.0 1:4.3 __fractdfuqq@GCC_4.3.0 1:4.3 __fractdfusa@GCC_4.3.0 1:4.3 __fractdfusq@GCC_4.3.0 1:4.3 __fractdfuta@GCC_4.3.0 1:4.3 __fractdfutq@GCC_4.3.0 1:4.3 __fractdida@GCC_4.3.0 1:4.3 __fractdidq@GCC_4.3.0 1:4.3 __fractdiha@GCC_4.3.0 1:4.3 __fractdihq@GCC_4.3.0 1:4.3 __fractdiqq@GCC_4.3.0 1:4.3 __fractdisa@GCC_4.3.0 1:4.3 __fractdisq@GCC_4.3.0 1:4.3 __fractdita@GCC_4.3.0 1:4.3 __fractditq@GCC_4.3.0 1:4.3 __fractdiuda@GCC_4.3.0 1:4.3 __fractdiudq@GCC_4.3.0 1:4.3 __fractdiuha@GCC_4.3.0 1:4.3 __fractdiuhq@GCC_4.3.0 1:4.3 __fractdiuqq@GCC_4.3.0 1:4.3 __fractdiusa@GCC_4.3.0 1:4.3 __fractdiusq@GCC_4.3.0 1:4.3 __fractdiuta@GCC_4.3.0 1:4.3 __fractdiutq@GCC_4.3.0 1:4.3 __fractdqda@GCC_4.3.0 1:4.3 __fractdqdf@GCC_4.3.0 1:4.3 __fractdqdi@GCC_4.3.0 1:4.3 __fractdqha@GCC_4.3.0 1:4.3 __fractdqhi@GCC_4.3.0 1:4.3 __fractdqhq2@GCC_4.3.0 1:4.3 __fractdqqi@GCC_4.3.0 1:4.3 __fractdqqq2@GCC_4.3.0 1:4.3 __fractdqsa@GCC_4.3.0 1:4.3 __fractdqsf@GCC_4.3.0 1:4.3 __fractdqsi@GCC_4.3.0 1:4.3 __fractdqsq2@GCC_4.3.0 1:4.3 __fractdqta@GCC_4.3.0 1:4.3 __fractdqti@GCC_4.3.0 1:4.3 __fractdqtq2@GCC_4.3.0 1:4.3 __fractdquda@GCC_4.3.0 1:4.3 __fractdqudq@GCC_4.3.0 1:4.3 __fractdquha@GCC_4.3.0 1:4.3 __fractdquhq@GCC_4.3.0 1:4.3 __fractdquqq@GCC_4.3.0 1:4.3 __fractdqusa@GCC_4.3.0 1:4.3 __fractdqusq@GCC_4.3.0 1:4.3 __fractdquta@GCC_4.3.0 1:4.3 __fractdqutq@GCC_4.3.0 1:4.3 __fracthada2@GCC_4.3.0 1:4.3 __fracthadf@GCC_4.3.0 1:4.3 __fracthadi@GCC_4.3.0 1:4.3 __fracthadq@GCC_4.3.0 1:4.3 __fracthahi@GCC_4.3.0 1:4.3 __fracthahq@GCC_4.3.0 1:4.3 __fracthaqi@GCC_4.3.0 1:4.3 __fracthaqq@GCC_4.3.0 1:4.3 __fracthasa2@GCC_4.3.0 1:4.3 __fracthasf@GCC_4.3.0 1:4.3 __fracthasi@GCC_4.3.0 1:4.3 __fracthasq@GCC_4.3.0 1:4.3 __fracthata2@GCC_4.3.0 1:4.3 __fracthati@GCC_4.3.0 1:4.3 __fracthatq@GCC_4.3.0 1:4.3 __fracthauda@GCC_4.3.0 1:4.3 __fracthaudq@GCC_4.3.0 1:4.3 __fracthauha@GCC_4.3.0 1:4.3 __fracthauhq@GCC_4.3.0 1:4.3 __fracthauqq@GCC_4.3.0 1:4.3 __fracthausa@GCC_4.3.0 1:4.3 __fracthausq@GCC_4.3.0 1:4.3 __fracthauta@GCC_4.3.0 1:4.3 __fracthautq@GCC_4.3.0 1:4.3 __fracthida@GCC_4.3.0 1:4.3 __fracthidq@GCC_4.3.0 1:4.3 __fracthiha@GCC_4.3.0 1:4.3 __fracthihq@GCC_4.3.0 1:4.3 __fracthiqq@GCC_4.3.0 1:4.3 __fracthisa@GCC_4.3.0 1:4.3 __fracthisq@GCC_4.3.0 1:4.3 __fracthita@GCC_4.3.0 1:4.3 __fracthitq@GCC_4.3.0 1:4.3 __fracthiuda@GCC_4.3.0 1:4.3 __fracthiudq@GCC_4.3.0 1:4.3 __fracthiuha@GCC_4.3.0 1:4.3 __fracthiuhq@GCC_4.3.0 1:4.3 __fracthiuqq@GCC_4.3.0 1:4.3 __fracthiusa@GCC_4.3.0 1:4.3 __fracthiusq@GCC_4.3.0 1:4.3 __fracthiuta@GCC_4.3.0 1:4.3 __fracthiutq@GCC_4.3.0 1:4.3 __fracthqda@GCC_4.3.0 1:4.3 __fracthqdf@GCC_4.3.0 1:4.3 __fracthqdi@GCC_4.3.0 1:4.3 __fracthqdq2@GCC_4.3.0 1:4.3 __fracthqha@GCC_4.3.0 1:4.3 __fracthqhi@GCC_4.3.0 1:4.3 __fracthqqi@GCC_4.3.0 1:4.3 __fracthqqq2@GCC_4.3.0 1:4.3 __fracthqsa@GCC_4.3.0 1:4.3 __fracthqsf@GCC_4.3.0 1:4.3 __fracthqsi@GCC_4.3.0 1:4.3 __fracthqsq2@GCC_4.3.0 1:4.3 __fracthqta@GCC_4.3.0 1:4.3 __fracthqti@GCC_4.3.0 1:4.3 __fracthqtq2@GCC_4.3.0 1:4.3 __fracthquda@GCC_4.3.0 1:4.3 __fracthqudq@GCC_4.3.0 1:4.3 __fracthquha@GCC_4.3.0 1:4.3 __fracthquhq@GCC_4.3.0 1:4.3 __fracthquqq@GCC_4.3.0 1:4.3 __fracthqusa@GCC_4.3.0 1:4.3 __fracthqusq@GCC_4.3.0 1:4.3 __fracthquta@GCC_4.3.0 1:4.3 __fracthqutq@GCC_4.3.0 1:4.3 __fractqida@GCC_4.3.0 1:4.3 __fractqidq@GCC_4.3.0 1:4.3 __fractqiha@GCC_4.3.0 1:4.3 __fractqihq@GCC_4.3.0 1:4.3 __fractqiqq@GCC_4.3.0 1:4.3 __fractqisa@GCC_4.3.0 1:4.3 __fractqisq@GCC_4.3.0 1:4.3 __fractqita@GCC_4.3.0 1:4.3 __fractqitq@GCC_4.3.0 1:4.3 __fractqiuda@GCC_4.3.0 1:4.3 __fractqiudq@GCC_4.3.0 1:4.3 __fractqiuha@GCC_4.3.0 1:4.3 __fractqiuhq@GCC_4.3.0 1:4.3 __fractqiuqq@GCC_4.3.0 1:4.3 __fractqiusa@GCC_4.3.0 1:4.3 __fractqiusq@GCC_4.3.0 1:4.3 __fractqiuta@GCC_4.3.0 1:4.3 __fractqiutq@GCC_4.3.0 1:4.3 __fractqqda@GCC_4.3.0 1:4.3 __fractqqdf@GCC_4.3.0 1:4.3 __fractqqdi@GCC_4.3.0 1:4.3 __fractqqdq2@GCC_4.3.0 1:4.3 __fractqqha@GCC_4.3.0 1:4.3 __fractqqhi@GCC_4.3.0 1:4.3 __fractqqhq2@GCC_4.3.0 1:4.3 __fractqqqi@GCC_4.3.0 1:4.3 __fractqqsa@GCC_4.3.0 1:4.3 __fractqqsf@GCC_4.3.0 1:4.3 __fractqqsi@GCC_4.3.0 1:4.3 __fractqqsq2@GCC_4.3.0 1:4.3 __fractqqta@GCC_4.3.0 1:4.3 __fractqqti@GCC_4.3.0 1:4.3 __fractqqtq2@GCC_4.3.0 1:4.3 __fractqquda@GCC_4.3.0 1:4.3 __fractqqudq@GCC_4.3.0 1:4.3 __fractqquha@GCC_4.3.0 1:4.3 __fractqquhq@GCC_4.3.0 1:4.3 __fractqquqq@GCC_4.3.0 1:4.3 __fractqqusa@GCC_4.3.0 1:4.3 __fractqqusq@GCC_4.3.0 1:4.3 __fractqquta@GCC_4.3.0 1:4.3 __fractqqutq@GCC_4.3.0 1:4.3 __fractsada2@GCC_4.3.0 1:4.3 __fractsadf@GCC_4.3.0 1:4.3 __fractsadi@GCC_4.3.0 1:4.3 __fractsadq@GCC_4.3.0 1:4.3 __fractsaha2@GCC_4.3.0 1:4.3 __fractsahi@GCC_4.3.0 1:4.3 __fractsahq@GCC_4.3.0 1:4.3 __fractsaqi@GCC_4.3.0 1:4.3 __fractsaqq@GCC_4.3.0 1:4.3 __fractsasf@GCC_4.3.0 1:4.3 __fractsasi@GCC_4.3.0 1:4.3 __fractsasq@GCC_4.3.0 1:4.3 __fractsata2@GCC_4.3.0 1:4.3 __fractsati@GCC_4.3.0 1:4.3 __fractsatq@GCC_4.3.0 1:4.3 __fractsauda@GCC_4.3.0 1:4.3 __fractsaudq@GCC_4.3.0 1:4.3 __fractsauha@GCC_4.3.0 1:4.3 __fractsauhq@GCC_4.3.0 1:4.3 __fractsauqq@GCC_4.3.0 1:4.3 __fractsausa@GCC_4.3.0 1:4.3 __fractsausq@GCC_4.3.0 1:4.3 __fractsauta@GCC_4.3.0 1:4.3 __fractsautq@GCC_4.3.0 1:4.3 __fractsfda@GCC_4.3.0 1:4.3 __fractsfdq@GCC_4.3.0 1:4.3 __fractsfha@GCC_4.3.0 1:4.3 __fractsfhq@GCC_4.3.0 1:4.3 __fractsfqq@GCC_4.3.0 1:4.3 __fractsfsa@GCC_4.3.0 1:4.3 __fractsfsq@GCC_4.3.0 1:4.3 __fractsfta@GCC_4.3.0 1:4.3 __fractsftq@GCC_4.3.0 1:4.3 __fractsfuda@GCC_4.3.0 1:4.3 __fractsfudq@GCC_4.3.0 1:4.3 __fractsfuha@GCC_4.3.0 1:4.3 __fractsfuhq@GCC_4.3.0 1:4.3 __fractsfuqq@GCC_4.3.0 1:4.3 __fractsfusa@GCC_4.3.0 1:4.3 __fractsfusq@GCC_4.3.0 1:4.3 __fractsfuta@GCC_4.3.0 1:4.3 __fractsfutq@GCC_4.3.0 1:4.3 __fractsida@GCC_4.3.0 1:4.3 __fractsidq@GCC_4.3.0 1:4.3 __fractsiha@GCC_4.3.0 1:4.3 __fractsihq@GCC_4.3.0 1:4.3 __fractsiqq@GCC_4.3.0 1:4.3 __fractsisa@GCC_4.3.0 1:4.3 __fractsisq@GCC_4.3.0 1:4.3 __fractsita@GCC_4.3.0 1:4.3 __fractsitq@GCC_4.3.0 1:4.3 __fractsiuda@GCC_4.3.0 1:4.3 __fractsiudq@GCC_4.3.0 1:4.3 __fractsiuha@GCC_4.3.0 1:4.3 __fractsiuhq@GCC_4.3.0 1:4.3 __fractsiuqq@GCC_4.3.0 1:4.3 __fractsiusa@GCC_4.3.0 1:4.3 __fractsiusq@GCC_4.3.0 1:4.3 __fractsiuta@GCC_4.3.0 1:4.3 __fractsiutq@GCC_4.3.0 1:4.3 __fractsqda@GCC_4.3.0 1:4.3 __fractsqdf@GCC_4.3.0 1:4.3 __fractsqdi@GCC_4.3.0 1:4.3 __fractsqdq2@GCC_4.3.0 1:4.3 __fractsqha@GCC_4.3.0 1:4.3 __fractsqhi@GCC_4.3.0 1:4.3 __fractsqhq2@GCC_4.3.0 1:4.3 __fractsqqi@GCC_4.3.0 1:4.3 __fractsqqq2@GCC_4.3.0 1:4.3 __fractsqsa@GCC_4.3.0 1:4.3 __fractsqsf@GCC_4.3.0 1:4.3 __fractsqsi@GCC_4.3.0 1:4.3 __fractsqta@GCC_4.3.0 1:4.3 __fractsqti@GCC_4.3.0 1:4.3 __fractsqtq2@GCC_4.3.0 1:4.3 __fractsquda@GCC_4.3.0 1:4.3 __fractsqudq@GCC_4.3.0 1:4.3 __fractsquha@GCC_4.3.0 1:4.3 __fractsquhq@GCC_4.3.0 1:4.3 __fractsquqq@GCC_4.3.0 1:4.3 __fractsqusa@GCC_4.3.0 1:4.3 __fractsqusq@GCC_4.3.0 1:4.3 __fractsquta@GCC_4.3.0 1:4.3 __fractsqutq@GCC_4.3.0 1:4.3 __fracttada2@GCC_4.3.0 1:4.3 __fracttadf@GCC_4.3.0 1:4.3 __fracttadi@GCC_4.3.0 1:4.3 __fracttadq@GCC_4.3.0 1:4.3 __fracttaha2@GCC_4.3.0 1:4.3 __fracttahi@GCC_4.3.0 1:4.3 __fracttahq@GCC_4.3.0 1:4.3 __fracttaqi@GCC_4.3.0 1:4.3 __fracttaqq@GCC_4.3.0 1:4.3 __fracttasa2@GCC_4.3.0 1:4.3 __fracttasf@GCC_4.3.0 1:4.3 __fracttasi@GCC_4.3.0 1:4.3 __fracttasq@GCC_4.3.0 1:4.3 __fracttati@GCC_4.3.0 1:4.3 __fracttatq@GCC_4.3.0 1:4.3 __fracttauda@GCC_4.3.0 1:4.3 __fracttaudq@GCC_4.3.0 1:4.3 __fracttauha@GCC_4.3.0 1:4.3 __fracttauhq@GCC_4.3.0 1:4.3 __fracttauqq@GCC_4.3.0 1:4.3 __fracttausa@GCC_4.3.0 1:4.3 __fracttausq@GCC_4.3.0 1:4.3 __fracttauta@GCC_4.3.0 1:4.3 __fracttautq@GCC_4.3.0 1:4.3 __fracttida@GCC_4.3.0 1:4.3 __fracttidq@GCC_4.3.0 1:4.3 __fracttiha@GCC_4.3.0 1:4.3 __fracttihq@GCC_4.3.0 1:4.3 __fracttiqq@GCC_4.3.0 1:4.3 __fracttisa@GCC_4.3.0 1:4.3 __fracttisq@GCC_4.3.0 1:4.3 __fracttita@GCC_4.3.0 1:4.3 __fracttitq@GCC_4.3.0 1:4.3 __fracttiuda@GCC_4.3.0 1:4.3 __fracttiudq@GCC_4.3.0 1:4.3 __fracttiuha@GCC_4.3.0 1:4.3 __fracttiuhq@GCC_4.3.0 1:4.3 __fracttiuqq@GCC_4.3.0 1:4.3 __fracttiusa@GCC_4.3.0 1:4.3 __fracttiusq@GCC_4.3.0 1:4.3 __fracttiuta@GCC_4.3.0 1:4.3 __fracttiutq@GCC_4.3.0 1:4.3 __fracttqda@GCC_4.3.0 1:4.3 __fracttqdf@GCC_4.3.0 1:4.3 __fracttqdi@GCC_4.3.0 1:4.3 __fracttqdq2@GCC_4.3.0 1:4.3 __fracttqha@GCC_4.3.0 1:4.3 __fracttqhi@GCC_4.3.0 1:4.3 __fracttqhq2@GCC_4.3.0 1:4.3 __fracttqqi@GCC_4.3.0 1:4.3 __fracttqqq2@GCC_4.3.0 1:4.3 __fracttqsa@GCC_4.3.0 1:4.3 __fracttqsf@GCC_4.3.0 1:4.3 __fracttqsi@GCC_4.3.0 1:4.3 __fracttqsq2@GCC_4.3.0 1:4.3 __fracttqta@GCC_4.3.0 1:4.3 __fracttqti@GCC_4.3.0 1:4.3 __fracttquda@GCC_4.3.0 1:4.3 __fracttqudq@GCC_4.3.0 1:4.3 __fracttquha@GCC_4.3.0 1:4.3 __fracttquhq@GCC_4.3.0 1:4.3 __fracttquqq@GCC_4.3.0 1:4.3 __fracttqusa@GCC_4.3.0 1:4.3 __fracttqusq@GCC_4.3.0 1:4.3 __fracttquta@GCC_4.3.0 1:4.3 __fracttqutq@GCC_4.3.0 1:4.3 __fractudada@GCC_4.3.0 1:4.3 __fractudadf@GCC_4.3.0 1:4.3 __fractudadi@GCC_4.3.0 1:4.3 __fractudadq@GCC_4.3.0 1:4.3 __fractudaha@GCC_4.3.0 1:4.3 __fractudahi@GCC_4.3.0 1:4.3 __fractudahq@GCC_4.3.0 1:4.3 __fractudaqi@GCC_4.3.0 1:4.3 __fractudaqq@GCC_4.3.0 1:4.3 __fractudasa@GCC_4.3.0 1:4.3 __fractudasf@GCC_4.3.0 1:4.3 __fractudasi@GCC_4.3.0 1:4.3 __fractudasq@GCC_4.3.0 1:4.3 __fractudata@GCC_4.3.0 1:4.3 __fractudati@GCC_4.3.0 1:4.3 __fractudatq@GCC_4.3.0 1:4.3 __fractudaudq@GCC_4.3.0 1:4.3 __fractudauha2@GCC_4.3.0 1:4.3 __fractudauhq@GCC_4.3.0 1:4.3 __fractudauqq@GCC_4.3.0 1:4.3 __fractudausa2@GCC_4.3.0 1:4.3 __fractudausq@GCC_4.3.0 1:4.3 __fractudauta2@GCC_4.3.0 1:4.3 __fractudautq@GCC_4.3.0 1:4.3 __fractudqda@GCC_4.3.0 1:4.3 __fractudqdf@GCC_4.3.0 1:4.3 __fractudqdi@GCC_4.3.0 1:4.3 __fractudqdq@GCC_4.3.0 1:4.3 __fractudqha@GCC_4.3.0 1:4.3 __fractudqhi@GCC_4.3.0 1:4.3 __fractudqhq@GCC_4.3.0 1:4.3 __fractudqqi@GCC_4.3.0 1:4.3 __fractudqqq@GCC_4.3.0 1:4.3 __fractudqsa@GCC_4.3.0 1:4.3 __fractudqsf@GCC_4.3.0 1:4.3 __fractudqsi@GCC_4.3.0 1:4.3 __fractudqsq@GCC_4.3.0 1:4.3 __fractudqta@GCC_4.3.0 1:4.3 __fractudqti@GCC_4.3.0 1:4.3 __fractudqtq@GCC_4.3.0 1:4.3 __fractudquda@GCC_4.3.0 1:4.3 __fractudquha@GCC_4.3.0 1:4.3 __fractudquhq2@GCC_4.3.0 1:4.3 __fractudquqq2@GCC_4.3.0 1:4.3 __fractudqusa@GCC_4.3.0 1:4.3 __fractudqusq2@GCC_4.3.0 1:4.3 __fractudquta@GCC_4.3.0 1:4.3 __fractudqutq2@GCC_4.3.0 1:4.3 __fractuhada@GCC_4.3.0 1:4.3 __fractuhadf@GCC_4.3.0 1:4.3 __fractuhadi@GCC_4.3.0 1:4.3 __fractuhadq@GCC_4.3.0 1:4.3 __fractuhaha@GCC_4.3.0 1:4.3 __fractuhahi@GCC_4.3.0 1:4.3 __fractuhahq@GCC_4.3.0 1:4.3 __fractuhaqi@GCC_4.3.0 1:4.3 __fractuhaqq@GCC_4.3.0 1:4.3 __fractuhasa@GCC_4.3.0 1:4.3 __fractuhasf@GCC_4.3.0 1:4.3 __fractuhasi@GCC_4.3.0 1:4.3 __fractuhasq@GCC_4.3.0 1:4.3 __fractuhata@GCC_4.3.0 1:4.3 __fractuhati@GCC_4.3.0 1:4.3 __fractuhatq@GCC_4.3.0 1:4.3 __fractuhauda2@GCC_4.3.0 1:4.3 __fractuhaudq@GCC_4.3.0 1:4.3 __fractuhauhq@GCC_4.3.0 1:4.3 __fractuhauqq@GCC_4.3.0 1:4.3 __fractuhausa2@GCC_4.3.0 1:4.3 __fractuhausq@GCC_4.3.0 1:4.3 __fractuhauta2@GCC_4.3.0 1:4.3 __fractuhautq@GCC_4.3.0 1:4.3 __fractuhqda@GCC_4.3.0 1:4.3 __fractuhqdf@GCC_4.3.0 1:4.3 __fractuhqdi@GCC_4.3.0 1:4.3 __fractuhqdq@GCC_4.3.0 1:4.3 __fractuhqha@GCC_4.3.0 1:4.3 __fractuhqhi@GCC_4.3.0 1:4.3 __fractuhqhq@GCC_4.3.0 1:4.3 __fractuhqqi@GCC_4.3.0 1:4.3 __fractuhqqq@GCC_4.3.0 1:4.3 __fractuhqsa@GCC_4.3.0 1:4.3 __fractuhqsf@GCC_4.3.0 1:4.3 __fractuhqsi@GCC_4.3.0 1:4.3 __fractuhqsq@GCC_4.3.0 1:4.3 __fractuhqta@GCC_4.3.0 1:4.3 __fractuhqti@GCC_4.3.0 1:4.3 __fractuhqtq@GCC_4.3.0 1:4.3 __fractuhquda@GCC_4.3.0 1:4.3 __fractuhqudq2@GCC_4.3.0 1:4.3 __fractuhquha@GCC_4.3.0 1:4.3 __fractuhquqq2@GCC_4.3.0 1:4.3 __fractuhqusa@GCC_4.3.0 1:4.3 __fractuhqusq2@GCC_4.3.0 1:4.3 __fractuhquta@GCC_4.3.0 1:4.3 __fractuhqutq2@GCC_4.3.0 1:4.3 __fractunsdadi@GCC_4.3.0 1:4.3 __fractunsdahi@GCC_4.3.0 1:4.3 __fractunsdaqi@GCC_4.3.0 1:4.3 __fractunsdasi@GCC_4.3.0 1:4.3 __fractunsdati@GCC_4.3.0 1:4.3 __fractunsdida@GCC_4.3.0 1:4.3 __fractunsdidq@GCC_4.3.0 1:4.3 __fractunsdiha@GCC_4.3.0 1:4.3 __fractunsdihq@GCC_4.3.0 1:4.3 __fractunsdiqq@GCC_4.3.0 1:4.3 __fractunsdisa@GCC_4.3.0 1:4.3 __fractunsdisq@GCC_4.3.0 1:4.3 __fractunsdita@GCC_4.3.0 1:4.3 __fractunsditq@GCC_4.3.0 1:4.3 __fractunsdiuda@GCC_4.3.0 1:4.3 __fractunsdiudq@GCC_4.3.0 1:4.3 __fractunsdiuha@GCC_4.3.0 1:4.3 __fractunsdiuhq@GCC_4.3.0 1:4.3 __fractunsdiuqq@GCC_4.3.0 1:4.3 __fractunsdiusa@GCC_4.3.0 1:4.3 __fractunsdiusq@GCC_4.3.0 1:4.3 __fractunsdiuta@GCC_4.3.0 1:4.3 __fractunsdiutq@GCC_4.3.0 1:4.3 __fractunsdqdi@GCC_4.3.0 1:4.3 __fractunsdqhi@GCC_4.3.0 1:4.3 __fractunsdqqi@GCC_4.3.0 1:4.3 __fractunsdqsi@GCC_4.3.0 1:4.3 __fractunsdqti@GCC_4.3.0 1:4.3 __fractunshadi@GCC_4.3.0 1:4.3 __fractunshahi@GCC_4.3.0 1:4.3 __fractunshaqi@GCC_4.3.0 1:4.3 __fractunshasi@GCC_4.3.0 1:4.3 __fractunshati@GCC_4.3.0 1:4.3 __fractunshida@GCC_4.3.0 1:4.3 __fractunshidq@GCC_4.3.0 1:4.3 __fractunshiha@GCC_4.3.0 1:4.3 __fractunshihq@GCC_4.3.0 1:4.3 __fractunshiqq@GCC_4.3.0 1:4.3 __fractunshisa@GCC_4.3.0 1:4.3 __fractunshisq@GCC_4.3.0 1:4.3 __fractunshita@GCC_4.3.0 1:4.3 __fractunshitq@GCC_4.3.0 1:4.3 __fractunshiuda@GCC_4.3.0 1:4.3 __fractunshiudq@GCC_4.3.0 1:4.3 __fractunshiuha@GCC_4.3.0 1:4.3 __fractunshiuhq@GCC_4.3.0 1:4.3 __fractunshiuqq@GCC_4.3.0 1:4.3 __fractunshiusa@GCC_4.3.0 1:4.3 __fractunshiusq@GCC_4.3.0 1:4.3 __fractunshiuta@GCC_4.3.0 1:4.3 __fractunshiutq@GCC_4.3.0 1:4.3 __fractunshqdi@GCC_4.3.0 1:4.3 __fractunshqhi@GCC_4.3.0 1:4.3 __fractunshqqi@GCC_4.3.0 1:4.3 __fractunshqsi@GCC_4.3.0 1:4.3 __fractunshqti@GCC_4.3.0 1:4.3 __fractunsqida@GCC_4.3.0 1:4.3 __fractunsqidq@GCC_4.3.0 1:4.3 __fractunsqiha@GCC_4.3.0 1:4.3 __fractunsqihq@GCC_4.3.0 1:4.3 __fractunsqiqq@GCC_4.3.0 1:4.3 __fractunsqisa@GCC_4.3.0 1:4.3 __fractunsqisq@GCC_4.3.0 1:4.3 __fractunsqita@GCC_4.3.0 1:4.3 __fractunsqitq@GCC_4.3.0 1:4.3 __fractunsqiuda@GCC_4.3.0 1:4.3 __fractunsqiudq@GCC_4.3.0 1:4.3 __fractunsqiuha@GCC_4.3.0 1:4.3 __fractunsqiuhq@GCC_4.3.0 1:4.3 __fractunsqiuqq@GCC_4.3.0 1:4.3 __fractunsqiusa@GCC_4.3.0 1:4.3 __fractunsqiusq@GCC_4.3.0 1:4.3 __fractunsqiuta@GCC_4.3.0 1:4.3 __fractunsqiutq@GCC_4.3.0 1:4.3 __fractunsqqdi@GCC_4.3.0 1:4.3 __fractunsqqhi@GCC_4.3.0 1:4.3 __fractunsqqqi@GCC_4.3.0 1:4.3 __fractunsqqsi@GCC_4.3.0 1:4.3 __fractunsqqti@GCC_4.3.0 1:4.3 __fractunssadi@GCC_4.3.0 1:4.3 __fractunssahi@GCC_4.3.0 1:4.3 __fractunssaqi@GCC_4.3.0 1:4.3 __fractunssasi@GCC_4.3.0 1:4.3 __fractunssati@GCC_4.3.0 1:4.3 __fractunssida@GCC_4.3.0 1:4.3 __fractunssidq@GCC_4.3.0 1:4.3 __fractunssiha@GCC_4.3.0 1:4.3 __fractunssihq@GCC_4.3.0 1:4.3 __fractunssiqq@GCC_4.3.0 1:4.3 __fractunssisa@GCC_4.3.0 1:4.3 __fractunssisq@GCC_4.3.0 1:4.3 __fractunssita@GCC_4.3.0 1:4.3 __fractunssitq@GCC_4.3.0 1:4.3 __fractunssiuda@GCC_4.3.0 1:4.3 __fractunssiudq@GCC_4.3.0 1:4.3 __fractunssiuha@GCC_4.3.0 1:4.3 __fractunssiuhq@GCC_4.3.0 1:4.3 __fractunssiuqq@GCC_4.3.0 1:4.3 __fractunssiusa@GCC_4.3.0 1:4.3 __fractunssiusq@GCC_4.3.0 1:4.3 __fractunssiuta@GCC_4.3.0 1:4.3 __fractunssiutq@GCC_4.3.0 1:4.3 __fractunssqdi@GCC_4.3.0 1:4.3 __fractunssqhi@GCC_4.3.0 1:4.3 __fractunssqqi@GCC_4.3.0 1:4.3 __fractunssqsi@GCC_4.3.0 1:4.3 __fractunssqti@GCC_4.3.0 1:4.3 __fractunstadi@GCC_4.3.0 1:4.3 __fractunstahi@GCC_4.3.0 1:4.3 __fractunstaqi@GCC_4.3.0 1:4.3 __fractunstasi@GCC_4.3.0 1:4.3 __fractunstati@GCC_4.3.0 1:4.3 __fractunstida@GCC_4.3.0 1:4.3 __fractunstidq@GCC_4.3.0 1:4.3 __fractunstiha@GCC_4.3.0 1:4.3 __fractunstihq@GCC_4.3.0 1:4.3 __fractunstiqq@GCC_4.3.0 1:4.3 __fractunstisa@GCC_4.3.0 1:4.3 __fractunstisq@GCC_4.3.0 1:4.3 __fractunstita@GCC_4.3.0 1:4.3 __fractunstitq@GCC_4.3.0 1:4.3 __fractunstiuda@GCC_4.3.0 1:4.3 __fractunstiudq@GCC_4.3.0 1:4.3 __fractunstiuha@GCC_4.3.0 1:4.3 __fractunstiuhq@GCC_4.3.0 1:4.3 __fractunstiuqq@GCC_4.3.0 1:4.3 __fractunstiusa@GCC_4.3.0 1:4.3 __fractunstiusq@GCC_4.3.0 1:4.3 __fractunstiuta@GCC_4.3.0 1:4.3 __fractunstiutq@GCC_4.3.0 1:4.3 __fractunstqdi@GCC_4.3.0 1:4.3 __fractunstqhi@GCC_4.3.0 1:4.3 __fractunstqqi@GCC_4.3.0 1:4.3 __fractunstqsi@GCC_4.3.0 1:4.3 __fractunstqti@GCC_4.3.0 1:4.3 __fractunsudadi@GCC_4.3.0 1:4.3 __fractunsudahi@GCC_4.3.0 1:4.3 __fractunsudaqi@GCC_4.3.0 1:4.3 __fractunsudasi@GCC_4.3.0 1:4.3 __fractunsudati@GCC_4.3.0 1:4.3 __fractunsudqdi@GCC_4.3.0 1:4.3 __fractunsudqhi@GCC_4.3.0 1:4.3 __fractunsudqqi@GCC_4.3.0 1:4.3 __fractunsudqsi@GCC_4.3.0 1:4.3 __fractunsudqti@GCC_4.3.0 1:4.3 __fractunsuhadi@GCC_4.3.0 1:4.3 __fractunsuhahi@GCC_4.3.0 1:4.3 __fractunsuhaqi@GCC_4.3.0 1:4.3 __fractunsuhasi@GCC_4.3.0 1:4.3 __fractunsuhati@GCC_4.3.0 1:4.3 __fractunsuhqdi@GCC_4.3.0 1:4.3 __fractunsuhqhi@GCC_4.3.0 1:4.3 __fractunsuhqqi@GCC_4.3.0 1:4.3 __fractunsuhqsi@GCC_4.3.0 1:4.3 __fractunsuhqti@GCC_4.3.0 1:4.3 __fractunsuqqdi@GCC_4.3.0 1:4.3 __fractunsuqqhi@GCC_4.3.0 1:4.3 __fractunsuqqqi@GCC_4.3.0 1:4.3 __fractunsuqqsi@GCC_4.3.0 1:4.3 __fractunsuqqti@GCC_4.3.0 1:4.3 __fractunsusadi@GCC_4.3.0 1:4.3 __fractunsusahi@GCC_4.3.0 1:4.3 __fractunsusaqi@GCC_4.3.0 1:4.3 __fractunsusasi@GCC_4.3.0 1:4.3 __fractunsusati@GCC_4.3.0 1:4.3 __fractunsusqdi@GCC_4.3.0 1:4.3 __fractunsusqhi@GCC_4.3.0 1:4.3 __fractunsusqqi@GCC_4.3.0 1:4.3 __fractunsusqsi@GCC_4.3.0 1:4.3 __fractunsusqti@GCC_4.3.0 1:4.3 __fractunsutadi@GCC_4.3.0 1:4.3 __fractunsutahi@GCC_4.3.0 1:4.3 __fractunsutaqi@GCC_4.3.0 1:4.3 __fractunsutasi@GCC_4.3.0 1:4.3 __fractunsutati@GCC_4.3.0 1:4.3 __fractunsutqdi@GCC_4.3.0 1:4.3 __fractunsutqhi@GCC_4.3.0 1:4.3 __fractunsutqqi@GCC_4.3.0 1:4.3 __fractunsutqsi@GCC_4.3.0 1:4.3 __fractunsutqti@GCC_4.3.0 1:4.3 __fractuqqda@GCC_4.3.0 1:4.3 __fractuqqdf@GCC_4.3.0 1:4.3 __fractuqqdi@GCC_4.3.0 1:4.3 __fractuqqdq@GCC_4.3.0 1:4.3 __fractuqqha@GCC_4.3.0 1:4.3 __fractuqqhi@GCC_4.3.0 1:4.3 __fractuqqhq@GCC_4.3.0 1:4.3 __fractuqqqi@GCC_4.3.0 1:4.3 __fractuqqqq@GCC_4.3.0 1:4.3 __fractuqqsa@GCC_4.3.0 1:4.3 __fractuqqsf@GCC_4.3.0 1:4.3 __fractuqqsi@GCC_4.3.0 1:4.3 __fractuqqsq@GCC_4.3.0 1:4.3 __fractuqqta@GCC_4.3.0 1:4.3 __fractuqqti@GCC_4.3.0 1:4.3 __fractuqqtq@GCC_4.3.0 1:4.3 __fractuqquda@GCC_4.3.0 1:4.3 __fractuqqudq2@GCC_4.3.0 1:4.3 __fractuqquha@GCC_4.3.0 1:4.3 __fractuqquhq2@GCC_4.3.0 1:4.3 __fractuqqusa@GCC_4.3.0 1:4.3 __fractuqqusq2@GCC_4.3.0 1:4.3 __fractuqquta@GCC_4.3.0 1:4.3 __fractuqqutq2@GCC_4.3.0 1:4.3 __fractusada@GCC_4.3.0 1:4.3 __fractusadf@GCC_4.3.0 1:4.3 __fractusadi@GCC_4.3.0 1:4.3 __fractusadq@GCC_4.3.0 1:4.3 __fractusaha@GCC_4.3.0 1:4.3 __fractusahi@GCC_4.3.0 1:4.3 __fractusahq@GCC_4.3.0 1:4.3 __fractusaqi@GCC_4.3.0 1:4.3 __fractusaqq@GCC_4.3.0 1:4.3 __fractusasa@GCC_4.3.0 1:4.3 __fractusasf@GCC_4.3.0 1:4.3 __fractusasi@GCC_4.3.0 1:4.3 __fractusasq@GCC_4.3.0 1:4.3 __fractusata@GCC_4.3.0 1:4.3 __fractusati@GCC_4.3.0 1:4.3 __fractusatq@GCC_4.3.0 1:4.3 __fractusauda2@GCC_4.3.0 1:4.3 __fractusaudq@GCC_4.3.0 1:4.3 __fractusauha2@GCC_4.3.0 1:4.3 __fractusauhq@GCC_4.3.0 1:4.3 __fractusauqq@GCC_4.3.0 1:4.3 __fractusausq@GCC_4.3.0 1:4.3 __fractusauta2@GCC_4.3.0 1:4.3 __fractusautq@GCC_4.3.0 1:4.3 __fractusqda@GCC_4.3.0 1:4.3 __fractusqdf@GCC_4.3.0 1:4.3 __fractusqdi@GCC_4.3.0 1:4.3 __fractusqdq@GCC_4.3.0 1:4.3 __fractusqha@GCC_4.3.0 1:4.3 __fractusqhi@GCC_4.3.0 1:4.3 __fractusqhq@GCC_4.3.0 1:4.3 __fractusqqi@GCC_4.3.0 1:4.3 __fractusqqq@GCC_4.3.0 1:4.3 __fractusqsa@GCC_4.3.0 1:4.3 __fractusqsf@GCC_4.3.0 1:4.3 __fractusqsi@GCC_4.3.0 1:4.3 __fractusqsq@GCC_4.3.0 1:4.3 __fractusqta@GCC_4.3.0 1:4.3 __fractusqti@GCC_4.3.0 1:4.3 __fractusqtq@GCC_4.3.0 1:4.3 __fractusquda@GCC_4.3.0 1:4.3 __fractusqudq2@GCC_4.3.0 1:4.3 __fractusquha@GCC_4.3.0 1:4.3 __fractusquhq2@GCC_4.3.0 1:4.3 __fractusquqq2@GCC_4.3.0 1:4.3 __fractusqusa@GCC_4.3.0 1:4.3 __fractusquta@GCC_4.3.0 1:4.3 __fractusqutq2@GCC_4.3.0 1:4.3 __fractutada@GCC_4.3.0 1:4.3 __fractutadf@GCC_4.3.0 1:4.3 __fractutadi@GCC_4.3.0 1:4.3 __fractutadq@GCC_4.3.0 1:4.3 __fractutaha@GCC_4.3.0 1:4.3 __fractutahi@GCC_4.3.0 1:4.3 __fractutahq@GCC_4.3.0 1:4.3 __fractutaqi@GCC_4.3.0 1:4.3 __fractutaqq@GCC_4.3.0 1:4.3 __fractutasa@GCC_4.3.0 1:4.3 __fractutasf@GCC_4.3.0 1:4.3 __fractutasi@GCC_4.3.0 1:4.3 __fractutasq@GCC_4.3.0 1:4.3 __fractutata@GCC_4.3.0 1:4.3 __fractutati@GCC_4.3.0 1:4.3 __fractutatq@GCC_4.3.0 1:4.3 __fractutauda2@GCC_4.3.0 1:4.3 __fractutaudq@GCC_4.3.0 1:4.3 __fractutauha2@GCC_4.3.0 1:4.3 __fractutauhq@GCC_4.3.0 1:4.3 __fractutauqq@GCC_4.3.0 1:4.3 __fractutausa2@GCC_4.3.0 1:4.3 __fractutausq@GCC_4.3.0 1:4.3 __fractutautq@GCC_4.3.0 1:4.3 __fractutqda@GCC_4.3.0 1:4.3 __fractutqdf@GCC_4.3.0 1:4.3 __fractutqdi@GCC_4.3.0 1:4.3 __fractutqdq@GCC_4.3.0 1:4.3 __fractutqha@GCC_4.3.0 1:4.3 __fractutqhi@GCC_4.3.0 1:4.3 __fractutqhq@GCC_4.3.0 1:4.3 __fractutqqi@GCC_4.3.0 1:4.3 __fractutqqq@GCC_4.3.0 1:4.3 __fractutqsa@GCC_4.3.0 1:4.3 __fractutqsf@GCC_4.3.0 1:4.3 __fractutqsi@GCC_4.3.0 1:4.3 __fractutqsq@GCC_4.3.0 1:4.3 __fractutqta@GCC_4.3.0 1:4.3 __fractutqti@GCC_4.3.0 1:4.3 __fractutqtq@GCC_4.3.0 1:4.3 __fractutquda@GCC_4.3.0 1:4.3 __fractutqudq2@GCC_4.3.0 1:4.3 __fractutquha@GCC_4.3.0 1:4.3 __fractutquhq2@GCC_4.3.0 1:4.3 __fractutquqq2@GCC_4.3.0 1:4.3 __fractutqusa@GCC_4.3.0 1:4.3 __fractutqusq2@GCC_4.3.0 1:4.3 __fractutquta@GCC_4.3.0 1:4.3 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __gedf2@GCC_3.0 1:4.1.1 __gesf2@GCC_3.0 1:4.1.1 __getf2@GCC_3.0 1:4.1.1 __gtdf2@GCC_3.0 1:4.1.1 __gtsf2@GCC_3.0 1:4.1.1 __gttf2@GCC_3.0 1:4.1.1 __ledf2@GCC_3.0 1:4.1.1 __lesf2@GCC_3.0 1:4.1.1 __letf2@GCC_3.0 1:4.1.1 __lshrti3@GCC_3.0 1:4.1.1 __lshruda3@GCC_4.3.0 1:4.3 __lshrudq3@GCC_4.3.0 1:4.3 __lshruha3@GCC_4.3.0 1:4.3 __lshruhq3@GCC_4.3.0 1:4.3 __lshruqq3@GCC_4.3.0 1:4.3 __lshrusa3@GCC_4.3.0 1:4.3 __lshrusq3@GCC_4.3.0 1:4.3 __lshruta3@GCC_4.3.0 1:4.3 __lshrutq3@GCC_4.3.0 1:4.3 __ltdf2@GCC_3.0 1:4.1.1 __ltsf2@GCC_3.0 1:4.1.1 __lttf2@GCC_3.0 1:4.1.1 __modti3@GCC_3.0 1:4.1.1 __mulda3@GCC_4.3.0 1:4.3 __muldc3@GCC_4.0.0 1:4.1.1 __muldf3@GCC_3.0 1:4.1.1 __muldq3@GCC_4.3.0 1:4.3 __mulha3@GCC_4.3.0 1:4.3 __mulhq3@GCC_4.3.0 1:4.3 __mulqq3@GCC_4.3.0 1:4.3 __mulsa3@GCC_4.3.0 1:4.3 __mulsc3@GCC_4.0.0 1:4.1.1 __mulsf3@GCC_3.0 1:4.1.1 __mulsq3@GCC_4.3.0 1:4.3 __multa3@GCC_4.3.0 1:4.3 __multc3@GCC_4.0.0 1:4.1.1 __multf3@GCC_3.0 1:4.1.1 __multi3@GCC_3.0 1:4.1.1 __multq3@GCC_4.3.0 1:4.3 __muluda3@GCC_4.3.0 1:4.3 __muludq3@GCC_4.3.0 1:4.3 __muluha3@GCC_4.3.0 1:4.3 __muluhq3@GCC_4.3.0 1:4.3 __muluqq3@GCC_4.3.0 1:4.3 __mulusa3@GCC_4.3.0 1:4.3 __mulusq3@GCC_4.3.0 1:4.3 __muluta3@GCC_4.3.0 1:4.3 __mulutq3@GCC_4.3.0 1:4.3 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulvti3@GCC_3.4.4 1:4.1.1 __nedf2@GCC_3.0 1:4.1.1 __negda2@GCC_4.3.0 1:4.3 __negdf2@GCC_3.0 1:4.1.1 __negdq2@GCC_4.3.0 1:4.3 __negha2@GCC_4.3.0 1:4.3 __neghq2@GCC_4.3.0 1:4.3 __negqq2@GCC_4.3.0 1:4.3 __negsa2@GCC_4.3.0 1:4.3 __negsf2@GCC_3.0 1:4.1.1 __negsq2@GCC_4.3.0 1:4.3 __negta2@GCC_4.3.0 1:4.3 __negtf2@GCC_3.0 1:4.1.1 __negti2@GCC_3.0 1:4.1.1 __negtq2@GCC_4.3.0 1:4.3 __neguda2@GCC_4.3.0 1:4.3 __negudq2@GCC_4.3.0 1:4.3 __neguha2@GCC_4.3.0 1:4.3 __neguhq2@GCC_4.3.0 1:4.3 __neguqq2@GCC_4.3.0 1:4.3 __negusa2@GCC_4.3.0 1:4.3 __negusq2@GCC_4.3.0 1:4.3 __neguta2@GCC_4.3.0 1:4.3 __negutq2@GCC_4.3.0 1:4.3 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __negvti2@GCC_3.4.4 1:4.1.1 __nesf2@GCC_3.0 1:4.1.1 __netf2@GCC_3.0 1:4.1.1 __paritydi2@GCC_3.4 1:4.1.1 __parityti2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountti2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.0.0 1:4.1.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __satfractdadq@GCC_4.3.0 1:4.3 __satfractdaha2@GCC_4.3.0 1:4.3 __satfractdahq@GCC_4.3.0 1:4.3 __satfractdaqq@GCC_4.3.0 1:4.3 __satfractdasa2@GCC_4.3.0 1:4.3 __satfractdasq@GCC_4.3.0 1:4.3 __satfractdata2@GCC_4.3.0 1:4.3 __satfractdatq@GCC_4.3.0 1:4.3 __satfractdauda@GCC_4.3.0 1:4.3 __satfractdaudq@GCC_4.3.0 1:4.3 __satfractdauha@GCC_4.3.0 1:4.3 __satfractdauhq@GCC_4.3.0 1:4.3 __satfractdauqq@GCC_4.3.0 1:4.3 __satfractdausa@GCC_4.3.0 1:4.3 __satfractdausq@GCC_4.3.0 1:4.3 __satfractdauta@GCC_4.3.0 1:4.3 __satfractdautq@GCC_4.3.0 1:4.3 __satfractdfda@GCC_4.3.0 1:4.3 __satfractdfdq@GCC_4.3.0 1:4.3 __satfractdfha@GCC_4.3.0 1:4.3 __satfractdfhq@GCC_4.3.0 1:4.3 __satfractdfqq@GCC_4.3.0 1:4.3 __satfractdfsa@GCC_4.3.0 1:4.3 __satfractdfsq@GCC_4.3.0 1:4.3 __satfractdfta@GCC_4.3.0 1:4.3 __satfractdftq@GCC_4.3.0 1:4.3 __satfractdfuda@GCC_4.3.0 1:4.3 __satfractdfudq@GCC_4.3.0 1:4.3 __satfractdfuha@GCC_4.3.0 1:4.3 __satfractdfuhq@GCC_4.3.0 1:4.3 __satfractdfuqq@GCC_4.3.0 1:4.3 __satfractdfusa@GCC_4.3.0 1:4.3 __satfractdfusq@GCC_4.3.0 1:4.3 __satfractdfuta@GCC_4.3.0 1:4.3 __satfractdfutq@GCC_4.3.0 1:4.3 __satfractdida@GCC_4.3.0 1:4.3 __satfractdidq@GCC_4.3.0 1:4.3 __satfractdiha@GCC_4.3.0 1:4.3 __satfractdihq@GCC_4.3.0 1:4.3 __satfractdiqq@GCC_4.3.0 1:4.3 __satfractdisa@GCC_4.3.0 1:4.3 __satfractdisq@GCC_4.3.0 1:4.3 __satfractdita@GCC_4.3.0 1:4.3 __satfractditq@GCC_4.3.0 1:4.3 __satfractdiuda@GCC_4.3.0 1:4.3 __satfractdiudq@GCC_4.3.0 1:4.3 __satfractdiuha@GCC_4.3.0 1:4.3 __satfractdiuhq@GCC_4.3.0 1:4.3 __satfractdiuqq@GCC_4.3.0 1:4.3 __satfractdiusa@GCC_4.3.0 1:4.3 __satfractdiusq@GCC_4.3.0 1:4.3 __satfractdiuta@GCC_4.3.0 1:4.3 __satfractdiutq@GCC_4.3.0 1:4.3 __satfractdqda@GCC_4.3.0 1:4.3 __satfractdqha@GCC_4.3.0 1:4.3 __satfractdqhq2@GCC_4.3.0 1:4.3 __satfractdqqq2@GCC_4.3.0 1:4.3 __satfractdqsa@GCC_4.3.0 1:4.3 __satfractdqsq2@GCC_4.3.0 1:4.3 __satfractdqta@GCC_4.3.0 1:4.3 __satfractdqtq2@GCC_4.3.0 1:4.3 __satfractdquda@GCC_4.3.0 1:4.3 __satfractdqudq@GCC_4.3.0 1:4.3 __satfractdquha@GCC_4.3.0 1:4.3 __satfractdquhq@GCC_4.3.0 1:4.3 __satfractdquqq@GCC_4.3.0 1:4.3 __satfractdqusa@GCC_4.3.0 1:4.3 __satfractdqusq@GCC_4.3.0 1:4.3 __satfractdquta@GCC_4.3.0 1:4.3 __satfractdqutq@GCC_4.3.0 1:4.3 __satfracthada2@GCC_4.3.0 1:4.3 __satfracthadq@GCC_4.3.0 1:4.3 __satfracthahq@GCC_4.3.0 1:4.3 __satfracthaqq@GCC_4.3.0 1:4.3 __satfracthasa2@GCC_4.3.0 1:4.3 __satfracthasq@GCC_4.3.0 1:4.3 __satfracthata2@GCC_4.3.0 1:4.3 __satfracthatq@GCC_4.3.0 1:4.3 __satfracthauda@GCC_4.3.0 1:4.3 __satfracthaudq@GCC_4.3.0 1:4.3 __satfracthauha@GCC_4.3.0 1:4.3 __satfracthauhq@GCC_4.3.0 1:4.3 __satfracthauqq@GCC_4.3.0 1:4.3 __satfracthausa@GCC_4.3.0 1:4.3 __satfracthausq@GCC_4.3.0 1:4.3 __satfracthauta@GCC_4.3.0 1:4.3 __satfracthautq@GCC_4.3.0 1:4.3 __satfracthida@GCC_4.3.0 1:4.3 __satfracthidq@GCC_4.3.0 1:4.3 __satfracthiha@GCC_4.3.0 1:4.3 __satfracthihq@GCC_4.3.0 1:4.3 __satfracthiqq@GCC_4.3.0 1:4.3 __satfracthisa@GCC_4.3.0 1:4.3 __satfracthisq@GCC_4.3.0 1:4.3 __satfracthita@GCC_4.3.0 1:4.3 __satfracthitq@GCC_4.3.0 1:4.3 __satfracthiuda@GCC_4.3.0 1:4.3 __satfracthiudq@GCC_4.3.0 1:4.3 __satfracthiuha@GCC_4.3.0 1:4.3 __satfracthiuhq@GCC_4.3.0 1:4.3 __satfracthiuqq@GCC_4.3.0 1:4.3 __satfracthiusa@GCC_4.3.0 1:4.3 __satfracthiusq@GCC_4.3.0 1:4.3 __satfracthiuta@GCC_4.3.0 1:4.3 __satfracthiutq@GCC_4.3.0 1:4.3 __satfracthqda@GCC_4.3.0 1:4.3 __satfracthqdq2@GCC_4.3.0 1:4.3 __satfracthqha@GCC_4.3.0 1:4.3 __satfracthqqq2@GCC_4.3.0 1:4.3 __satfracthqsa@GCC_4.3.0 1:4.3 __satfracthqsq2@GCC_4.3.0 1:4.3 __satfracthqta@GCC_4.3.0 1:4.3 __satfracthqtq2@GCC_4.3.0 1:4.3 __satfracthquda@GCC_4.3.0 1:4.3 __satfracthqudq@GCC_4.3.0 1:4.3 __satfracthquha@GCC_4.3.0 1:4.3 __satfracthquhq@GCC_4.3.0 1:4.3 __satfracthquqq@GCC_4.3.0 1:4.3 __satfracthqusa@GCC_4.3.0 1:4.3 __satfracthqusq@GCC_4.3.0 1:4.3 __satfracthquta@GCC_4.3.0 1:4.3 __satfracthqutq@GCC_4.3.0 1:4.3 __satfractqida@GCC_4.3.0 1:4.3 __satfractqidq@GCC_4.3.0 1:4.3 __satfractqiha@GCC_4.3.0 1:4.3 __satfractqihq@GCC_4.3.0 1:4.3 __satfractqiqq@GCC_4.3.0 1:4.3 __satfractqisa@GCC_4.3.0 1:4.3 __satfractqisq@GCC_4.3.0 1:4.3 __satfractqita@GCC_4.3.0 1:4.3 __satfractqitq@GCC_4.3.0 1:4.3 __satfractqiuda@GCC_4.3.0 1:4.3 __satfractqiudq@GCC_4.3.0 1:4.3 __satfractqiuha@GCC_4.3.0 1:4.3 __satfractqiuhq@GCC_4.3.0 1:4.3 __satfractqiuqq@GCC_4.3.0 1:4.3 __satfractqiusa@GCC_4.3.0 1:4.3 __satfractqiusq@GCC_4.3.0 1:4.3 __satfractqiuta@GCC_4.3.0 1:4.3 __satfractqiutq@GCC_4.3.0 1:4.3 __satfractqqda@GCC_4.3.0 1:4.3 __satfractqqdq2@GCC_4.3.0 1:4.3 __satfractqqha@GCC_4.3.0 1:4.3 __satfractqqhq2@GCC_4.3.0 1:4.3 __satfractqqsa@GCC_4.3.0 1:4.3 __satfractqqsq2@GCC_4.3.0 1:4.3 __satfractqqta@GCC_4.3.0 1:4.3 __satfractqqtq2@GCC_4.3.0 1:4.3 __satfractqquda@GCC_4.3.0 1:4.3 __satfractqqudq@GCC_4.3.0 1:4.3 __satfractqquha@GCC_4.3.0 1:4.3 __satfractqquhq@GCC_4.3.0 1:4.3 __satfractqquqq@GCC_4.3.0 1:4.3 __satfractqqusa@GCC_4.3.0 1:4.3 __satfractqqusq@GCC_4.3.0 1:4.3 __satfractqquta@GCC_4.3.0 1:4.3 __satfractqqutq@GCC_4.3.0 1:4.3 __satfractsada2@GCC_4.3.0 1:4.3 __satfractsadq@GCC_4.3.0 1:4.3 __satfractsaha2@GCC_4.3.0 1:4.3 __satfractsahq@GCC_4.3.0 1:4.3 __satfractsaqq@GCC_4.3.0 1:4.3 __satfractsasq@GCC_4.3.0 1:4.3 __satfractsata2@GCC_4.3.0 1:4.3 __satfractsatq@GCC_4.3.0 1:4.3 __satfractsauda@GCC_4.3.0 1:4.3 __satfractsaudq@GCC_4.3.0 1:4.3 __satfractsauha@GCC_4.3.0 1:4.3 __satfractsauhq@GCC_4.3.0 1:4.3 __satfractsauqq@GCC_4.3.0 1:4.3 __satfractsausa@GCC_4.3.0 1:4.3 __satfractsausq@GCC_4.3.0 1:4.3 __satfractsauta@GCC_4.3.0 1:4.3 __satfractsautq@GCC_4.3.0 1:4.3 __satfractsfda@GCC_4.3.0 1:4.3 __satfractsfdq@GCC_4.3.0 1:4.3 __satfractsfha@GCC_4.3.0 1:4.3 __satfractsfhq@GCC_4.3.0 1:4.3 __satfractsfqq@GCC_4.3.0 1:4.3 __satfractsfsa@GCC_4.3.0 1:4.3 __satfractsfsq@GCC_4.3.0 1:4.3 __satfractsfta@GCC_4.3.0 1:4.3 __satfractsftq@GCC_4.3.0 1:4.3 __satfractsfuda@GCC_4.3.0 1:4.3 __satfractsfudq@GCC_4.3.0 1:4.3 __satfractsfuha@GCC_4.3.0 1:4.3 __satfractsfuhq@GCC_4.3.0 1:4.3 __satfractsfuqq@GCC_4.3.0 1:4.3 __satfractsfusa@GCC_4.3.0 1:4.3 __satfractsfusq@GCC_4.3.0 1:4.3 __satfractsfuta@GCC_4.3.0 1:4.3 __satfractsfutq@GCC_4.3.0 1:4.3 __satfractsida@GCC_4.3.0 1:4.3 __satfractsidq@GCC_4.3.0 1:4.3 __satfractsiha@GCC_4.3.0 1:4.3 __satfractsihq@GCC_4.3.0 1:4.3 __satfractsiqq@GCC_4.3.0 1:4.3 __satfractsisa@GCC_4.3.0 1:4.3 __satfractsisq@GCC_4.3.0 1:4.3 __satfractsita@GCC_4.3.0 1:4.3 __satfractsitq@GCC_4.3.0 1:4.3 __satfractsiuda@GCC_4.3.0 1:4.3 __satfractsiudq@GCC_4.3.0 1:4.3 __satfractsiuha@GCC_4.3.0 1:4.3 __satfractsiuhq@GCC_4.3.0 1:4.3 __satfractsiuqq@GCC_4.3.0 1:4.3 __satfractsiusa@GCC_4.3.0 1:4.3 __satfractsiusq@GCC_4.3.0 1:4.3 __satfractsiuta@GCC_4.3.0 1:4.3 __satfractsiutq@GCC_4.3.0 1:4.3 __satfractsqda@GCC_4.3.0 1:4.3 __satfractsqdq2@GCC_4.3.0 1:4.3 __satfractsqha@GCC_4.3.0 1:4.3 __satfractsqhq2@GCC_4.3.0 1:4.3 __satfractsqqq2@GCC_4.3.0 1:4.3 __satfractsqsa@GCC_4.3.0 1:4.3 __satfractsqta@GCC_4.3.0 1:4.3 __satfractsqtq2@GCC_4.3.0 1:4.3 __satfractsquda@GCC_4.3.0 1:4.3 __satfractsqudq@GCC_4.3.0 1:4.3 __satfractsquha@GCC_4.3.0 1:4.3 __satfractsquhq@GCC_4.3.0 1:4.3 __satfractsquqq@GCC_4.3.0 1:4.3 __satfractsqusa@GCC_4.3.0 1:4.3 __satfractsqusq@GCC_4.3.0 1:4.3 __satfractsquta@GCC_4.3.0 1:4.3 __satfractsqutq@GCC_4.3.0 1:4.3 __satfracttada2@GCC_4.3.0 1:4.3 __satfracttadq@GCC_4.3.0 1:4.3 __satfracttaha2@GCC_4.3.0 1:4.3 __satfracttahq@GCC_4.3.0 1:4.3 __satfracttaqq@GCC_4.3.0 1:4.3 __satfracttasa2@GCC_4.3.0 1:4.3 __satfracttasq@GCC_4.3.0 1:4.3 __satfracttatq@GCC_4.3.0 1:4.3 __satfracttauda@GCC_4.3.0 1:4.3 __satfracttaudq@GCC_4.3.0 1:4.3 __satfracttauha@GCC_4.3.0 1:4.3 __satfracttauhq@GCC_4.3.0 1:4.3 __satfracttauqq@GCC_4.3.0 1:4.3 __satfracttausa@GCC_4.3.0 1:4.3 __satfracttausq@GCC_4.3.0 1:4.3 __satfracttauta@GCC_4.3.0 1:4.3 __satfracttautq@GCC_4.3.0 1:4.3 __satfracttida@GCC_4.3.0 1:4.3 __satfracttidq@GCC_4.3.0 1:4.3 __satfracttiha@GCC_4.3.0 1:4.3 __satfracttihq@GCC_4.3.0 1:4.3 __satfracttiqq@GCC_4.3.0 1:4.3 __satfracttisa@GCC_4.3.0 1:4.3 __satfracttisq@GCC_4.3.0 1:4.3 __satfracttita@GCC_4.3.0 1:4.3 __satfracttitq@GCC_4.3.0 1:4.3 __satfracttiuda@GCC_4.3.0 1:4.3 __satfracttiudq@GCC_4.3.0 1:4.3 __satfracttiuha@GCC_4.3.0 1:4.3 __satfracttiuhq@GCC_4.3.0 1:4.3 __satfracttiuqq@GCC_4.3.0 1:4.3 __satfracttiusa@GCC_4.3.0 1:4.3 __satfracttiusq@GCC_4.3.0 1:4.3 __satfracttiuta@GCC_4.3.0 1:4.3 __satfracttiutq@GCC_4.3.0 1:4.3 __satfracttqda@GCC_4.3.0 1:4.3 __satfracttqdq2@GCC_4.3.0 1:4.3 __satfracttqha@GCC_4.3.0 1:4.3 __satfracttqhq2@GCC_4.3.0 1:4.3 __satfracttqqq2@GCC_4.3.0 1:4.3 __satfracttqsa@GCC_4.3.0 1:4.3 __satfracttqsq2@GCC_4.3.0 1:4.3 __satfracttqta@GCC_4.3.0 1:4.3 __satfracttquda@GCC_4.3.0 1:4.3 __satfracttqudq@GCC_4.3.0 1:4.3 __satfracttquha@GCC_4.3.0 1:4.3 __satfracttquhq@GCC_4.3.0 1:4.3 __satfracttquqq@GCC_4.3.0 1:4.3 __satfracttqusa@GCC_4.3.0 1:4.3 __satfracttqusq@GCC_4.3.0 1:4.3 __satfracttquta@GCC_4.3.0 1:4.3 __satfracttqutq@GCC_4.3.0 1:4.3 __satfractudada@GCC_4.3.0 1:4.3 __satfractudadq@GCC_4.3.0 1:4.3 __satfractudaha@GCC_4.3.0 1:4.3 __satfractudahq@GCC_4.3.0 1:4.3 __satfractudaqq@GCC_4.3.0 1:4.3 __satfractudasa@GCC_4.3.0 1:4.3 __satfractudasq@GCC_4.3.0 1:4.3 __satfractudata@GCC_4.3.0 1:4.3 __satfractudatq@GCC_4.3.0 1:4.3 __satfractudaudq@GCC_4.3.0 1:4.3 __satfractudauha2@GCC_4.3.0 1:4.3 __satfractudauhq@GCC_4.3.0 1:4.3 __satfractudauqq@GCC_4.3.0 1:4.3 __satfractudausa2@GCC_4.3.0 1:4.3 __satfractudausq@GCC_4.3.0 1:4.3 __satfractudauta2@GCC_4.3.0 1:4.3 __satfractudautq@GCC_4.3.0 1:4.3 __satfractudqda@GCC_4.3.0 1:4.3 __satfractudqdq@GCC_4.3.0 1:4.3 __satfractudqha@GCC_4.3.0 1:4.3 __satfractudqhq@GCC_4.3.0 1:4.3 __satfractudqqq@GCC_4.3.0 1:4.3 __satfractudqsa@GCC_4.3.0 1:4.3 __satfractudqsq@GCC_4.3.0 1:4.3 __satfractudqta@GCC_4.3.0 1:4.3 __satfractudqtq@GCC_4.3.0 1:4.3 __satfractudquda@GCC_4.3.0 1:4.3 __satfractudquha@GCC_4.3.0 1:4.3 __satfractudquhq2@GCC_4.3.0 1:4.3 __satfractudquqq2@GCC_4.3.0 1:4.3 __satfractudqusa@GCC_4.3.0 1:4.3 __satfractudqusq2@GCC_4.3.0 1:4.3 __satfractudquta@GCC_4.3.0 1:4.3 __satfractudqutq2@GCC_4.3.0 1:4.3 __satfractuhada@GCC_4.3.0 1:4.3 __satfractuhadq@GCC_4.3.0 1:4.3 __satfractuhaha@GCC_4.3.0 1:4.3 __satfractuhahq@GCC_4.3.0 1:4.3 __satfractuhaqq@GCC_4.3.0 1:4.3 __satfractuhasa@GCC_4.3.0 1:4.3 __satfractuhasq@GCC_4.3.0 1:4.3 __satfractuhata@GCC_4.3.0 1:4.3 __satfractuhatq@GCC_4.3.0 1:4.3 __satfractuhauda2@GCC_4.3.0 1:4.3 __satfractuhaudq@GCC_4.3.0 1:4.3 __satfractuhauhq@GCC_4.3.0 1:4.3 __satfractuhauqq@GCC_4.3.0 1:4.3 __satfractuhausa2@GCC_4.3.0 1:4.3 __satfractuhausq@GCC_4.3.0 1:4.3 __satfractuhauta2@GCC_4.3.0 1:4.3 __satfractuhautq@GCC_4.3.0 1:4.3 __satfractuhqda@GCC_4.3.0 1:4.3 __satfractuhqdq@GCC_4.3.0 1:4.3 __satfractuhqha@GCC_4.3.0 1:4.3 __satfractuhqhq@GCC_4.3.0 1:4.3 __satfractuhqqq@GCC_4.3.0 1:4.3 __satfractuhqsa@GCC_4.3.0 1:4.3 __satfractuhqsq@GCC_4.3.0 1:4.3 __satfractuhqta@GCC_4.3.0 1:4.3 __satfractuhqtq@GCC_4.3.0 1:4.3 __satfractuhquda@GCC_4.3.0 1:4.3 __satfractuhqudq2@GCC_4.3.0 1:4.3 __satfractuhquha@GCC_4.3.0 1:4.3 __satfractuhquqq2@GCC_4.3.0 1:4.3 __satfractuhqusa@GCC_4.3.0 1:4.3 __satfractuhqusq2@GCC_4.3.0 1:4.3 __satfractuhquta@GCC_4.3.0 1:4.3 __satfractuhqutq2@GCC_4.3.0 1:4.3 __satfractunsdida@GCC_4.3.0 1:4.3 __satfractunsdidq@GCC_4.3.0 1:4.3 __satfractunsdiha@GCC_4.3.0 1:4.3 __satfractunsdihq@GCC_4.3.0 1:4.3 __satfractunsdiqq@GCC_4.3.0 1:4.3 __satfractunsdisa@GCC_4.3.0 1:4.3 __satfractunsdisq@GCC_4.3.0 1:4.3 __satfractunsdita@GCC_4.3.0 1:4.3 __satfractunsditq@GCC_4.3.0 1:4.3 __satfractunsdiuda@GCC_4.3.0 1:4.3 __satfractunsdiudq@GCC_4.3.0 1:4.3 __satfractunsdiuha@GCC_4.3.0 1:4.3 __satfractunsdiuhq@GCC_4.3.0 1:4.3 __satfractunsdiuqq@GCC_4.3.0 1:4.3 __satfractunsdiusa@GCC_4.3.0 1:4.3 __satfractunsdiusq@GCC_4.3.0 1:4.3 __satfractunsdiuta@GCC_4.3.0 1:4.3 __satfractunsdiutq@GCC_4.3.0 1:4.3 __satfractunshida@GCC_4.3.0 1:4.3 __satfractunshidq@GCC_4.3.0 1:4.3 __satfractunshiha@GCC_4.3.0 1:4.3 __satfractunshihq@GCC_4.3.0 1:4.3 __satfractunshiqq@GCC_4.3.0 1:4.3 __satfractunshisa@GCC_4.3.0 1:4.3 __satfractunshisq@GCC_4.3.0 1:4.3 __satfractunshita@GCC_4.3.0 1:4.3 __satfractunshitq@GCC_4.3.0 1:4.3 __satfractunshiuda@GCC_4.3.0 1:4.3 __satfractunshiudq@GCC_4.3.0 1:4.3 __satfractunshiuha@GCC_4.3.0 1:4.3 __satfractunshiuhq@GCC_4.3.0 1:4.3 __satfractunshiuqq@GCC_4.3.0 1:4.3 __satfractunshiusa@GCC_4.3.0 1:4.3 __satfractunshiusq@GCC_4.3.0 1:4.3 __satfractunshiuta@GCC_4.3.0 1:4.3 __satfractunshiutq@GCC_4.3.0 1:4.3 __satfractunsqida@GCC_4.3.0 1:4.3 __satfractunsqidq@GCC_4.3.0 1:4.3 __satfractunsqiha@GCC_4.3.0 1:4.3 __satfractunsqihq@GCC_4.3.0 1:4.3 __satfractunsqiqq@GCC_4.3.0 1:4.3 __satfractunsqisa@GCC_4.3.0 1:4.3 __satfractunsqisq@GCC_4.3.0 1:4.3 __satfractunsqita@GCC_4.3.0 1:4.3 __satfractunsqitq@GCC_4.3.0 1:4.3 __satfractunsqiuda@GCC_4.3.0 1:4.3 __satfractunsqiudq@GCC_4.3.0 1:4.3 __satfractunsqiuha@GCC_4.3.0 1:4.3 __satfractunsqiuhq@GCC_4.3.0 1:4.3 __satfractunsqiuqq@GCC_4.3.0 1:4.3 __satfractunsqiusa@GCC_4.3.0 1:4.3 __satfractunsqiusq@GCC_4.3.0 1:4.3 __satfractunsqiuta@GCC_4.3.0 1:4.3 __satfractunsqiutq@GCC_4.3.0 1:4.3 __satfractunssida@GCC_4.3.0 1:4.3 __satfractunssidq@GCC_4.3.0 1:4.3 __satfractunssiha@GCC_4.3.0 1:4.3 __satfractunssihq@GCC_4.3.0 1:4.3 __satfractunssiqq@GCC_4.3.0 1:4.3 __satfractunssisa@GCC_4.3.0 1:4.3 __satfractunssisq@GCC_4.3.0 1:4.3 __satfractunssita@GCC_4.3.0 1:4.3 __satfractunssitq@GCC_4.3.0 1:4.3 __satfractunssiuda@GCC_4.3.0 1:4.3 __satfractunssiudq@GCC_4.3.0 1:4.3 __satfractunssiuha@GCC_4.3.0 1:4.3 __satfractunssiuhq@GCC_4.3.0 1:4.3 __satfractunssiuqq@GCC_4.3.0 1:4.3 __satfractunssiusa@GCC_4.3.0 1:4.3 __satfractunssiusq@GCC_4.3.0 1:4.3 __satfractunssiuta@GCC_4.3.0 1:4.3 __satfractunssiutq@GCC_4.3.0 1:4.3 __satfractunstida@GCC_4.3.0 1:4.3 __satfractunstidq@GCC_4.3.0 1:4.3 __satfractunstiha@GCC_4.3.0 1:4.3 __satfractunstihq@GCC_4.3.0 1:4.3 __satfractunstiqq@GCC_4.3.0 1:4.3 __satfractunstisa@GCC_4.3.0 1:4.3 __satfractunstisq@GCC_4.3.0 1:4.3 __satfractunstita@GCC_4.3.0 1:4.3 __satfractunstitq@GCC_4.3.0 1:4.3 __satfractunstiuda@GCC_4.3.0 1:4.3 __satfractunstiudq@GCC_4.3.0 1:4.3 __satfractunstiuha@GCC_4.3.0 1:4.3 __satfractunstiuhq@GCC_4.3.0 1:4.3 __satfractunstiuqq@GCC_4.3.0 1:4.3 __satfractunstiusa@GCC_4.3.0 1:4.3 __satfractunstiusq@GCC_4.3.0 1:4.3 __satfractunstiuta@GCC_4.3.0 1:4.3 __satfractunstiutq@GCC_4.3.0 1:4.3 __satfractuqqda@GCC_4.3.0 1:4.3 __satfractuqqdq@GCC_4.3.0 1:4.3 __satfractuqqha@GCC_4.3.0 1:4.3 __satfractuqqhq@GCC_4.3.0 1:4.3 __satfractuqqqq@GCC_4.3.0 1:4.3 __satfractuqqsa@GCC_4.3.0 1:4.3 __satfractuqqsq@GCC_4.3.0 1:4.3 __satfractuqqta@GCC_4.3.0 1:4.3 __satfractuqqtq@GCC_4.3.0 1:4.3 __satfractuqquda@GCC_4.3.0 1:4.3 __satfractuqqudq2@GCC_4.3.0 1:4.3 __satfractuqquha@GCC_4.3.0 1:4.3 __satfractuqquhq2@GCC_4.3.0 1:4.3 __satfractuqqusa@GCC_4.3.0 1:4.3 __satfractuqqusq2@GCC_4.3.0 1:4.3 __satfractuqquta@GCC_4.3.0 1:4.3 __satfractuqqutq2@GCC_4.3.0 1:4.3 __satfractusada@GCC_4.3.0 1:4.3 __satfractusadq@GCC_4.3.0 1:4.3 __satfractusaha@GCC_4.3.0 1:4.3 __satfractusahq@GCC_4.3.0 1:4.3 __satfractusaqq@GCC_4.3.0 1:4.3 __satfractusasa@GCC_4.3.0 1:4.3 __satfractusasq@GCC_4.3.0 1:4.3 __satfractusata@GCC_4.3.0 1:4.3 __satfractusatq@GCC_4.3.0 1:4.3 __satfractusauda2@GCC_4.3.0 1:4.3 __satfractusaudq@GCC_4.3.0 1:4.3 __satfractusauha2@GCC_4.3.0 1:4.3 __satfractusauhq@GCC_4.3.0 1:4.3 __satfractusauqq@GCC_4.3.0 1:4.3 __satfractusausq@GCC_4.3.0 1:4.3 __satfractusauta2@GCC_4.3.0 1:4.3 __satfractusautq@GCC_4.3.0 1:4.3 __satfractusqda@GCC_4.3.0 1:4.3 __satfractusqdq@GCC_4.3.0 1:4.3 __satfractusqha@GCC_4.3.0 1:4.3 __satfractusqhq@GCC_4.3.0 1:4.3 __satfractusqqq@GCC_4.3.0 1:4.3 __satfractusqsa@GCC_4.3.0 1:4.3 __satfractusqsq@GCC_4.3.0 1:4.3 __satfractusqta@GCC_4.3.0 1:4.3 __satfractusqtq@GCC_4.3.0 1:4.3 __satfractusquda@GCC_4.3.0 1:4.3 __satfractusqudq2@GCC_4.3.0 1:4.3 __satfractusquha@GCC_4.3.0 1:4.3 __satfractusquhq2@GCC_4.3.0 1:4.3 __satfractusquqq2@GCC_4.3.0 1:4.3 __satfractusqusa@GCC_4.3.0 1:4.3 __satfractusquta@GCC_4.3.0 1:4.3 __satfractusqutq2@GCC_4.3.0 1:4.3 __satfractutada@GCC_4.3.0 1:4.3 __satfractutadq@GCC_4.3.0 1:4.3 __satfractutaha@GCC_4.3.0 1:4.3 __satfractutahq@GCC_4.3.0 1:4.3 __satfractutaqq@GCC_4.3.0 1:4.3 __satfractutasa@GCC_4.3.0 1:4.3 __satfractutasq@GCC_4.3.0 1:4.3 __satfractutata@GCC_4.3.0 1:4.3 __satfractutatq@GCC_4.3.0 1:4.3 __satfractutauda2@GCC_4.3.0 1:4.3 __satfractutaudq@GCC_4.3.0 1:4.3 __satfractutauha2@GCC_4.3.0 1:4.3 __satfractutauhq@GCC_4.3.0 1:4.3 __satfractutauqq@GCC_4.3.0 1:4.3 __satfractutausa2@GCC_4.3.0 1:4.3 __satfractutausq@GCC_4.3.0 1:4.3 __satfractutautq@GCC_4.3.0 1:4.3 __satfractutqda@GCC_4.3.0 1:4.3 __satfractutqdq@GCC_4.3.0 1:4.3 __satfractutqha@GCC_4.3.0 1:4.3 __satfractutqhq@GCC_4.3.0 1:4.3 __satfractutqqq@GCC_4.3.0 1:4.3 __satfractutqsa@GCC_4.3.0 1:4.3 __satfractutqsq@GCC_4.3.0 1:4.3 __satfractutqta@GCC_4.3.0 1:4.3 __satfractutqtq@GCC_4.3.0 1:4.3 __satfractutquda@GCC_4.3.0 1:4.3 __satfractutqudq2@GCC_4.3.0 1:4.3 __satfractutquha@GCC_4.3.0 1:4.3 __satfractutquhq2@GCC_4.3.0 1:4.3 __satfractutquqq2@GCC_4.3.0 1:4.3 __satfractutqusa@GCC_4.3.0 1:4.3 __satfractutqusq2@GCC_4.3.0 1:4.3 __satfractutquta@GCC_4.3.0 1:4.3 __ssaddda3@GCC_4.3.0 1:4.3 __ssadddq3@GCC_4.3.0 1:4.3 __ssaddha3@GCC_4.3.0 1:4.3 __ssaddhq3@GCC_4.3.0 1:4.3 __ssaddqq3@GCC_4.3.0 1:4.3 __ssaddsa3@GCC_4.3.0 1:4.3 __ssaddsq3@GCC_4.3.0 1:4.3 __ssaddta3@GCC_4.3.0 1:4.3 __ssaddtq3@GCC_4.3.0 1:4.3 __ssashlda3@GCC_4.3.0 1:4.3 __ssashldq3@GCC_4.3.0 1:4.3 __ssashlha3@GCC_4.3.0 1:4.3 __ssashlhq3@GCC_4.3.0 1:4.3 __ssashlqq3@GCC_4.3.0 1:4.3 __ssashlsa3@GCC_4.3.0 1:4.3 __ssashlsq3@GCC_4.3.0 1:4.3 __ssashlta3@GCC_4.3.0 1:4.3 __ssashltq3@GCC_4.3.0 1:4.3 __ssdivda3@GCC_4.3.0 1:4.3 __ssdivdq3@GCC_4.3.0 1:4.3 __ssdivha3@GCC_4.3.0 1:4.3 __ssdivhq3@GCC_4.3.0 1:4.3 __ssdivqq3@GCC_4.3.0 1:4.3 __ssdivsa3@GCC_4.3.0 1:4.3 __ssdivsq3@GCC_4.3.0 1:4.3 __ssdivta3@GCC_4.3.0 1:4.3 __ssdivtq3@GCC_4.3.0 1:4.3 __ssmulda3@GCC_4.3.0 1:4.3 __ssmuldq3@GCC_4.3.0 1:4.3 __ssmulha3@GCC_4.3.0 1:4.3 __ssmulhq3@GCC_4.3.0 1:4.3 __ssmulqq3@GCC_4.3.0 1:4.3 __ssmulsa3@GCC_4.3.0 1:4.3 __ssmulsq3@GCC_4.3.0 1:4.3 __ssmulta3@GCC_4.3.0 1:4.3 __ssmultq3@GCC_4.3.0 1:4.3 __ssnegda2@GCC_4.3.0 1:4.3 __ssnegdq2@GCC_4.3.0 1:4.3 __ssnegha2@GCC_4.3.0 1:4.3 __ssneghq2@GCC_4.3.0 1:4.3 __ssnegqq2@GCC_4.3.0 1:4.3 __ssnegsa2@GCC_4.3.0 1:4.3 __ssnegsq2@GCC_4.3.0 1:4.3 __ssnegta2@GCC_4.3.0 1:4.3 __ssnegtq2@GCC_4.3.0 1:4.3 __sssubda3@GCC_4.3.0 1:4.3 __sssubdq3@GCC_4.3.0 1:4.3 __sssubha3@GCC_4.3.0 1:4.3 __sssubhq3@GCC_4.3.0 1:4.3 __sssubqq3@GCC_4.3.0 1:4.3 __sssubsa3@GCC_4.3.0 1:4.3 __sssubsq3@GCC_4.3.0 1:4.3 __sssubta3@GCC_4.3.0 1:4.3 __sssubtq3@GCC_4.3.0 1:4.3 __subda3@GCC_4.3.0 1:4.3 __subdf3@GCC_3.0 1:4.1.1 __subdq3@GCC_4.3.0 1:4.3 __subha3@GCC_4.3.0 1:4.3 __subhq3@GCC_4.3.0 1:4.3 __subqq3@GCC_4.3.0 1:4.3 __subsa3@GCC_4.3.0 1:4.3 __subsf3@GCC_3.0 1:4.1.1 __subsq3@GCC_4.3.0 1:4.3 __subta3@GCC_4.3.0 1:4.3 __subtf3@GCC_3.0 1:4.1.1 __subtq3@GCC_4.3.0 1:4.3 __subuda3@GCC_4.3.0 1:4.3 __subudq3@GCC_4.3.0 1:4.3 __subuha3@GCC_4.3.0 1:4.3 __subuhq3@GCC_4.3.0 1:4.3 __subuqq3@GCC_4.3.0 1:4.3 __subusa3@GCC_4.3.0 1:4.3 __subusq3@GCC_4.3.0 1:4.3 __subuta3@GCC_4.3.0 1:4.3 __subutq3@GCC_4.3.0 1:4.3 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __subvti3@GCC_3.4.4 1:4.1.1 __sync_add_and_fetch_1@GCC_4.4.0 1:4.4 __sync_add_and_fetch_2@GCC_4.4.0 1:4.4 __sync_add_and_fetch_4@GCC_4.4.0 1:4.4 __sync_add_and_fetch_8@GCC_4.4.0 1:4.4 __sync_and_and_fetch_1@GCC_4.4.0 1:4.4 __sync_and_and_fetch_2@GCC_4.4.0 1:4.4 __sync_and_and_fetch_4@GCC_4.4.0 1:4.4 __sync_and_and_fetch_8@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_1@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_2@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_4@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_8@GCC_4.4.0 1:4.4 __sync_fetch_and_add_1@GCC_4.4.0 1:4.4 __sync_fetch_and_add_2@GCC_4.4.0 1:4.4 __sync_fetch_and_add_4@GCC_4.4.0 1:4.4 __sync_fetch_and_add_8@GCC_4.4.0 1:4.4 __sync_fetch_and_and_1@GCC_4.4.0 1:4.4 __sync_fetch_and_and_2@GCC_4.4.0 1:4.4 __sync_fetch_and_and_4@GCC_4.4.0 1:4.4 __sync_fetch_and_and_8@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_1@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_2@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_4@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_8@GCC_4.4.0 1:4.4 __sync_fetch_and_or_1@GCC_4.4.0 1:4.4 __sync_fetch_and_or_2@GCC_4.4.0 1:4.4 __sync_fetch_and_or_4@GCC_4.4.0 1:4.4 __sync_fetch_and_or_8@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_1@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_2@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_4@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_8@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_1@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_2@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_4@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_8@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_1@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_2@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_4@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_8@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_1@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_2@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_4@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_8@GCC_4.4.0 1:4.4 __sync_or_and_fetch_1@GCC_4.4.0 1:4.4 __sync_or_and_fetch_2@GCC_4.4.0 1:4.4 __sync_or_and_fetch_4@GCC_4.4.0 1:4.4 __sync_or_and_fetch_8@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_1@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_2@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_4@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_8@GCC_4.4.0 1:4.4 __sync_synchronize@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_1@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_2@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_4@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_8@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_1@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_2@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_4@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_8@GCC_4.4.0 1:4.4 __truncdfsf2@GCC_3.0 1:4.1.1 __trunctfdf2@GCC_3.0 1:4.1.1 __trunctfsf2@GCC_3.0 1:4.1.1 __ucmpti2@GCC_3.0 1:4.1.1 __udivmodti4@GCC_3.0 1:4.1.1 __udivti3@GCC_3.0 1:4.1.1 __udivuda3@GCC_4.3.0 1:4.3 __udivudq3@GCC_4.3.0 1:4.3 __udivuha3@GCC_4.3.0 1:4.3 __udivuhq3@GCC_4.3.0 1:4.3 __udivuqq3@GCC_4.3.0 1:4.3 __udivusa3@GCC_4.3.0 1:4.3 __udivusq3@GCC_4.3.0 1:4.3 __udivuta3@GCC_4.3.0 1:4.3 __udivutq3@GCC_4.3.0 1:4.3 __umodti3@GCC_3.0 1:4.1.1 __unorddf2@GCC_3.3.4 1:4.1.1 __unordsf2@GCC_3.3.4 1:4.1.1 __unordtf2@GCC_4.5.0 1:4.5 __usadduda3@GCC_4.3.0 1:4.3 __usaddudq3@GCC_4.3.0 1:4.3 __usadduha3@GCC_4.3.0 1:4.3 __usadduhq3@GCC_4.3.0 1:4.3 __usadduqq3@GCC_4.3.0 1:4.3 __usaddusa3@GCC_4.3.0 1:4.3 __usaddusq3@GCC_4.3.0 1:4.3 __usadduta3@GCC_4.3.0 1:4.3 __usaddutq3@GCC_4.3.0 1:4.3 __usashluda3@GCC_4.3.0 1:4.3 __usashludq3@GCC_4.3.0 1:4.3 __usashluha3@GCC_4.3.0 1:4.3 __usashluhq3@GCC_4.3.0 1:4.3 __usashluqq3@GCC_4.3.0 1:4.3 __usashlusa3@GCC_4.3.0 1:4.3 __usashlusq3@GCC_4.3.0 1:4.3 __usashluta3@GCC_4.3.0 1:4.3 __usashlutq3@GCC_4.3.0 1:4.3 __usdivuda3@GCC_4.3.0 1:4.3 __usdivudq3@GCC_4.3.0 1:4.3 __usdivuha3@GCC_4.3.0 1:4.3 __usdivuhq3@GCC_4.3.0 1:4.3 __usdivuqq3@GCC_4.3.0 1:4.3 __usdivusa3@GCC_4.3.0 1:4.3 __usdivusq3@GCC_4.3.0 1:4.3 __usdivuta3@GCC_4.3.0 1:4.3 __usdivutq3@GCC_4.3.0 1:4.3 __usmuluda3@GCC_4.3.0 1:4.3 __usmuludq3@GCC_4.3.0 1:4.3 __usmuluha3@GCC_4.3.0 1:4.3 __usmuluhq3@GCC_4.3.0 1:4.3 __usmuluqq3@GCC_4.3.0 1:4.3 __usmulusa3@GCC_4.3.0 1:4.3 __usmulusq3@GCC_4.3.0 1:4.3 __usmuluta3@GCC_4.3.0 1:4.3 __usmulutq3@GCC_4.3.0 1:4.3 __usneguda2@GCC_4.3.0 1:4.3 __usnegudq2@GCC_4.3.0 1:4.3 __usneguha2@GCC_4.3.0 1:4.3 __usneguhq2@GCC_4.3.0 1:4.3 __usneguqq2@GCC_4.3.0 1:4.3 __usnegusa2@GCC_4.3.0 1:4.3 __usnegusq2@GCC_4.3.0 1:4.3 __usneguta2@GCC_4.3.0 1:4.3 __usnegutq2@GCC_4.3.0 1:4.3 __ussubuda3@GCC_4.3.0 1:4.3 __ussubudq3@GCC_4.3.0 1:4.3 __ussubuha3@GCC_4.3.0 1:4.3 __ussubuhq3@GCC_4.3.0 1:4.3 __ussubuqq3@GCC_4.3.0 1:4.3 __ussubusa3@GCC_4.3.0 1:4.3 __ussubusq3@GCC_4.3.0 1:4.3 __ussubuta3@GCC_4.3.0 1:4.3 __ussubutq3@GCC_4.3.0 1:4.3 gnat-4.8-4.8.2/debian/libstdc++6.symbols.sh40000644000000000000000000000042412173542725015054 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.32bit" __gxx_personality_v0@CXXABI_1.3 4.1.1 #include "libstdc++6.symbols.excprop" #include "libstdc++6.symbols.glibcxxmath" _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3.0 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3.0 gnat-4.8-4.8.2/debian/libn32gcc1.symbols.mipsel0000644000000000000000000015270312173542725015646 0ustar libgcc_s.so.1 libn32gcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3.4@GCC_3.3.4 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4.4@GCC_3.4.4 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.2.0 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.4.0@GCC_4.4.0 1:4.4 GCC_4.5.0@GCC_4.5.0 1:4.5 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __absvti2@GCC_3.4.4 1:4.1.1 __addda3@GCC_4.3.0 1:4.3 __adddf3@GCC_3.0 1:4.1.1 __adddq3@GCC_4.3.0 1:4.3 __addha3@GCC_4.3.0 1:4.3 __addhq3@GCC_4.3.0 1:4.3 __addqq3@GCC_4.3.0 1:4.3 __addsa3@GCC_4.3.0 1:4.3 __addsf3@GCC_3.0 1:4.1.1 __addsq3@GCC_4.3.0 1:4.3 __addta3@GCC_4.3.0 1:4.3 __addtf3@GCC_3.0 1:4.1.1 __addtq3@GCC_4.3.0 1:4.3 __adduda3@GCC_4.3.0 1:4.3 __addudq3@GCC_4.3.0 1:4.3 __adduha3@GCC_4.3.0 1:4.3 __adduhq3@GCC_4.3.0 1:4.3 __adduqq3@GCC_4.3.0 1:4.3 __addusa3@GCC_4.3.0 1:4.3 __addusq3@GCC_4.3.0 1:4.3 __adduta3@GCC_4.3.0 1:4.3 __addutq3@GCC_4.3.0 1:4.3 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __addvti3@GCC_3.4.4 1:4.1.1 __ashlda3@GCC_4.3.0 1:4.3 __ashldq3@GCC_4.3.0 1:4.3 __ashlha3@GCC_4.3.0 1:4.3 __ashlhq3@GCC_4.3.0 1:4.3 __ashlqq3@GCC_4.3.0 1:4.3 __ashlsa3@GCC_4.3.0 1:4.3 __ashlsq3@GCC_4.3.0 1:4.3 __ashlta3@GCC_4.3.0 1:4.3 __ashlti3@GCC_3.0 1:4.1.1 __ashltq3@GCC_4.3.0 1:4.3 __ashluda3@GCC_4.3.0 1:4.3 __ashludq3@GCC_4.3.0 1:4.3 __ashluha3@GCC_4.3.0 1:4.3 __ashluhq3@GCC_4.3.0 1:4.3 __ashluqq3@GCC_4.3.0 1:4.3 __ashlusa3@GCC_4.3.0 1:4.3 __ashlusq3@GCC_4.3.0 1:4.3 __ashluta3@GCC_4.3.0 1:4.3 __ashlutq3@GCC_4.3.0 1:4.3 __ashrda3@GCC_4.3.0 1:4.3 __ashrdq3@GCC_4.3.0 1:4.3 __ashrha3@GCC_4.3.0 1:4.3 __ashrhq3@GCC_4.3.0 1:4.3 __ashrqq3@GCC_4.3.0 1:4.3 __ashrsa3@GCC_4.3.0 1:4.3 __ashrsq3@GCC_4.3.0 1:4.3 __ashrta3@GCC_4.3.0 1:4.3 __ashrti3@GCC_3.0 1:4.1.1 __ashrtq3@GCC_4.3.0 1:4.3 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbti2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzti2@GCC_3.4 1:4.1.1 __cmpda2@GCC_4.3.0 1:4.3 __cmpdq2@GCC_4.3.0 1:4.3 __cmpha2@GCC_4.3.0 1:4.3 __cmphq2@GCC_4.3.0 1:4.3 __cmpqq2@GCC_4.3.0 1:4.3 __cmpsa2@GCC_4.3.0 1:4.3 __cmpsq2@GCC_4.3.0 1:4.3 __cmpta2@GCC_4.3.0 1:4.3 __cmpti2@GCC_3.0 1:4.1.1 __cmptq2@GCC_4.3.0 1:4.3 __cmpuda2@GCC_4.3.0 1:4.3 __cmpudq2@GCC_4.3.0 1:4.3 __cmpuha2@GCC_4.3.0 1:4.3 __cmpuhq2@GCC_4.3.0 1:4.3 __cmpuqq2@GCC_4.3.0 1:4.3 __cmpusa2@GCC_4.3.0 1:4.3 __cmpusq2@GCC_4.3.0 1:4.3 __cmputa2@GCC_4.3.0 1:4.3 __cmputq2@GCC_4.3.0 1:4.3 __ctzdi2@GCC_3.4 1:4.1.1 __ctzti2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divda3@GCC_4.3.0 1:4.3 __divdc3@GCC_4.0.0 1:4.1.1 __divdf3@GCC_3.0 1:4.1.1 __divdq3@GCC_4.3.0 1:4.3 __divha3@GCC_4.3.0 1:4.3 __divhq3@GCC_4.3.0 1:4.3 __divqq3@GCC_4.3.0 1:4.3 __divsa3@GCC_4.3.0 1:4.3 __divsc3@GCC_4.0.0 1:4.1.1 __divsf3@GCC_3.0 1:4.1.1 __divsq3@GCC_4.3.0 1:4.3 __divta3@GCC_4.3.0 1:4.3 __divtc3@GCC_4.0.0 1:4.1.1 __divtf3@GCC_3.0 1:4.1.1 __divti3@GCC_3.0 1:4.1.1 __divtq3@GCC_4.3.0 1:4.3 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __eqdf2@GCC_3.0 1:4.1.1 __eqsf2@GCC_3.0 1:4.1.1 __eqtf2@GCC_3.0 1:4.1.1 __extenddftf2@GCC_3.0 1:4.1.1 __extendsfdf2@GCC_3.0 1:4.1.1 __extendsftf2@GCC_3.0 1:4.1.1 __ffsdi2@GCC_3.0 1:4.1.1 __ffsti2@GCC_3.0 1:4.1.1 __fixdfdi@GCC_3.0 1:4.1.1 __fixdfsi@GCC_3.0 1:4.1.1 __fixdfti@GCC_3.0 1:4.1.1 __fixsfdi@GCC_3.0 1:4.1.1 __fixsfsi@GCC_3.0 1:4.1.1 __fixsfti@GCC_3.0 1:4.1.1 __fixtfdi@GCC_3.0 1:4.1.1 __fixtfsi@GCC_3.0 1:4.1.1 __fixtfti@GCC_3.0 1:4.1.1 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfsi@GCC_3.0 1:4.1.1 __fixunsdfti@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfsi@GCC_3.0 1:4.1.1 __fixunssfti@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_3.0 1:4.1.1 __fixunstfsi@GCC_3.0 1:4.1.1 __fixunstfti@GCC_3.0 1:4.1.1 __floatdidf@GCC_3.0 1:4.1.1 __floatdisf@GCC_3.0 1:4.1.1 __floatditf@GCC_3.0 1:4.1.1 __floatsidf@GCC_3.0 1:4.1.1 __floatsisf@GCC_3.0 1:4.1.1 __floatsitf@GCC_3.0 1:4.1.1 __floattidf@GCC_3.0 1:4.1.1 __floattisf@GCC_3.0 1:4.1.1 __floattitf@GCC_3.0 1:4.1.1 __floatundidf@GCC_4.2.0 1:4.2.1 __floatundisf@GCC_4.2.0 1:4.2.1 __floatunditf@GCC_4.2.0 1:4.2.1 __floatunsidf@GCC_4.2.0 1:4.2.1 __floatunsisf@GCC_4.2.0 1:4.2.1 __floatunsitf@GCC_4.2.0 1:4.2.1 __floatuntidf@GCC_4.2.0 1:4.2.1 __floatuntisf@GCC_4.2.0 1:4.2.1 __floatuntitf@GCC_4.2.0 1:4.2.1 __fractdadf@GCC_4.3.0 1:4.3 __fractdadi@GCC_4.3.0 1:4.3 __fractdadq@GCC_4.3.0 1:4.3 __fractdaha2@GCC_4.3.0 1:4.3 __fractdahi@GCC_4.3.0 1:4.3 __fractdahq@GCC_4.3.0 1:4.3 __fractdaqi@GCC_4.3.0 1:4.3 __fractdaqq@GCC_4.3.0 1:4.3 __fractdasa2@GCC_4.3.0 1:4.3 __fractdasf@GCC_4.3.0 1:4.3 __fractdasi@GCC_4.3.0 1:4.3 __fractdasq@GCC_4.3.0 1:4.3 __fractdata2@GCC_4.3.0 1:4.3 __fractdati@GCC_4.3.0 1:4.3 __fractdatq@GCC_4.3.0 1:4.3 __fractdauda@GCC_4.3.0 1:4.3 __fractdaudq@GCC_4.3.0 1:4.3 __fractdauha@GCC_4.3.0 1:4.3 __fractdauhq@GCC_4.3.0 1:4.3 __fractdauqq@GCC_4.3.0 1:4.3 __fractdausa@GCC_4.3.0 1:4.3 __fractdausq@GCC_4.3.0 1:4.3 __fractdauta@GCC_4.3.0 1:4.3 __fractdautq@GCC_4.3.0 1:4.3 __fractdfda@GCC_4.3.0 1:4.3 __fractdfdq@GCC_4.3.0 1:4.3 __fractdfha@GCC_4.3.0 1:4.3 __fractdfhq@GCC_4.3.0 1:4.3 __fractdfqq@GCC_4.3.0 1:4.3 __fractdfsa@GCC_4.3.0 1:4.3 __fractdfsq@GCC_4.3.0 1:4.3 __fractdfta@GCC_4.3.0 1:4.3 __fractdftq@GCC_4.3.0 1:4.3 __fractdfuda@GCC_4.3.0 1:4.3 __fractdfudq@GCC_4.3.0 1:4.3 __fractdfuha@GCC_4.3.0 1:4.3 __fractdfuhq@GCC_4.3.0 1:4.3 __fractdfuqq@GCC_4.3.0 1:4.3 __fractdfusa@GCC_4.3.0 1:4.3 __fractdfusq@GCC_4.3.0 1:4.3 __fractdfuta@GCC_4.3.0 1:4.3 __fractdfutq@GCC_4.3.0 1:4.3 __fractdida@GCC_4.3.0 1:4.3 __fractdidq@GCC_4.3.0 1:4.3 __fractdiha@GCC_4.3.0 1:4.3 __fractdihq@GCC_4.3.0 1:4.3 __fractdiqq@GCC_4.3.0 1:4.3 __fractdisa@GCC_4.3.0 1:4.3 __fractdisq@GCC_4.3.0 1:4.3 __fractdita@GCC_4.3.0 1:4.3 __fractditq@GCC_4.3.0 1:4.3 __fractdiuda@GCC_4.3.0 1:4.3 __fractdiudq@GCC_4.3.0 1:4.3 __fractdiuha@GCC_4.3.0 1:4.3 __fractdiuhq@GCC_4.3.0 1:4.3 __fractdiuqq@GCC_4.3.0 1:4.3 __fractdiusa@GCC_4.3.0 1:4.3 __fractdiusq@GCC_4.3.0 1:4.3 __fractdiuta@GCC_4.3.0 1:4.3 __fractdiutq@GCC_4.3.0 1:4.3 __fractdqda@GCC_4.3.0 1:4.3 __fractdqdf@GCC_4.3.0 1:4.3 __fractdqdi@GCC_4.3.0 1:4.3 __fractdqha@GCC_4.3.0 1:4.3 __fractdqhi@GCC_4.3.0 1:4.3 __fractdqhq2@GCC_4.3.0 1:4.3 __fractdqqi@GCC_4.3.0 1:4.3 __fractdqqq2@GCC_4.3.0 1:4.3 __fractdqsa@GCC_4.3.0 1:4.3 __fractdqsf@GCC_4.3.0 1:4.3 __fractdqsi@GCC_4.3.0 1:4.3 __fractdqsq2@GCC_4.3.0 1:4.3 __fractdqta@GCC_4.3.0 1:4.3 __fractdqti@GCC_4.3.0 1:4.3 __fractdqtq2@GCC_4.3.0 1:4.3 __fractdquda@GCC_4.3.0 1:4.3 __fractdqudq@GCC_4.3.0 1:4.3 __fractdquha@GCC_4.3.0 1:4.3 __fractdquhq@GCC_4.3.0 1:4.3 __fractdquqq@GCC_4.3.0 1:4.3 __fractdqusa@GCC_4.3.0 1:4.3 __fractdqusq@GCC_4.3.0 1:4.3 __fractdquta@GCC_4.3.0 1:4.3 __fractdqutq@GCC_4.3.0 1:4.3 __fracthada2@GCC_4.3.0 1:4.3 __fracthadf@GCC_4.3.0 1:4.3 __fracthadi@GCC_4.3.0 1:4.3 __fracthadq@GCC_4.3.0 1:4.3 __fracthahi@GCC_4.3.0 1:4.3 __fracthahq@GCC_4.3.0 1:4.3 __fracthaqi@GCC_4.3.0 1:4.3 __fracthaqq@GCC_4.3.0 1:4.3 __fracthasa2@GCC_4.3.0 1:4.3 __fracthasf@GCC_4.3.0 1:4.3 __fracthasi@GCC_4.3.0 1:4.3 __fracthasq@GCC_4.3.0 1:4.3 __fracthata2@GCC_4.3.0 1:4.3 __fracthati@GCC_4.3.0 1:4.3 __fracthatq@GCC_4.3.0 1:4.3 __fracthauda@GCC_4.3.0 1:4.3 __fracthaudq@GCC_4.3.0 1:4.3 __fracthauha@GCC_4.3.0 1:4.3 __fracthauhq@GCC_4.3.0 1:4.3 __fracthauqq@GCC_4.3.0 1:4.3 __fracthausa@GCC_4.3.0 1:4.3 __fracthausq@GCC_4.3.0 1:4.3 __fracthauta@GCC_4.3.0 1:4.3 __fracthautq@GCC_4.3.0 1:4.3 __fracthida@GCC_4.3.0 1:4.3 __fracthidq@GCC_4.3.0 1:4.3 __fracthiha@GCC_4.3.0 1:4.3 __fracthihq@GCC_4.3.0 1:4.3 __fracthiqq@GCC_4.3.0 1:4.3 __fracthisa@GCC_4.3.0 1:4.3 __fracthisq@GCC_4.3.0 1:4.3 __fracthita@GCC_4.3.0 1:4.3 __fracthitq@GCC_4.3.0 1:4.3 __fracthiuda@GCC_4.3.0 1:4.3 __fracthiudq@GCC_4.3.0 1:4.3 __fracthiuha@GCC_4.3.0 1:4.3 __fracthiuhq@GCC_4.3.0 1:4.3 __fracthiuqq@GCC_4.3.0 1:4.3 __fracthiusa@GCC_4.3.0 1:4.3 __fracthiusq@GCC_4.3.0 1:4.3 __fracthiuta@GCC_4.3.0 1:4.3 __fracthiutq@GCC_4.3.0 1:4.3 __fracthqda@GCC_4.3.0 1:4.3 __fracthqdf@GCC_4.3.0 1:4.3 __fracthqdi@GCC_4.3.0 1:4.3 __fracthqdq2@GCC_4.3.0 1:4.3 __fracthqha@GCC_4.3.0 1:4.3 __fracthqhi@GCC_4.3.0 1:4.3 __fracthqqi@GCC_4.3.0 1:4.3 __fracthqqq2@GCC_4.3.0 1:4.3 __fracthqsa@GCC_4.3.0 1:4.3 __fracthqsf@GCC_4.3.0 1:4.3 __fracthqsi@GCC_4.3.0 1:4.3 __fracthqsq2@GCC_4.3.0 1:4.3 __fracthqta@GCC_4.3.0 1:4.3 __fracthqti@GCC_4.3.0 1:4.3 __fracthqtq2@GCC_4.3.0 1:4.3 __fracthquda@GCC_4.3.0 1:4.3 __fracthqudq@GCC_4.3.0 1:4.3 __fracthquha@GCC_4.3.0 1:4.3 __fracthquhq@GCC_4.3.0 1:4.3 __fracthquqq@GCC_4.3.0 1:4.3 __fracthqusa@GCC_4.3.0 1:4.3 __fracthqusq@GCC_4.3.0 1:4.3 __fracthquta@GCC_4.3.0 1:4.3 __fracthqutq@GCC_4.3.0 1:4.3 __fractqida@GCC_4.3.0 1:4.3 __fractqidq@GCC_4.3.0 1:4.3 __fractqiha@GCC_4.3.0 1:4.3 __fractqihq@GCC_4.3.0 1:4.3 __fractqiqq@GCC_4.3.0 1:4.3 __fractqisa@GCC_4.3.0 1:4.3 __fractqisq@GCC_4.3.0 1:4.3 __fractqita@GCC_4.3.0 1:4.3 __fractqitq@GCC_4.3.0 1:4.3 __fractqiuda@GCC_4.3.0 1:4.3 __fractqiudq@GCC_4.3.0 1:4.3 __fractqiuha@GCC_4.3.0 1:4.3 __fractqiuhq@GCC_4.3.0 1:4.3 __fractqiuqq@GCC_4.3.0 1:4.3 __fractqiusa@GCC_4.3.0 1:4.3 __fractqiusq@GCC_4.3.0 1:4.3 __fractqiuta@GCC_4.3.0 1:4.3 __fractqiutq@GCC_4.3.0 1:4.3 __fractqqda@GCC_4.3.0 1:4.3 __fractqqdf@GCC_4.3.0 1:4.3 __fractqqdi@GCC_4.3.0 1:4.3 __fractqqdq2@GCC_4.3.0 1:4.3 __fractqqha@GCC_4.3.0 1:4.3 __fractqqhi@GCC_4.3.0 1:4.3 __fractqqhq2@GCC_4.3.0 1:4.3 __fractqqqi@GCC_4.3.0 1:4.3 __fractqqsa@GCC_4.3.0 1:4.3 __fractqqsf@GCC_4.3.0 1:4.3 __fractqqsi@GCC_4.3.0 1:4.3 __fractqqsq2@GCC_4.3.0 1:4.3 __fractqqta@GCC_4.3.0 1:4.3 __fractqqti@GCC_4.3.0 1:4.3 __fractqqtq2@GCC_4.3.0 1:4.3 __fractqquda@GCC_4.3.0 1:4.3 __fractqqudq@GCC_4.3.0 1:4.3 __fractqquha@GCC_4.3.0 1:4.3 __fractqquhq@GCC_4.3.0 1:4.3 __fractqquqq@GCC_4.3.0 1:4.3 __fractqqusa@GCC_4.3.0 1:4.3 __fractqqusq@GCC_4.3.0 1:4.3 __fractqquta@GCC_4.3.0 1:4.3 __fractqqutq@GCC_4.3.0 1:4.3 __fractsada2@GCC_4.3.0 1:4.3 __fractsadf@GCC_4.3.0 1:4.3 __fractsadi@GCC_4.3.0 1:4.3 __fractsadq@GCC_4.3.0 1:4.3 __fractsaha2@GCC_4.3.0 1:4.3 __fractsahi@GCC_4.3.0 1:4.3 __fractsahq@GCC_4.3.0 1:4.3 __fractsaqi@GCC_4.3.0 1:4.3 __fractsaqq@GCC_4.3.0 1:4.3 __fractsasf@GCC_4.3.0 1:4.3 __fractsasi@GCC_4.3.0 1:4.3 __fractsasq@GCC_4.3.0 1:4.3 __fractsata2@GCC_4.3.0 1:4.3 __fractsati@GCC_4.3.0 1:4.3 __fractsatq@GCC_4.3.0 1:4.3 __fractsauda@GCC_4.3.0 1:4.3 __fractsaudq@GCC_4.3.0 1:4.3 __fractsauha@GCC_4.3.0 1:4.3 __fractsauhq@GCC_4.3.0 1:4.3 __fractsauqq@GCC_4.3.0 1:4.3 __fractsausa@GCC_4.3.0 1:4.3 __fractsausq@GCC_4.3.0 1:4.3 __fractsauta@GCC_4.3.0 1:4.3 __fractsautq@GCC_4.3.0 1:4.3 __fractsfda@GCC_4.3.0 1:4.3 __fractsfdq@GCC_4.3.0 1:4.3 __fractsfha@GCC_4.3.0 1:4.3 __fractsfhq@GCC_4.3.0 1:4.3 __fractsfqq@GCC_4.3.0 1:4.3 __fractsfsa@GCC_4.3.0 1:4.3 __fractsfsq@GCC_4.3.0 1:4.3 __fractsfta@GCC_4.3.0 1:4.3 __fractsftq@GCC_4.3.0 1:4.3 __fractsfuda@GCC_4.3.0 1:4.3 __fractsfudq@GCC_4.3.0 1:4.3 __fractsfuha@GCC_4.3.0 1:4.3 __fractsfuhq@GCC_4.3.0 1:4.3 __fractsfuqq@GCC_4.3.0 1:4.3 __fractsfusa@GCC_4.3.0 1:4.3 __fractsfusq@GCC_4.3.0 1:4.3 __fractsfuta@GCC_4.3.0 1:4.3 __fractsfutq@GCC_4.3.0 1:4.3 __fractsida@GCC_4.3.0 1:4.3 __fractsidq@GCC_4.3.0 1:4.3 __fractsiha@GCC_4.3.0 1:4.3 __fractsihq@GCC_4.3.0 1:4.3 __fractsiqq@GCC_4.3.0 1:4.3 __fractsisa@GCC_4.3.0 1:4.3 __fractsisq@GCC_4.3.0 1:4.3 __fractsita@GCC_4.3.0 1:4.3 __fractsitq@GCC_4.3.0 1:4.3 __fractsiuda@GCC_4.3.0 1:4.3 __fractsiudq@GCC_4.3.0 1:4.3 __fractsiuha@GCC_4.3.0 1:4.3 __fractsiuhq@GCC_4.3.0 1:4.3 __fractsiuqq@GCC_4.3.0 1:4.3 __fractsiusa@GCC_4.3.0 1:4.3 __fractsiusq@GCC_4.3.0 1:4.3 __fractsiuta@GCC_4.3.0 1:4.3 __fractsiutq@GCC_4.3.0 1:4.3 __fractsqda@GCC_4.3.0 1:4.3 __fractsqdf@GCC_4.3.0 1:4.3 __fractsqdi@GCC_4.3.0 1:4.3 __fractsqdq2@GCC_4.3.0 1:4.3 __fractsqha@GCC_4.3.0 1:4.3 __fractsqhi@GCC_4.3.0 1:4.3 __fractsqhq2@GCC_4.3.0 1:4.3 __fractsqqi@GCC_4.3.0 1:4.3 __fractsqqq2@GCC_4.3.0 1:4.3 __fractsqsa@GCC_4.3.0 1:4.3 __fractsqsf@GCC_4.3.0 1:4.3 __fractsqsi@GCC_4.3.0 1:4.3 __fractsqta@GCC_4.3.0 1:4.3 __fractsqti@GCC_4.3.0 1:4.3 __fractsqtq2@GCC_4.3.0 1:4.3 __fractsquda@GCC_4.3.0 1:4.3 __fractsqudq@GCC_4.3.0 1:4.3 __fractsquha@GCC_4.3.0 1:4.3 __fractsquhq@GCC_4.3.0 1:4.3 __fractsquqq@GCC_4.3.0 1:4.3 __fractsqusa@GCC_4.3.0 1:4.3 __fractsqusq@GCC_4.3.0 1:4.3 __fractsquta@GCC_4.3.0 1:4.3 __fractsqutq@GCC_4.3.0 1:4.3 __fracttada2@GCC_4.3.0 1:4.3 __fracttadf@GCC_4.3.0 1:4.3 __fracttadi@GCC_4.3.0 1:4.3 __fracttadq@GCC_4.3.0 1:4.3 __fracttaha2@GCC_4.3.0 1:4.3 __fracttahi@GCC_4.3.0 1:4.3 __fracttahq@GCC_4.3.0 1:4.3 __fracttaqi@GCC_4.3.0 1:4.3 __fracttaqq@GCC_4.3.0 1:4.3 __fracttasa2@GCC_4.3.0 1:4.3 __fracttasf@GCC_4.3.0 1:4.3 __fracttasi@GCC_4.3.0 1:4.3 __fracttasq@GCC_4.3.0 1:4.3 __fracttati@GCC_4.3.0 1:4.3 __fracttatq@GCC_4.3.0 1:4.3 __fracttauda@GCC_4.3.0 1:4.3 __fracttaudq@GCC_4.3.0 1:4.3 __fracttauha@GCC_4.3.0 1:4.3 __fracttauhq@GCC_4.3.0 1:4.3 __fracttauqq@GCC_4.3.0 1:4.3 __fracttausa@GCC_4.3.0 1:4.3 __fracttausq@GCC_4.3.0 1:4.3 __fracttauta@GCC_4.3.0 1:4.3 __fracttautq@GCC_4.3.0 1:4.3 __fracttida@GCC_4.3.0 1:4.3 __fracttidq@GCC_4.3.0 1:4.3 __fracttiha@GCC_4.3.0 1:4.3 __fracttihq@GCC_4.3.0 1:4.3 __fracttiqq@GCC_4.3.0 1:4.3 __fracttisa@GCC_4.3.0 1:4.3 __fracttisq@GCC_4.3.0 1:4.3 __fracttita@GCC_4.3.0 1:4.3 __fracttitq@GCC_4.3.0 1:4.3 __fracttiuda@GCC_4.3.0 1:4.3 __fracttiudq@GCC_4.3.0 1:4.3 __fracttiuha@GCC_4.3.0 1:4.3 __fracttiuhq@GCC_4.3.0 1:4.3 __fracttiuqq@GCC_4.3.0 1:4.3 __fracttiusa@GCC_4.3.0 1:4.3 __fracttiusq@GCC_4.3.0 1:4.3 __fracttiuta@GCC_4.3.0 1:4.3 __fracttiutq@GCC_4.3.0 1:4.3 __fracttqda@GCC_4.3.0 1:4.3 __fracttqdf@GCC_4.3.0 1:4.3 __fracttqdi@GCC_4.3.0 1:4.3 __fracttqdq2@GCC_4.3.0 1:4.3 __fracttqha@GCC_4.3.0 1:4.3 __fracttqhi@GCC_4.3.0 1:4.3 __fracttqhq2@GCC_4.3.0 1:4.3 __fracttqqi@GCC_4.3.0 1:4.3 __fracttqqq2@GCC_4.3.0 1:4.3 __fracttqsa@GCC_4.3.0 1:4.3 __fracttqsf@GCC_4.3.0 1:4.3 __fracttqsi@GCC_4.3.0 1:4.3 __fracttqsq2@GCC_4.3.0 1:4.3 __fracttqta@GCC_4.3.0 1:4.3 __fracttqti@GCC_4.3.0 1:4.3 __fracttquda@GCC_4.3.0 1:4.3 __fracttqudq@GCC_4.3.0 1:4.3 __fracttquha@GCC_4.3.0 1:4.3 __fracttquhq@GCC_4.3.0 1:4.3 __fracttquqq@GCC_4.3.0 1:4.3 __fracttqusa@GCC_4.3.0 1:4.3 __fracttqusq@GCC_4.3.0 1:4.3 __fracttquta@GCC_4.3.0 1:4.3 __fracttqutq@GCC_4.3.0 1:4.3 __fractudada@GCC_4.3.0 1:4.3 __fractudadf@GCC_4.3.0 1:4.3 __fractudadi@GCC_4.3.0 1:4.3 __fractudadq@GCC_4.3.0 1:4.3 __fractudaha@GCC_4.3.0 1:4.3 __fractudahi@GCC_4.3.0 1:4.3 __fractudahq@GCC_4.3.0 1:4.3 __fractudaqi@GCC_4.3.0 1:4.3 __fractudaqq@GCC_4.3.0 1:4.3 __fractudasa@GCC_4.3.0 1:4.3 __fractudasf@GCC_4.3.0 1:4.3 __fractudasi@GCC_4.3.0 1:4.3 __fractudasq@GCC_4.3.0 1:4.3 __fractudata@GCC_4.3.0 1:4.3 __fractudati@GCC_4.3.0 1:4.3 __fractudatq@GCC_4.3.0 1:4.3 __fractudaudq@GCC_4.3.0 1:4.3 __fractudauha2@GCC_4.3.0 1:4.3 __fractudauhq@GCC_4.3.0 1:4.3 __fractudauqq@GCC_4.3.0 1:4.3 __fractudausa2@GCC_4.3.0 1:4.3 __fractudausq@GCC_4.3.0 1:4.3 __fractudauta2@GCC_4.3.0 1:4.3 __fractudautq@GCC_4.3.0 1:4.3 __fractudqda@GCC_4.3.0 1:4.3 __fractudqdf@GCC_4.3.0 1:4.3 __fractudqdi@GCC_4.3.0 1:4.3 __fractudqdq@GCC_4.3.0 1:4.3 __fractudqha@GCC_4.3.0 1:4.3 __fractudqhi@GCC_4.3.0 1:4.3 __fractudqhq@GCC_4.3.0 1:4.3 __fractudqqi@GCC_4.3.0 1:4.3 __fractudqqq@GCC_4.3.0 1:4.3 __fractudqsa@GCC_4.3.0 1:4.3 __fractudqsf@GCC_4.3.0 1:4.3 __fractudqsi@GCC_4.3.0 1:4.3 __fractudqsq@GCC_4.3.0 1:4.3 __fractudqta@GCC_4.3.0 1:4.3 __fractudqti@GCC_4.3.0 1:4.3 __fractudqtq@GCC_4.3.0 1:4.3 __fractudquda@GCC_4.3.0 1:4.3 __fractudquha@GCC_4.3.0 1:4.3 __fractudquhq2@GCC_4.3.0 1:4.3 __fractudquqq2@GCC_4.3.0 1:4.3 __fractudqusa@GCC_4.3.0 1:4.3 __fractudqusq2@GCC_4.3.0 1:4.3 __fractudquta@GCC_4.3.0 1:4.3 __fractudqutq2@GCC_4.3.0 1:4.3 __fractuhada@GCC_4.3.0 1:4.3 __fractuhadf@GCC_4.3.0 1:4.3 __fractuhadi@GCC_4.3.0 1:4.3 __fractuhadq@GCC_4.3.0 1:4.3 __fractuhaha@GCC_4.3.0 1:4.3 __fractuhahi@GCC_4.3.0 1:4.3 __fractuhahq@GCC_4.3.0 1:4.3 __fractuhaqi@GCC_4.3.0 1:4.3 __fractuhaqq@GCC_4.3.0 1:4.3 __fractuhasa@GCC_4.3.0 1:4.3 __fractuhasf@GCC_4.3.0 1:4.3 __fractuhasi@GCC_4.3.0 1:4.3 __fractuhasq@GCC_4.3.0 1:4.3 __fractuhata@GCC_4.3.0 1:4.3 __fractuhati@GCC_4.3.0 1:4.3 __fractuhatq@GCC_4.3.0 1:4.3 __fractuhauda2@GCC_4.3.0 1:4.3 __fractuhaudq@GCC_4.3.0 1:4.3 __fractuhauhq@GCC_4.3.0 1:4.3 __fractuhauqq@GCC_4.3.0 1:4.3 __fractuhausa2@GCC_4.3.0 1:4.3 __fractuhausq@GCC_4.3.0 1:4.3 __fractuhauta2@GCC_4.3.0 1:4.3 __fractuhautq@GCC_4.3.0 1:4.3 __fractuhqda@GCC_4.3.0 1:4.3 __fractuhqdf@GCC_4.3.0 1:4.3 __fractuhqdi@GCC_4.3.0 1:4.3 __fractuhqdq@GCC_4.3.0 1:4.3 __fractuhqha@GCC_4.3.0 1:4.3 __fractuhqhi@GCC_4.3.0 1:4.3 __fractuhqhq@GCC_4.3.0 1:4.3 __fractuhqqi@GCC_4.3.0 1:4.3 __fractuhqqq@GCC_4.3.0 1:4.3 __fractuhqsa@GCC_4.3.0 1:4.3 __fractuhqsf@GCC_4.3.0 1:4.3 __fractuhqsi@GCC_4.3.0 1:4.3 __fractuhqsq@GCC_4.3.0 1:4.3 __fractuhqta@GCC_4.3.0 1:4.3 __fractuhqti@GCC_4.3.0 1:4.3 __fractuhqtq@GCC_4.3.0 1:4.3 __fractuhquda@GCC_4.3.0 1:4.3 __fractuhqudq2@GCC_4.3.0 1:4.3 __fractuhquha@GCC_4.3.0 1:4.3 __fractuhquqq2@GCC_4.3.0 1:4.3 __fractuhqusa@GCC_4.3.0 1:4.3 __fractuhqusq2@GCC_4.3.0 1:4.3 __fractuhquta@GCC_4.3.0 1:4.3 __fractuhqutq2@GCC_4.3.0 1:4.3 __fractunsdadi@GCC_4.3.0 1:4.3 __fractunsdahi@GCC_4.3.0 1:4.3 __fractunsdaqi@GCC_4.3.0 1:4.3 __fractunsdasi@GCC_4.3.0 1:4.3 __fractunsdati@GCC_4.3.0 1:4.3 __fractunsdida@GCC_4.3.0 1:4.3 __fractunsdidq@GCC_4.3.0 1:4.3 __fractunsdiha@GCC_4.3.0 1:4.3 __fractunsdihq@GCC_4.3.0 1:4.3 __fractunsdiqq@GCC_4.3.0 1:4.3 __fractunsdisa@GCC_4.3.0 1:4.3 __fractunsdisq@GCC_4.3.0 1:4.3 __fractunsdita@GCC_4.3.0 1:4.3 __fractunsditq@GCC_4.3.0 1:4.3 __fractunsdiuda@GCC_4.3.0 1:4.3 __fractunsdiudq@GCC_4.3.0 1:4.3 __fractunsdiuha@GCC_4.3.0 1:4.3 __fractunsdiuhq@GCC_4.3.0 1:4.3 __fractunsdiuqq@GCC_4.3.0 1:4.3 __fractunsdiusa@GCC_4.3.0 1:4.3 __fractunsdiusq@GCC_4.3.0 1:4.3 __fractunsdiuta@GCC_4.3.0 1:4.3 __fractunsdiutq@GCC_4.3.0 1:4.3 __fractunsdqdi@GCC_4.3.0 1:4.3 __fractunsdqhi@GCC_4.3.0 1:4.3 __fractunsdqqi@GCC_4.3.0 1:4.3 __fractunsdqsi@GCC_4.3.0 1:4.3 __fractunsdqti@GCC_4.3.0 1:4.3 __fractunshadi@GCC_4.3.0 1:4.3 __fractunshahi@GCC_4.3.0 1:4.3 __fractunshaqi@GCC_4.3.0 1:4.3 __fractunshasi@GCC_4.3.0 1:4.3 __fractunshati@GCC_4.3.0 1:4.3 __fractunshida@GCC_4.3.0 1:4.3 __fractunshidq@GCC_4.3.0 1:4.3 __fractunshiha@GCC_4.3.0 1:4.3 __fractunshihq@GCC_4.3.0 1:4.3 __fractunshiqq@GCC_4.3.0 1:4.3 __fractunshisa@GCC_4.3.0 1:4.3 __fractunshisq@GCC_4.3.0 1:4.3 __fractunshita@GCC_4.3.0 1:4.3 __fractunshitq@GCC_4.3.0 1:4.3 __fractunshiuda@GCC_4.3.0 1:4.3 __fractunshiudq@GCC_4.3.0 1:4.3 __fractunshiuha@GCC_4.3.0 1:4.3 __fractunshiuhq@GCC_4.3.0 1:4.3 __fractunshiuqq@GCC_4.3.0 1:4.3 __fractunshiusa@GCC_4.3.0 1:4.3 __fractunshiusq@GCC_4.3.0 1:4.3 __fractunshiuta@GCC_4.3.0 1:4.3 __fractunshiutq@GCC_4.3.0 1:4.3 __fractunshqdi@GCC_4.3.0 1:4.3 __fractunshqhi@GCC_4.3.0 1:4.3 __fractunshqqi@GCC_4.3.0 1:4.3 __fractunshqsi@GCC_4.3.0 1:4.3 __fractunshqti@GCC_4.3.0 1:4.3 __fractunsqida@GCC_4.3.0 1:4.3 __fractunsqidq@GCC_4.3.0 1:4.3 __fractunsqiha@GCC_4.3.0 1:4.3 __fractunsqihq@GCC_4.3.0 1:4.3 __fractunsqiqq@GCC_4.3.0 1:4.3 __fractunsqisa@GCC_4.3.0 1:4.3 __fractunsqisq@GCC_4.3.0 1:4.3 __fractunsqita@GCC_4.3.0 1:4.3 __fractunsqitq@GCC_4.3.0 1:4.3 __fractunsqiuda@GCC_4.3.0 1:4.3 __fractunsqiudq@GCC_4.3.0 1:4.3 __fractunsqiuha@GCC_4.3.0 1:4.3 __fractunsqiuhq@GCC_4.3.0 1:4.3 __fractunsqiuqq@GCC_4.3.0 1:4.3 __fractunsqiusa@GCC_4.3.0 1:4.3 __fractunsqiusq@GCC_4.3.0 1:4.3 __fractunsqiuta@GCC_4.3.0 1:4.3 __fractunsqiutq@GCC_4.3.0 1:4.3 __fractunsqqdi@GCC_4.3.0 1:4.3 __fractunsqqhi@GCC_4.3.0 1:4.3 __fractunsqqqi@GCC_4.3.0 1:4.3 __fractunsqqsi@GCC_4.3.0 1:4.3 __fractunsqqti@GCC_4.3.0 1:4.3 __fractunssadi@GCC_4.3.0 1:4.3 __fractunssahi@GCC_4.3.0 1:4.3 __fractunssaqi@GCC_4.3.0 1:4.3 __fractunssasi@GCC_4.3.0 1:4.3 __fractunssati@GCC_4.3.0 1:4.3 __fractunssida@GCC_4.3.0 1:4.3 __fractunssidq@GCC_4.3.0 1:4.3 __fractunssiha@GCC_4.3.0 1:4.3 __fractunssihq@GCC_4.3.0 1:4.3 __fractunssiqq@GCC_4.3.0 1:4.3 __fractunssisa@GCC_4.3.0 1:4.3 __fractunssisq@GCC_4.3.0 1:4.3 __fractunssita@GCC_4.3.0 1:4.3 __fractunssitq@GCC_4.3.0 1:4.3 __fractunssiuda@GCC_4.3.0 1:4.3 __fractunssiudq@GCC_4.3.0 1:4.3 __fractunssiuha@GCC_4.3.0 1:4.3 __fractunssiuhq@GCC_4.3.0 1:4.3 __fractunssiuqq@GCC_4.3.0 1:4.3 __fractunssiusa@GCC_4.3.0 1:4.3 __fractunssiusq@GCC_4.3.0 1:4.3 __fractunssiuta@GCC_4.3.0 1:4.3 __fractunssiutq@GCC_4.3.0 1:4.3 __fractunssqdi@GCC_4.3.0 1:4.3 __fractunssqhi@GCC_4.3.0 1:4.3 __fractunssqqi@GCC_4.3.0 1:4.3 __fractunssqsi@GCC_4.3.0 1:4.3 __fractunssqti@GCC_4.3.0 1:4.3 __fractunstadi@GCC_4.3.0 1:4.3 __fractunstahi@GCC_4.3.0 1:4.3 __fractunstaqi@GCC_4.3.0 1:4.3 __fractunstasi@GCC_4.3.0 1:4.3 __fractunstati@GCC_4.3.0 1:4.3 __fractunstida@GCC_4.3.0 1:4.3 __fractunstidq@GCC_4.3.0 1:4.3 __fractunstiha@GCC_4.3.0 1:4.3 __fractunstihq@GCC_4.3.0 1:4.3 __fractunstiqq@GCC_4.3.0 1:4.3 __fractunstisa@GCC_4.3.0 1:4.3 __fractunstisq@GCC_4.3.0 1:4.3 __fractunstita@GCC_4.3.0 1:4.3 __fractunstitq@GCC_4.3.0 1:4.3 __fractunstiuda@GCC_4.3.0 1:4.3 __fractunstiudq@GCC_4.3.0 1:4.3 __fractunstiuha@GCC_4.3.0 1:4.3 __fractunstiuhq@GCC_4.3.0 1:4.3 __fractunstiuqq@GCC_4.3.0 1:4.3 __fractunstiusa@GCC_4.3.0 1:4.3 __fractunstiusq@GCC_4.3.0 1:4.3 __fractunstiuta@GCC_4.3.0 1:4.3 __fractunstiutq@GCC_4.3.0 1:4.3 __fractunstqdi@GCC_4.3.0 1:4.3 __fractunstqhi@GCC_4.3.0 1:4.3 __fractunstqqi@GCC_4.3.0 1:4.3 __fractunstqsi@GCC_4.3.0 1:4.3 __fractunstqti@GCC_4.3.0 1:4.3 __fractunsudadi@GCC_4.3.0 1:4.3 __fractunsudahi@GCC_4.3.0 1:4.3 __fractunsudaqi@GCC_4.3.0 1:4.3 __fractunsudasi@GCC_4.3.0 1:4.3 __fractunsudati@GCC_4.3.0 1:4.3 __fractunsudqdi@GCC_4.3.0 1:4.3 __fractunsudqhi@GCC_4.3.0 1:4.3 __fractunsudqqi@GCC_4.3.0 1:4.3 __fractunsudqsi@GCC_4.3.0 1:4.3 __fractunsudqti@GCC_4.3.0 1:4.3 __fractunsuhadi@GCC_4.3.0 1:4.3 __fractunsuhahi@GCC_4.3.0 1:4.3 __fractunsuhaqi@GCC_4.3.0 1:4.3 __fractunsuhasi@GCC_4.3.0 1:4.3 __fractunsuhati@GCC_4.3.0 1:4.3 __fractunsuhqdi@GCC_4.3.0 1:4.3 __fractunsuhqhi@GCC_4.3.0 1:4.3 __fractunsuhqqi@GCC_4.3.0 1:4.3 __fractunsuhqsi@GCC_4.3.0 1:4.3 __fractunsuhqti@GCC_4.3.0 1:4.3 __fractunsuqqdi@GCC_4.3.0 1:4.3 __fractunsuqqhi@GCC_4.3.0 1:4.3 __fractunsuqqqi@GCC_4.3.0 1:4.3 __fractunsuqqsi@GCC_4.3.0 1:4.3 __fractunsuqqti@GCC_4.3.0 1:4.3 __fractunsusadi@GCC_4.3.0 1:4.3 __fractunsusahi@GCC_4.3.0 1:4.3 __fractunsusaqi@GCC_4.3.0 1:4.3 __fractunsusasi@GCC_4.3.0 1:4.3 __fractunsusati@GCC_4.3.0 1:4.3 __fractunsusqdi@GCC_4.3.0 1:4.3 __fractunsusqhi@GCC_4.3.0 1:4.3 __fractunsusqqi@GCC_4.3.0 1:4.3 __fractunsusqsi@GCC_4.3.0 1:4.3 __fractunsusqti@GCC_4.3.0 1:4.3 __fractunsutadi@GCC_4.3.0 1:4.3 __fractunsutahi@GCC_4.3.0 1:4.3 __fractunsutaqi@GCC_4.3.0 1:4.3 __fractunsutasi@GCC_4.3.0 1:4.3 __fractunsutati@GCC_4.3.0 1:4.3 __fractunsutqdi@GCC_4.3.0 1:4.3 __fractunsutqhi@GCC_4.3.0 1:4.3 __fractunsutqqi@GCC_4.3.0 1:4.3 __fractunsutqsi@GCC_4.3.0 1:4.3 __fractunsutqti@GCC_4.3.0 1:4.3 __fractuqqda@GCC_4.3.0 1:4.3 __fractuqqdf@GCC_4.3.0 1:4.3 __fractuqqdi@GCC_4.3.0 1:4.3 __fractuqqdq@GCC_4.3.0 1:4.3 __fractuqqha@GCC_4.3.0 1:4.3 __fractuqqhi@GCC_4.3.0 1:4.3 __fractuqqhq@GCC_4.3.0 1:4.3 __fractuqqqi@GCC_4.3.0 1:4.3 __fractuqqqq@GCC_4.3.0 1:4.3 __fractuqqsa@GCC_4.3.0 1:4.3 __fractuqqsf@GCC_4.3.0 1:4.3 __fractuqqsi@GCC_4.3.0 1:4.3 __fractuqqsq@GCC_4.3.0 1:4.3 __fractuqqta@GCC_4.3.0 1:4.3 __fractuqqti@GCC_4.3.0 1:4.3 __fractuqqtq@GCC_4.3.0 1:4.3 __fractuqquda@GCC_4.3.0 1:4.3 __fractuqqudq2@GCC_4.3.0 1:4.3 __fractuqquha@GCC_4.3.0 1:4.3 __fractuqquhq2@GCC_4.3.0 1:4.3 __fractuqqusa@GCC_4.3.0 1:4.3 __fractuqqusq2@GCC_4.3.0 1:4.3 __fractuqquta@GCC_4.3.0 1:4.3 __fractuqqutq2@GCC_4.3.0 1:4.3 __fractusada@GCC_4.3.0 1:4.3 __fractusadf@GCC_4.3.0 1:4.3 __fractusadi@GCC_4.3.0 1:4.3 __fractusadq@GCC_4.3.0 1:4.3 __fractusaha@GCC_4.3.0 1:4.3 __fractusahi@GCC_4.3.0 1:4.3 __fractusahq@GCC_4.3.0 1:4.3 __fractusaqi@GCC_4.3.0 1:4.3 __fractusaqq@GCC_4.3.0 1:4.3 __fractusasa@GCC_4.3.0 1:4.3 __fractusasf@GCC_4.3.0 1:4.3 __fractusasi@GCC_4.3.0 1:4.3 __fractusasq@GCC_4.3.0 1:4.3 __fractusata@GCC_4.3.0 1:4.3 __fractusati@GCC_4.3.0 1:4.3 __fractusatq@GCC_4.3.0 1:4.3 __fractusauda2@GCC_4.3.0 1:4.3 __fractusaudq@GCC_4.3.0 1:4.3 __fractusauha2@GCC_4.3.0 1:4.3 __fractusauhq@GCC_4.3.0 1:4.3 __fractusauqq@GCC_4.3.0 1:4.3 __fractusausq@GCC_4.3.0 1:4.3 __fractusauta2@GCC_4.3.0 1:4.3 __fractusautq@GCC_4.3.0 1:4.3 __fractusqda@GCC_4.3.0 1:4.3 __fractusqdf@GCC_4.3.0 1:4.3 __fractusqdi@GCC_4.3.0 1:4.3 __fractusqdq@GCC_4.3.0 1:4.3 __fractusqha@GCC_4.3.0 1:4.3 __fractusqhi@GCC_4.3.0 1:4.3 __fractusqhq@GCC_4.3.0 1:4.3 __fractusqqi@GCC_4.3.0 1:4.3 __fractusqqq@GCC_4.3.0 1:4.3 __fractusqsa@GCC_4.3.0 1:4.3 __fractusqsf@GCC_4.3.0 1:4.3 __fractusqsi@GCC_4.3.0 1:4.3 __fractusqsq@GCC_4.3.0 1:4.3 __fractusqta@GCC_4.3.0 1:4.3 __fractusqti@GCC_4.3.0 1:4.3 __fractusqtq@GCC_4.3.0 1:4.3 __fractusquda@GCC_4.3.0 1:4.3 __fractusqudq2@GCC_4.3.0 1:4.3 __fractusquha@GCC_4.3.0 1:4.3 __fractusquhq2@GCC_4.3.0 1:4.3 __fractusquqq2@GCC_4.3.0 1:4.3 __fractusqusa@GCC_4.3.0 1:4.3 __fractusquta@GCC_4.3.0 1:4.3 __fractusqutq2@GCC_4.3.0 1:4.3 __fractutada@GCC_4.3.0 1:4.3 __fractutadf@GCC_4.3.0 1:4.3 __fractutadi@GCC_4.3.0 1:4.3 __fractutadq@GCC_4.3.0 1:4.3 __fractutaha@GCC_4.3.0 1:4.3 __fractutahi@GCC_4.3.0 1:4.3 __fractutahq@GCC_4.3.0 1:4.3 __fractutaqi@GCC_4.3.0 1:4.3 __fractutaqq@GCC_4.3.0 1:4.3 __fractutasa@GCC_4.3.0 1:4.3 __fractutasf@GCC_4.3.0 1:4.3 __fractutasi@GCC_4.3.0 1:4.3 __fractutasq@GCC_4.3.0 1:4.3 __fractutata@GCC_4.3.0 1:4.3 __fractutati@GCC_4.3.0 1:4.3 __fractutatq@GCC_4.3.0 1:4.3 __fractutauda2@GCC_4.3.0 1:4.3 __fractutaudq@GCC_4.3.0 1:4.3 __fractutauha2@GCC_4.3.0 1:4.3 __fractutauhq@GCC_4.3.0 1:4.3 __fractutauqq@GCC_4.3.0 1:4.3 __fractutausa2@GCC_4.3.0 1:4.3 __fractutausq@GCC_4.3.0 1:4.3 __fractutautq@GCC_4.3.0 1:4.3 __fractutqda@GCC_4.3.0 1:4.3 __fractutqdf@GCC_4.3.0 1:4.3 __fractutqdi@GCC_4.3.0 1:4.3 __fractutqdq@GCC_4.3.0 1:4.3 __fractutqha@GCC_4.3.0 1:4.3 __fractutqhi@GCC_4.3.0 1:4.3 __fractutqhq@GCC_4.3.0 1:4.3 __fractutqqi@GCC_4.3.0 1:4.3 __fractutqqq@GCC_4.3.0 1:4.3 __fractutqsa@GCC_4.3.0 1:4.3 __fractutqsf@GCC_4.3.0 1:4.3 __fractutqsi@GCC_4.3.0 1:4.3 __fractutqsq@GCC_4.3.0 1:4.3 __fractutqta@GCC_4.3.0 1:4.3 __fractutqti@GCC_4.3.0 1:4.3 __fractutqtq@GCC_4.3.0 1:4.3 __fractutquda@GCC_4.3.0 1:4.3 __fractutqudq2@GCC_4.3.0 1:4.3 __fractutquha@GCC_4.3.0 1:4.3 __fractutquhq2@GCC_4.3.0 1:4.3 __fractutquqq2@GCC_4.3.0 1:4.3 __fractutqusa@GCC_4.3.0 1:4.3 __fractutqusq2@GCC_4.3.0 1:4.3 __fractutquta@GCC_4.3.0 1:4.3 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __gedf2@GCC_3.0 1:4.1.1 __gesf2@GCC_3.0 1:4.1.1 __getf2@GCC_3.0 1:4.1.1 __gtdf2@GCC_3.0 1:4.1.1 __gtsf2@GCC_3.0 1:4.1.1 __gttf2@GCC_3.0 1:4.1.1 __ledf2@GCC_3.0 1:4.1.1 __lesf2@GCC_3.0 1:4.1.1 __letf2@GCC_3.0 1:4.1.1 __lshrti3@GCC_3.0 1:4.1.1 __lshruda3@GCC_4.3.0 1:4.3 __lshrudq3@GCC_4.3.0 1:4.3 __lshruha3@GCC_4.3.0 1:4.3 __lshruhq3@GCC_4.3.0 1:4.3 __lshruqq3@GCC_4.3.0 1:4.3 __lshrusa3@GCC_4.3.0 1:4.3 __lshrusq3@GCC_4.3.0 1:4.3 __lshruta3@GCC_4.3.0 1:4.3 __lshrutq3@GCC_4.3.0 1:4.3 __ltdf2@GCC_3.0 1:4.1.1 __ltsf2@GCC_3.0 1:4.1.1 __lttf2@GCC_3.0 1:4.1.1 __modti3@GCC_3.0 1:4.1.1 __mulda3@GCC_4.3.0 1:4.3 __muldc3@GCC_4.0.0 1:4.1.1 __muldf3@GCC_3.0 1:4.1.1 __muldq3@GCC_4.3.0 1:4.3 __mulha3@GCC_4.3.0 1:4.3 __mulhq3@GCC_4.3.0 1:4.3 __mulqq3@GCC_4.3.0 1:4.3 __mulsa3@GCC_4.3.0 1:4.3 __mulsc3@GCC_4.0.0 1:4.1.1 __mulsf3@GCC_3.0 1:4.1.1 __mulsq3@GCC_4.3.0 1:4.3 __multa3@GCC_4.3.0 1:4.3 __multc3@GCC_4.0.0 1:4.1.1 __multf3@GCC_3.0 1:4.1.1 __multi3@GCC_3.0 1:4.1.1 __multq3@GCC_4.3.0 1:4.3 __muluda3@GCC_4.3.0 1:4.3 __muludq3@GCC_4.3.0 1:4.3 __muluha3@GCC_4.3.0 1:4.3 __muluhq3@GCC_4.3.0 1:4.3 __muluqq3@GCC_4.3.0 1:4.3 __mulusa3@GCC_4.3.0 1:4.3 __mulusq3@GCC_4.3.0 1:4.3 __muluta3@GCC_4.3.0 1:4.3 __mulutq3@GCC_4.3.0 1:4.3 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulvti3@GCC_3.4.4 1:4.1.1 __nedf2@GCC_3.0 1:4.1.1 __negda2@GCC_4.3.0 1:4.3 __negdf2@GCC_3.0 1:4.1.1 __negdq2@GCC_4.3.0 1:4.3 __negha2@GCC_4.3.0 1:4.3 __neghq2@GCC_4.3.0 1:4.3 __negqq2@GCC_4.3.0 1:4.3 __negsa2@GCC_4.3.0 1:4.3 __negsf2@GCC_3.0 1:4.1.1 __negsq2@GCC_4.3.0 1:4.3 __negta2@GCC_4.3.0 1:4.3 __negtf2@GCC_3.0 1:4.1.1 __negti2@GCC_3.0 1:4.1.1 __negtq2@GCC_4.3.0 1:4.3 __neguda2@GCC_4.3.0 1:4.3 __negudq2@GCC_4.3.0 1:4.3 __neguha2@GCC_4.3.0 1:4.3 __neguhq2@GCC_4.3.0 1:4.3 __neguqq2@GCC_4.3.0 1:4.3 __negusa2@GCC_4.3.0 1:4.3 __negusq2@GCC_4.3.0 1:4.3 __neguta2@GCC_4.3.0 1:4.3 __negutq2@GCC_4.3.0 1:4.3 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __negvti2@GCC_3.4.4 1:4.1.1 __nesf2@GCC_3.0 1:4.1.1 __netf2@GCC_3.0 1:4.1.1 __paritydi2@GCC_3.4 1:4.1.1 __parityti2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountti2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.0.0 1:4.1.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __satfractdadq@GCC_4.3.0 1:4.3 __satfractdaha2@GCC_4.3.0 1:4.3 __satfractdahq@GCC_4.3.0 1:4.3 __satfractdaqq@GCC_4.3.0 1:4.3 __satfractdasa2@GCC_4.3.0 1:4.3 __satfractdasq@GCC_4.3.0 1:4.3 __satfractdata2@GCC_4.3.0 1:4.3 __satfractdatq@GCC_4.3.0 1:4.3 __satfractdauda@GCC_4.3.0 1:4.3 __satfractdaudq@GCC_4.3.0 1:4.3 __satfractdauha@GCC_4.3.0 1:4.3 __satfractdauhq@GCC_4.3.0 1:4.3 __satfractdauqq@GCC_4.3.0 1:4.3 __satfractdausa@GCC_4.3.0 1:4.3 __satfractdausq@GCC_4.3.0 1:4.3 __satfractdauta@GCC_4.3.0 1:4.3 __satfractdautq@GCC_4.3.0 1:4.3 __satfractdfda@GCC_4.3.0 1:4.3 __satfractdfdq@GCC_4.3.0 1:4.3 __satfractdfha@GCC_4.3.0 1:4.3 __satfractdfhq@GCC_4.3.0 1:4.3 __satfractdfqq@GCC_4.3.0 1:4.3 __satfractdfsa@GCC_4.3.0 1:4.3 __satfractdfsq@GCC_4.3.0 1:4.3 __satfractdfta@GCC_4.3.0 1:4.3 __satfractdftq@GCC_4.3.0 1:4.3 __satfractdfuda@GCC_4.3.0 1:4.3 __satfractdfudq@GCC_4.3.0 1:4.3 __satfractdfuha@GCC_4.3.0 1:4.3 __satfractdfuhq@GCC_4.3.0 1:4.3 __satfractdfuqq@GCC_4.3.0 1:4.3 __satfractdfusa@GCC_4.3.0 1:4.3 __satfractdfusq@GCC_4.3.0 1:4.3 __satfractdfuta@GCC_4.3.0 1:4.3 __satfractdfutq@GCC_4.3.0 1:4.3 __satfractdida@GCC_4.3.0 1:4.3 __satfractdidq@GCC_4.3.0 1:4.3 __satfractdiha@GCC_4.3.0 1:4.3 __satfractdihq@GCC_4.3.0 1:4.3 __satfractdiqq@GCC_4.3.0 1:4.3 __satfractdisa@GCC_4.3.0 1:4.3 __satfractdisq@GCC_4.3.0 1:4.3 __satfractdita@GCC_4.3.0 1:4.3 __satfractditq@GCC_4.3.0 1:4.3 __satfractdiuda@GCC_4.3.0 1:4.3 __satfractdiudq@GCC_4.3.0 1:4.3 __satfractdiuha@GCC_4.3.0 1:4.3 __satfractdiuhq@GCC_4.3.0 1:4.3 __satfractdiuqq@GCC_4.3.0 1:4.3 __satfractdiusa@GCC_4.3.0 1:4.3 __satfractdiusq@GCC_4.3.0 1:4.3 __satfractdiuta@GCC_4.3.0 1:4.3 __satfractdiutq@GCC_4.3.0 1:4.3 __satfractdqda@GCC_4.3.0 1:4.3 __satfractdqha@GCC_4.3.0 1:4.3 __satfractdqhq2@GCC_4.3.0 1:4.3 __satfractdqqq2@GCC_4.3.0 1:4.3 __satfractdqsa@GCC_4.3.0 1:4.3 __satfractdqsq2@GCC_4.3.0 1:4.3 __satfractdqta@GCC_4.3.0 1:4.3 __satfractdqtq2@GCC_4.3.0 1:4.3 __satfractdquda@GCC_4.3.0 1:4.3 __satfractdqudq@GCC_4.3.0 1:4.3 __satfractdquha@GCC_4.3.0 1:4.3 __satfractdquhq@GCC_4.3.0 1:4.3 __satfractdquqq@GCC_4.3.0 1:4.3 __satfractdqusa@GCC_4.3.0 1:4.3 __satfractdqusq@GCC_4.3.0 1:4.3 __satfractdquta@GCC_4.3.0 1:4.3 __satfractdqutq@GCC_4.3.0 1:4.3 __satfracthada2@GCC_4.3.0 1:4.3 __satfracthadq@GCC_4.3.0 1:4.3 __satfracthahq@GCC_4.3.0 1:4.3 __satfracthaqq@GCC_4.3.0 1:4.3 __satfracthasa2@GCC_4.3.0 1:4.3 __satfracthasq@GCC_4.3.0 1:4.3 __satfracthata2@GCC_4.3.0 1:4.3 __satfracthatq@GCC_4.3.0 1:4.3 __satfracthauda@GCC_4.3.0 1:4.3 __satfracthaudq@GCC_4.3.0 1:4.3 __satfracthauha@GCC_4.3.0 1:4.3 __satfracthauhq@GCC_4.3.0 1:4.3 __satfracthauqq@GCC_4.3.0 1:4.3 __satfracthausa@GCC_4.3.0 1:4.3 __satfracthausq@GCC_4.3.0 1:4.3 __satfracthauta@GCC_4.3.0 1:4.3 __satfracthautq@GCC_4.3.0 1:4.3 __satfracthida@GCC_4.3.0 1:4.3 __satfracthidq@GCC_4.3.0 1:4.3 __satfracthiha@GCC_4.3.0 1:4.3 __satfracthihq@GCC_4.3.0 1:4.3 __satfracthiqq@GCC_4.3.0 1:4.3 __satfracthisa@GCC_4.3.0 1:4.3 __satfracthisq@GCC_4.3.0 1:4.3 __satfracthita@GCC_4.3.0 1:4.3 __satfracthitq@GCC_4.3.0 1:4.3 __satfracthiuda@GCC_4.3.0 1:4.3 __satfracthiudq@GCC_4.3.0 1:4.3 __satfracthiuha@GCC_4.3.0 1:4.3 __satfracthiuhq@GCC_4.3.0 1:4.3 __satfracthiuqq@GCC_4.3.0 1:4.3 __satfracthiusa@GCC_4.3.0 1:4.3 __satfracthiusq@GCC_4.3.0 1:4.3 __satfracthiuta@GCC_4.3.0 1:4.3 __satfracthiutq@GCC_4.3.0 1:4.3 __satfracthqda@GCC_4.3.0 1:4.3 __satfracthqdq2@GCC_4.3.0 1:4.3 __satfracthqha@GCC_4.3.0 1:4.3 __satfracthqqq2@GCC_4.3.0 1:4.3 __satfracthqsa@GCC_4.3.0 1:4.3 __satfracthqsq2@GCC_4.3.0 1:4.3 __satfracthqta@GCC_4.3.0 1:4.3 __satfracthqtq2@GCC_4.3.0 1:4.3 __satfracthquda@GCC_4.3.0 1:4.3 __satfracthqudq@GCC_4.3.0 1:4.3 __satfracthquha@GCC_4.3.0 1:4.3 __satfracthquhq@GCC_4.3.0 1:4.3 __satfracthquqq@GCC_4.3.0 1:4.3 __satfracthqusa@GCC_4.3.0 1:4.3 __satfracthqusq@GCC_4.3.0 1:4.3 __satfracthquta@GCC_4.3.0 1:4.3 __satfracthqutq@GCC_4.3.0 1:4.3 __satfractqida@GCC_4.3.0 1:4.3 __satfractqidq@GCC_4.3.0 1:4.3 __satfractqiha@GCC_4.3.0 1:4.3 __satfractqihq@GCC_4.3.0 1:4.3 __satfractqiqq@GCC_4.3.0 1:4.3 __satfractqisa@GCC_4.3.0 1:4.3 __satfractqisq@GCC_4.3.0 1:4.3 __satfractqita@GCC_4.3.0 1:4.3 __satfractqitq@GCC_4.3.0 1:4.3 __satfractqiuda@GCC_4.3.0 1:4.3 __satfractqiudq@GCC_4.3.0 1:4.3 __satfractqiuha@GCC_4.3.0 1:4.3 __satfractqiuhq@GCC_4.3.0 1:4.3 __satfractqiuqq@GCC_4.3.0 1:4.3 __satfractqiusa@GCC_4.3.0 1:4.3 __satfractqiusq@GCC_4.3.0 1:4.3 __satfractqiuta@GCC_4.3.0 1:4.3 __satfractqiutq@GCC_4.3.0 1:4.3 __satfractqqda@GCC_4.3.0 1:4.3 __satfractqqdq2@GCC_4.3.0 1:4.3 __satfractqqha@GCC_4.3.0 1:4.3 __satfractqqhq2@GCC_4.3.0 1:4.3 __satfractqqsa@GCC_4.3.0 1:4.3 __satfractqqsq2@GCC_4.3.0 1:4.3 __satfractqqta@GCC_4.3.0 1:4.3 __satfractqqtq2@GCC_4.3.0 1:4.3 __satfractqquda@GCC_4.3.0 1:4.3 __satfractqqudq@GCC_4.3.0 1:4.3 __satfractqquha@GCC_4.3.0 1:4.3 __satfractqquhq@GCC_4.3.0 1:4.3 __satfractqquqq@GCC_4.3.0 1:4.3 __satfractqqusa@GCC_4.3.0 1:4.3 __satfractqqusq@GCC_4.3.0 1:4.3 __satfractqquta@GCC_4.3.0 1:4.3 __satfractqqutq@GCC_4.3.0 1:4.3 __satfractsada2@GCC_4.3.0 1:4.3 __satfractsadq@GCC_4.3.0 1:4.3 __satfractsaha2@GCC_4.3.0 1:4.3 __satfractsahq@GCC_4.3.0 1:4.3 __satfractsaqq@GCC_4.3.0 1:4.3 __satfractsasq@GCC_4.3.0 1:4.3 __satfractsata2@GCC_4.3.0 1:4.3 __satfractsatq@GCC_4.3.0 1:4.3 __satfractsauda@GCC_4.3.0 1:4.3 __satfractsaudq@GCC_4.3.0 1:4.3 __satfractsauha@GCC_4.3.0 1:4.3 __satfractsauhq@GCC_4.3.0 1:4.3 __satfractsauqq@GCC_4.3.0 1:4.3 __satfractsausa@GCC_4.3.0 1:4.3 __satfractsausq@GCC_4.3.0 1:4.3 __satfractsauta@GCC_4.3.0 1:4.3 __satfractsautq@GCC_4.3.0 1:4.3 __satfractsfda@GCC_4.3.0 1:4.3 __satfractsfdq@GCC_4.3.0 1:4.3 __satfractsfha@GCC_4.3.0 1:4.3 __satfractsfhq@GCC_4.3.0 1:4.3 __satfractsfqq@GCC_4.3.0 1:4.3 __satfractsfsa@GCC_4.3.0 1:4.3 __satfractsfsq@GCC_4.3.0 1:4.3 __satfractsfta@GCC_4.3.0 1:4.3 __satfractsftq@GCC_4.3.0 1:4.3 __satfractsfuda@GCC_4.3.0 1:4.3 __satfractsfudq@GCC_4.3.0 1:4.3 __satfractsfuha@GCC_4.3.0 1:4.3 __satfractsfuhq@GCC_4.3.0 1:4.3 __satfractsfuqq@GCC_4.3.0 1:4.3 __satfractsfusa@GCC_4.3.0 1:4.3 __satfractsfusq@GCC_4.3.0 1:4.3 __satfractsfuta@GCC_4.3.0 1:4.3 __satfractsfutq@GCC_4.3.0 1:4.3 __satfractsida@GCC_4.3.0 1:4.3 __satfractsidq@GCC_4.3.0 1:4.3 __satfractsiha@GCC_4.3.0 1:4.3 __satfractsihq@GCC_4.3.0 1:4.3 __satfractsiqq@GCC_4.3.0 1:4.3 __satfractsisa@GCC_4.3.0 1:4.3 __satfractsisq@GCC_4.3.0 1:4.3 __satfractsita@GCC_4.3.0 1:4.3 __satfractsitq@GCC_4.3.0 1:4.3 __satfractsiuda@GCC_4.3.0 1:4.3 __satfractsiudq@GCC_4.3.0 1:4.3 __satfractsiuha@GCC_4.3.0 1:4.3 __satfractsiuhq@GCC_4.3.0 1:4.3 __satfractsiuqq@GCC_4.3.0 1:4.3 __satfractsiusa@GCC_4.3.0 1:4.3 __satfractsiusq@GCC_4.3.0 1:4.3 __satfractsiuta@GCC_4.3.0 1:4.3 __satfractsiutq@GCC_4.3.0 1:4.3 __satfractsqda@GCC_4.3.0 1:4.3 __satfractsqdq2@GCC_4.3.0 1:4.3 __satfractsqha@GCC_4.3.0 1:4.3 __satfractsqhq2@GCC_4.3.0 1:4.3 __satfractsqqq2@GCC_4.3.0 1:4.3 __satfractsqsa@GCC_4.3.0 1:4.3 __satfractsqta@GCC_4.3.0 1:4.3 __satfractsqtq2@GCC_4.3.0 1:4.3 __satfractsquda@GCC_4.3.0 1:4.3 __satfractsqudq@GCC_4.3.0 1:4.3 __satfractsquha@GCC_4.3.0 1:4.3 __satfractsquhq@GCC_4.3.0 1:4.3 __satfractsquqq@GCC_4.3.0 1:4.3 __satfractsqusa@GCC_4.3.0 1:4.3 __satfractsqusq@GCC_4.3.0 1:4.3 __satfractsquta@GCC_4.3.0 1:4.3 __satfractsqutq@GCC_4.3.0 1:4.3 __satfracttada2@GCC_4.3.0 1:4.3 __satfracttadq@GCC_4.3.0 1:4.3 __satfracttaha2@GCC_4.3.0 1:4.3 __satfracttahq@GCC_4.3.0 1:4.3 __satfracttaqq@GCC_4.3.0 1:4.3 __satfracttasa2@GCC_4.3.0 1:4.3 __satfracttasq@GCC_4.3.0 1:4.3 __satfracttatq@GCC_4.3.0 1:4.3 __satfracttauda@GCC_4.3.0 1:4.3 __satfracttaudq@GCC_4.3.0 1:4.3 __satfracttauha@GCC_4.3.0 1:4.3 __satfracttauhq@GCC_4.3.0 1:4.3 __satfracttauqq@GCC_4.3.0 1:4.3 __satfracttausa@GCC_4.3.0 1:4.3 __satfracttausq@GCC_4.3.0 1:4.3 __satfracttauta@GCC_4.3.0 1:4.3 __satfracttautq@GCC_4.3.0 1:4.3 __satfracttida@GCC_4.3.0 1:4.3 __satfracttidq@GCC_4.3.0 1:4.3 __satfracttiha@GCC_4.3.0 1:4.3 __satfracttihq@GCC_4.3.0 1:4.3 __satfracttiqq@GCC_4.3.0 1:4.3 __satfracttisa@GCC_4.3.0 1:4.3 __satfracttisq@GCC_4.3.0 1:4.3 __satfracttita@GCC_4.3.0 1:4.3 __satfracttitq@GCC_4.3.0 1:4.3 __satfracttiuda@GCC_4.3.0 1:4.3 __satfracttiudq@GCC_4.3.0 1:4.3 __satfracttiuha@GCC_4.3.0 1:4.3 __satfracttiuhq@GCC_4.3.0 1:4.3 __satfracttiuqq@GCC_4.3.0 1:4.3 __satfracttiusa@GCC_4.3.0 1:4.3 __satfracttiusq@GCC_4.3.0 1:4.3 __satfracttiuta@GCC_4.3.0 1:4.3 __satfracttiutq@GCC_4.3.0 1:4.3 __satfracttqda@GCC_4.3.0 1:4.3 __satfracttqdq2@GCC_4.3.0 1:4.3 __satfracttqha@GCC_4.3.0 1:4.3 __satfracttqhq2@GCC_4.3.0 1:4.3 __satfracttqqq2@GCC_4.3.0 1:4.3 __satfracttqsa@GCC_4.3.0 1:4.3 __satfracttqsq2@GCC_4.3.0 1:4.3 __satfracttqta@GCC_4.3.0 1:4.3 __satfracttquda@GCC_4.3.0 1:4.3 __satfracttqudq@GCC_4.3.0 1:4.3 __satfracttquha@GCC_4.3.0 1:4.3 __satfracttquhq@GCC_4.3.0 1:4.3 __satfracttquqq@GCC_4.3.0 1:4.3 __satfracttqusa@GCC_4.3.0 1:4.3 __satfracttqusq@GCC_4.3.0 1:4.3 __satfracttquta@GCC_4.3.0 1:4.3 __satfracttqutq@GCC_4.3.0 1:4.3 __satfractudada@GCC_4.3.0 1:4.3 __satfractudadq@GCC_4.3.0 1:4.3 __satfractudaha@GCC_4.3.0 1:4.3 __satfractudahq@GCC_4.3.0 1:4.3 __satfractudaqq@GCC_4.3.0 1:4.3 __satfractudasa@GCC_4.3.0 1:4.3 __satfractudasq@GCC_4.3.0 1:4.3 __satfractudata@GCC_4.3.0 1:4.3 __satfractudatq@GCC_4.3.0 1:4.3 __satfractudaudq@GCC_4.3.0 1:4.3 __satfractudauha2@GCC_4.3.0 1:4.3 __satfractudauhq@GCC_4.3.0 1:4.3 __satfractudauqq@GCC_4.3.0 1:4.3 __satfractudausa2@GCC_4.3.0 1:4.3 __satfractudausq@GCC_4.3.0 1:4.3 __satfractudauta2@GCC_4.3.0 1:4.3 __satfractudautq@GCC_4.3.0 1:4.3 __satfractudqda@GCC_4.3.0 1:4.3 __satfractudqdq@GCC_4.3.0 1:4.3 __satfractudqha@GCC_4.3.0 1:4.3 __satfractudqhq@GCC_4.3.0 1:4.3 __satfractudqqq@GCC_4.3.0 1:4.3 __satfractudqsa@GCC_4.3.0 1:4.3 __satfractudqsq@GCC_4.3.0 1:4.3 __satfractudqta@GCC_4.3.0 1:4.3 __satfractudqtq@GCC_4.3.0 1:4.3 __satfractudquda@GCC_4.3.0 1:4.3 __satfractudquha@GCC_4.3.0 1:4.3 __satfractudquhq2@GCC_4.3.0 1:4.3 __satfractudquqq2@GCC_4.3.0 1:4.3 __satfractudqusa@GCC_4.3.0 1:4.3 __satfractudqusq2@GCC_4.3.0 1:4.3 __satfractudquta@GCC_4.3.0 1:4.3 __satfractudqutq2@GCC_4.3.0 1:4.3 __satfractuhada@GCC_4.3.0 1:4.3 __satfractuhadq@GCC_4.3.0 1:4.3 __satfractuhaha@GCC_4.3.0 1:4.3 __satfractuhahq@GCC_4.3.0 1:4.3 __satfractuhaqq@GCC_4.3.0 1:4.3 __satfractuhasa@GCC_4.3.0 1:4.3 __satfractuhasq@GCC_4.3.0 1:4.3 __satfractuhata@GCC_4.3.0 1:4.3 __satfractuhatq@GCC_4.3.0 1:4.3 __satfractuhauda2@GCC_4.3.0 1:4.3 __satfractuhaudq@GCC_4.3.0 1:4.3 __satfractuhauhq@GCC_4.3.0 1:4.3 __satfractuhauqq@GCC_4.3.0 1:4.3 __satfractuhausa2@GCC_4.3.0 1:4.3 __satfractuhausq@GCC_4.3.0 1:4.3 __satfractuhauta2@GCC_4.3.0 1:4.3 __satfractuhautq@GCC_4.3.0 1:4.3 __satfractuhqda@GCC_4.3.0 1:4.3 __satfractuhqdq@GCC_4.3.0 1:4.3 __satfractuhqha@GCC_4.3.0 1:4.3 __satfractuhqhq@GCC_4.3.0 1:4.3 __satfractuhqqq@GCC_4.3.0 1:4.3 __satfractuhqsa@GCC_4.3.0 1:4.3 __satfractuhqsq@GCC_4.3.0 1:4.3 __satfractuhqta@GCC_4.3.0 1:4.3 __satfractuhqtq@GCC_4.3.0 1:4.3 __satfractuhquda@GCC_4.3.0 1:4.3 __satfractuhqudq2@GCC_4.3.0 1:4.3 __satfractuhquha@GCC_4.3.0 1:4.3 __satfractuhquqq2@GCC_4.3.0 1:4.3 __satfractuhqusa@GCC_4.3.0 1:4.3 __satfractuhqusq2@GCC_4.3.0 1:4.3 __satfractuhquta@GCC_4.3.0 1:4.3 __satfractuhqutq2@GCC_4.3.0 1:4.3 __satfractunsdida@GCC_4.3.0 1:4.3 __satfractunsdidq@GCC_4.3.0 1:4.3 __satfractunsdiha@GCC_4.3.0 1:4.3 __satfractunsdihq@GCC_4.3.0 1:4.3 __satfractunsdiqq@GCC_4.3.0 1:4.3 __satfractunsdisa@GCC_4.3.0 1:4.3 __satfractunsdisq@GCC_4.3.0 1:4.3 __satfractunsdita@GCC_4.3.0 1:4.3 __satfractunsditq@GCC_4.3.0 1:4.3 __satfractunsdiuda@GCC_4.3.0 1:4.3 __satfractunsdiudq@GCC_4.3.0 1:4.3 __satfractunsdiuha@GCC_4.3.0 1:4.3 __satfractunsdiuhq@GCC_4.3.0 1:4.3 __satfractunsdiuqq@GCC_4.3.0 1:4.3 __satfractunsdiusa@GCC_4.3.0 1:4.3 __satfractunsdiusq@GCC_4.3.0 1:4.3 __satfractunsdiuta@GCC_4.3.0 1:4.3 __satfractunsdiutq@GCC_4.3.0 1:4.3 __satfractunshida@GCC_4.3.0 1:4.3 __satfractunshidq@GCC_4.3.0 1:4.3 __satfractunshiha@GCC_4.3.0 1:4.3 __satfractunshihq@GCC_4.3.0 1:4.3 __satfractunshiqq@GCC_4.3.0 1:4.3 __satfractunshisa@GCC_4.3.0 1:4.3 __satfractunshisq@GCC_4.3.0 1:4.3 __satfractunshita@GCC_4.3.0 1:4.3 __satfractunshitq@GCC_4.3.0 1:4.3 __satfractunshiuda@GCC_4.3.0 1:4.3 __satfractunshiudq@GCC_4.3.0 1:4.3 __satfractunshiuha@GCC_4.3.0 1:4.3 __satfractunshiuhq@GCC_4.3.0 1:4.3 __satfractunshiuqq@GCC_4.3.0 1:4.3 __satfractunshiusa@GCC_4.3.0 1:4.3 __satfractunshiusq@GCC_4.3.0 1:4.3 __satfractunshiuta@GCC_4.3.0 1:4.3 __satfractunshiutq@GCC_4.3.0 1:4.3 __satfractunsqida@GCC_4.3.0 1:4.3 __satfractunsqidq@GCC_4.3.0 1:4.3 __satfractunsqiha@GCC_4.3.0 1:4.3 __satfractunsqihq@GCC_4.3.0 1:4.3 __satfractunsqiqq@GCC_4.3.0 1:4.3 __satfractunsqisa@GCC_4.3.0 1:4.3 __satfractunsqisq@GCC_4.3.0 1:4.3 __satfractunsqita@GCC_4.3.0 1:4.3 __satfractunsqitq@GCC_4.3.0 1:4.3 __satfractunsqiuda@GCC_4.3.0 1:4.3 __satfractunsqiudq@GCC_4.3.0 1:4.3 __satfractunsqiuha@GCC_4.3.0 1:4.3 __satfractunsqiuhq@GCC_4.3.0 1:4.3 __satfractunsqiuqq@GCC_4.3.0 1:4.3 __satfractunsqiusa@GCC_4.3.0 1:4.3 __satfractunsqiusq@GCC_4.3.0 1:4.3 __satfractunsqiuta@GCC_4.3.0 1:4.3 __satfractunsqiutq@GCC_4.3.0 1:4.3 __satfractunssida@GCC_4.3.0 1:4.3 __satfractunssidq@GCC_4.3.0 1:4.3 __satfractunssiha@GCC_4.3.0 1:4.3 __satfractunssihq@GCC_4.3.0 1:4.3 __satfractunssiqq@GCC_4.3.0 1:4.3 __satfractunssisa@GCC_4.3.0 1:4.3 __satfractunssisq@GCC_4.3.0 1:4.3 __satfractunssita@GCC_4.3.0 1:4.3 __satfractunssitq@GCC_4.3.0 1:4.3 __satfractunssiuda@GCC_4.3.0 1:4.3 __satfractunssiudq@GCC_4.3.0 1:4.3 __satfractunssiuha@GCC_4.3.0 1:4.3 __satfractunssiuhq@GCC_4.3.0 1:4.3 __satfractunssiuqq@GCC_4.3.0 1:4.3 __satfractunssiusa@GCC_4.3.0 1:4.3 __satfractunssiusq@GCC_4.3.0 1:4.3 __satfractunssiuta@GCC_4.3.0 1:4.3 __satfractunssiutq@GCC_4.3.0 1:4.3 __satfractunstida@GCC_4.3.0 1:4.3 __satfractunstidq@GCC_4.3.0 1:4.3 __satfractunstiha@GCC_4.3.0 1:4.3 __satfractunstihq@GCC_4.3.0 1:4.3 __satfractunstiqq@GCC_4.3.0 1:4.3 __satfractunstisa@GCC_4.3.0 1:4.3 __satfractunstisq@GCC_4.3.0 1:4.3 __satfractunstita@GCC_4.3.0 1:4.3 __satfractunstitq@GCC_4.3.0 1:4.3 __satfractunstiuda@GCC_4.3.0 1:4.3 __satfractunstiudq@GCC_4.3.0 1:4.3 __satfractunstiuha@GCC_4.3.0 1:4.3 __satfractunstiuhq@GCC_4.3.0 1:4.3 __satfractunstiuqq@GCC_4.3.0 1:4.3 __satfractunstiusa@GCC_4.3.0 1:4.3 __satfractunstiusq@GCC_4.3.0 1:4.3 __satfractunstiuta@GCC_4.3.0 1:4.3 __satfractunstiutq@GCC_4.3.0 1:4.3 __satfractuqqda@GCC_4.3.0 1:4.3 __satfractuqqdq@GCC_4.3.0 1:4.3 __satfractuqqha@GCC_4.3.0 1:4.3 __satfractuqqhq@GCC_4.3.0 1:4.3 __satfractuqqqq@GCC_4.3.0 1:4.3 __satfractuqqsa@GCC_4.3.0 1:4.3 __satfractuqqsq@GCC_4.3.0 1:4.3 __satfractuqqta@GCC_4.3.0 1:4.3 __satfractuqqtq@GCC_4.3.0 1:4.3 __satfractuqquda@GCC_4.3.0 1:4.3 __satfractuqqudq2@GCC_4.3.0 1:4.3 __satfractuqquha@GCC_4.3.0 1:4.3 __satfractuqquhq2@GCC_4.3.0 1:4.3 __satfractuqqusa@GCC_4.3.0 1:4.3 __satfractuqqusq2@GCC_4.3.0 1:4.3 __satfractuqquta@GCC_4.3.0 1:4.3 __satfractuqqutq2@GCC_4.3.0 1:4.3 __satfractusada@GCC_4.3.0 1:4.3 __satfractusadq@GCC_4.3.0 1:4.3 __satfractusaha@GCC_4.3.0 1:4.3 __satfractusahq@GCC_4.3.0 1:4.3 __satfractusaqq@GCC_4.3.0 1:4.3 __satfractusasa@GCC_4.3.0 1:4.3 __satfractusasq@GCC_4.3.0 1:4.3 __satfractusata@GCC_4.3.0 1:4.3 __satfractusatq@GCC_4.3.0 1:4.3 __satfractusauda2@GCC_4.3.0 1:4.3 __satfractusaudq@GCC_4.3.0 1:4.3 __satfractusauha2@GCC_4.3.0 1:4.3 __satfractusauhq@GCC_4.3.0 1:4.3 __satfractusauqq@GCC_4.3.0 1:4.3 __satfractusausq@GCC_4.3.0 1:4.3 __satfractusauta2@GCC_4.3.0 1:4.3 __satfractusautq@GCC_4.3.0 1:4.3 __satfractusqda@GCC_4.3.0 1:4.3 __satfractusqdq@GCC_4.3.0 1:4.3 __satfractusqha@GCC_4.3.0 1:4.3 __satfractusqhq@GCC_4.3.0 1:4.3 __satfractusqqq@GCC_4.3.0 1:4.3 __satfractusqsa@GCC_4.3.0 1:4.3 __satfractusqsq@GCC_4.3.0 1:4.3 __satfractusqta@GCC_4.3.0 1:4.3 __satfractusqtq@GCC_4.3.0 1:4.3 __satfractusquda@GCC_4.3.0 1:4.3 __satfractusqudq2@GCC_4.3.0 1:4.3 __satfractusquha@GCC_4.3.0 1:4.3 __satfractusquhq2@GCC_4.3.0 1:4.3 __satfractusquqq2@GCC_4.3.0 1:4.3 __satfractusqusa@GCC_4.3.0 1:4.3 __satfractusquta@GCC_4.3.0 1:4.3 __satfractusqutq2@GCC_4.3.0 1:4.3 __satfractutada@GCC_4.3.0 1:4.3 __satfractutadq@GCC_4.3.0 1:4.3 __satfractutaha@GCC_4.3.0 1:4.3 __satfractutahq@GCC_4.3.0 1:4.3 __satfractutaqq@GCC_4.3.0 1:4.3 __satfractutasa@GCC_4.3.0 1:4.3 __satfractutasq@GCC_4.3.0 1:4.3 __satfractutata@GCC_4.3.0 1:4.3 __satfractutatq@GCC_4.3.0 1:4.3 __satfractutauda2@GCC_4.3.0 1:4.3 __satfractutaudq@GCC_4.3.0 1:4.3 __satfractutauha2@GCC_4.3.0 1:4.3 __satfractutauhq@GCC_4.3.0 1:4.3 __satfractutauqq@GCC_4.3.0 1:4.3 __satfractutausa2@GCC_4.3.0 1:4.3 __satfractutausq@GCC_4.3.0 1:4.3 __satfractutautq@GCC_4.3.0 1:4.3 __satfractutqda@GCC_4.3.0 1:4.3 __satfractutqdq@GCC_4.3.0 1:4.3 __satfractutqha@GCC_4.3.0 1:4.3 __satfractutqhq@GCC_4.3.0 1:4.3 __satfractutqqq@GCC_4.3.0 1:4.3 __satfractutqsa@GCC_4.3.0 1:4.3 __satfractutqsq@GCC_4.3.0 1:4.3 __satfractutqta@GCC_4.3.0 1:4.3 __satfractutqtq@GCC_4.3.0 1:4.3 __satfractutquda@GCC_4.3.0 1:4.3 __satfractutqudq2@GCC_4.3.0 1:4.3 __satfractutquha@GCC_4.3.0 1:4.3 __satfractutquhq2@GCC_4.3.0 1:4.3 __satfractutquqq2@GCC_4.3.0 1:4.3 __satfractutqusa@GCC_4.3.0 1:4.3 __satfractutqusq2@GCC_4.3.0 1:4.3 __satfractutquta@GCC_4.3.0 1:4.3 __ssaddda3@GCC_4.3.0 1:4.3 __ssadddq3@GCC_4.3.0 1:4.3 __ssaddha3@GCC_4.3.0 1:4.3 __ssaddhq3@GCC_4.3.0 1:4.3 __ssaddqq3@GCC_4.3.0 1:4.3 __ssaddsa3@GCC_4.3.0 1:4.3 __ssaddsq3@GCC_4.3.0 1:4.3 __ssaddta3@GCC_4.3.0 1:4.3 __ssaddtq3@GCC_4.3.0 1:4.3 __ssashlda3@GCC_4.3.0 1:4.3 __ssashldq3@GCC_4.3.0 1:4.3 __ssashlha3@GCC_4.3.0 1:4.3 __ssashlhq3@GCC_4.3.0 1:4.3 __ssashlqq3@GCC_4.3.0 1:4.3 __ssashlsa3@GCC_4.3.0 1:4.3 __ssashlsq3@GCC_4.3.0 1:4.3 __ssashlta3@GCC_4.3.0 1:4.3 __ssashltq3@GCC_4.3.0 1:4.3 __ssdivda3@GCC_4.3.0 1:4.3 __ssdivdq3@GCC_4.3.0 1:4.3 __ssdivha3@GCC_4.3.0 1:4.3 __ssdivhq3@GCC_4.3.0 1:4.3 __ssdivqq3@GCC_4.3.0 1:4.3 __ssdivsa3@GCC_4.3.0 1:4.3 __ssdivsq3@GCC_4.3.0 1:4.3 __ssdivta3@GCC_4.3.0 1:4.3 __ssdivtq3@GCC_4.3.0 1:4.3 __ssmulda3@GCC_4.3.0 1:4.3 __ssmuldq3@GCC_4.3.0 1:4.3 __ssmulha3@GCC_4.3.0 1:4.3 __ssmulhq3@GCC_4.3.0 1:4.3 __ssmulqq3@GCC_4.3.0 1:4.3 __ssmulsa3@GCC_4.3.0 1:4.3 __ssmulsq3@GCC_4.3.0 1:4.3 __ssmulta3@GCC_4.3.0 1:4.3 __ssmultq3@GCC_4.3.0 1:4.3 __ssnegda2@GCC_4.3.0 1:4.3 __ssnegdq2@GCC_4.3.0 1:4.3 __ssnegha2@GCC_4.3.0 1:4.3 __ssneghq2@GCC_4.3.0 1:4.3 __ssnegqq2@GCC_4.3.0 1:4.3 __ssnegsa2@GCC_4.3.0 1:4.3 __ssnegsq2@GCC_4.3.0 1:4.3 __ssnegta2@GCC_4.3.0 1:4.3 __ssnegtq2@GCC_4.3.0 1:4.3 __sssubda3@GCC_4.3.0 1:4.3 __sssubdq3@GCC_4.3.0 1:4.3 __sssubha3@GCC_4.3.0 1:4.3 __sssubhq3@GCC_4.3.0 1:4.3 __sssubqq3@GCC_4.3.0 1:4.3 __sssubsa3@GCC_4.3.0 1:4.3 __sssubsq3@GCC_4.3.0 1:4.3 __sssubta3@GCC_4.3.0 1:4.3 __sssubtq3@GCC_4.3.0 1:4.3 __subda3@GCC_4.3.0 1:4.3 __subdf3@GCC_3.0 1:4.1.1 __subdq3@GCC_4.3.0 1:4.3 __subha3@GCC_4.3.0 1:4.3 __subhq3@GCC_4.3.0 1:4.3 __subqq3@GCC_4.3.0 1:4.3 __subsa3@GCC_4.3.0 1:4.3 __subsf3@GCC_3.0 1:4.1.1 __subsq3@GCC_4.3.0 1:4.3 __subta3@GCC_4.3.0 1:4.3 __subtf3@GCC_3.0 1:4.1.1 __subtq3@GCC_4.3.0 1:4.3 __subuda3@GCC_4.3.0 1:4.3 __subudq3@GCC_4.3.0 1:4.3 __subuha3@GCC_4.3.0 1:4.3 __subuhq3@GCC_4.3.0 1:4.3 __subuqq3@GCC_4.3.0 1:4.3 __subusa3@GCC_4.3.0 1:4.3 __subusq3@GCC_4.3.0 1:4.3 __subuta3@GCC_4.3.0 1:4.3 __subutq3@GCC_4.3.0 1:4.3 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __subvti3@GCC_3.4.4 1:4.1.1 __sync_add_and_fetch_1@GCC_4.4.0 1:4.4 __sync_add_and_fetch_2@GCC_4.4.0 1:4.4 __sync_add_and_fetch_4@GCC_4.4.0 1:4.4 __sync_add_and_fetch_8@GCC_4.4.0 1:4.4 __sync_and_and_fetch_1@GCC_4.4.0 1:4.4 __sync_and_and_fetch_2@GCC_4.4.0 1:4.4 __sync_and_and_fetch_4@GCC_4.4.0 1:4.4 __sync_and_and_fetch_8@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_1@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_2@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_4@GCC_4.4.0 1:4.4 __sync_bool_compare_and_swap_8@GCC_4.4.0 1:4.4 __sync_fetch_and_add_1@GCC_4.4.0 1:4.4 __sync_fetch_and_add_2@GCC_4.4.0 1:4.4 __sync_fetch_and_add_4@GCC_4.4.0 1:4.4 __sync_fetch_and_add_8@GCC_4.4.0 1:4.4 __sync_fetch_and_and_1@GCC_4.4.0 1:4.4 __sync_fetch_and_and_2@GCC_4.4.0 1:4.4 __sync_fetch_and_and_4@GCC_4.4.0 1:4.4 __sync_fetch_and_and_8@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_1@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_2@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_4@GCC_4.4.0 1:4.4 __sync_fetch_and_nand_8@GCC_4.4.0 1:4.4 __sync_fetch_and_or_1@GCC_4.4.0 1:4.4 __sync_fetch_and_or_2@GCC_4.4.0 1:4.4 __sync_fetch_and_or_4@GCC_4.4.0 1:4.4 __sync_fetch_and_or_8@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_1@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_2@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_4@GCC_4.4.0 1:4.4 __sync_fetch_and_sub_8@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_1@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_2@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_4@GCC_4.4.0 1:4.4 __sync_fetch_and_xor_8@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_1@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_2@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_4@GCC_4.4.0 1:4.4 __sync_lock_test_and_set_8@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_1@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_2@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_4@GCC_4.4.0 1:4.4 __sync_nand_and_fetch_8@GCC_4.4.0 1:4.4 __sync_or_and_fetch_1@GCC_4.4.0 1:4.4 __sync_or_and_fetch_2@GCC_4.4.0 1:4.4 __sync_or_and_fetch_4@GCC_4.4.0 1:4.4 __sync_or_and_fetch_8@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_1@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_2@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_4@GCC_4.4.0 1:4.4 __sync_sub_and_fetch_8@GCC_4.4.0 1:4.4 __sync_synchronize@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_1@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_2@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_4@GCC_4.4.0 1:4.4 __sync_val_compare_and_swap_8@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_1@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_2@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_4@GCC_4.4.0 1:4.4 __sync_xor_and_fetch_8@GCC_4.4.0 1:4.4 __truncdfsf2@GCC_3.0 1:4.1.1 __trunctfdf2@GCC_3.0 1:4.1.1 __trunctfsf2@GCC_3.0 1:4.1.1 __ucmpti2@GCC_3.0 1:4.1.1 __udivmodti4@GCC_3.0 1:4.1.1 __udivti3@GCC_3.0 1:4.1.1 __udivuda3@GCC_4.3.0 1:4.3 __udivudq3@GCC_4.3.0 1:4.3 __udivuha3@GCC_4.3.0 1:4.3 __udivuhq3@GCC_4.3.0 1:4.3 __udivuqq3@GCC_4.3.0 1:4.3 __udivusa3@GCC_4.3.0 1:4.3 __udivusq3@GCC_4.3.0 1:4.3 __udivuta3@GCC_4.3.0 1:4.3 __udivutq3@GCC_4.3.0 1:4.3 __umodti3@GCC_3.0 1:4.1.1 __unorddf2@GCC_3.3.4 1:4.1.1 __unordsf2@GCC_3.3.4 1:4.1.1 __unordtf2@GCC_4.5.0 1:4.5 __usadduda3@GCC_4.3.0 1:4.3 __usaddudq3@GCC_4.3.0 1:4.3 __usadduha3@GCC_4.3.0 1:4.3 __usadduhq3@GCC_4.3.0 1:4.3 __usadduqq3@GCC_4.3.0 1:4.3 __usaddusa3@GCC_4.3.0 1:4.3 __usaddusq3@GCC_4.3.0 1:4.3 __usadduta3@GCC_4.3.0 1:4.3 __usaddutq3@GCC_4.3.0 1:4.3 __usashluda3@GCC_4.3.0 1:4.3 __usashludq3@GCC_4.3.0 1:4.3 __usashluha3@GCC_4.3.0 1:4.3 __usashluhq3@GCC_4.3.0 1:4.3 __usashluqq3@GCC_4.3.0 1:4.3 __usashlusa3@GCC_4.3.0 1:4.3 __usashlusq3@GCC_4.3.0 1:4.3 __usashluta3@GCC_4.3.0 1:4.3 __usashlutq3@GCC_4.3.0 1:4.3 __usdivuda3@GCC_4.3.0 1:4.3 __usdivudq3@GCC_4.3.0 1:4.3 __usdivuha3@GCC_4.3.0 1:4.3 __usdivuhq3@GCC_4.3.0 1:4.3 __usdivuqq3@GCC_4.3.0 1:4.3 __usdivusa3@GCC_4.3.0 1:4.3 __usdivusq3@GCC_4.3.0 1:4.3 __usdivuta3@GCC_4.3.0 1:4.3 __usdivutq3@GCC_4.3.0 1:4.3 __usmuluda3@GCC_4.3.0 1:4.3 __usmuludq3@GCC_4.3.0 1:4.3 __usmuluha3@GCC_4.3.0 1:4.3 __usmuluhq3@GCC_4.3.0 1:4.3 __usmuluqq3@GCC_4.3.0 1:4.3 __usmulusa3@GCC_4.3.0 1:4.3 __usmulusq3@GCC_4.3.0 1:4.3 __usmuluta3@GCC_4.3.0 1:4.3 __usmulutq3@GCC_4.3.0 1:4.3 __usneguda2@GCC_4.3.0 1:4.3 __usnegudq2@GCC_4.3.0 1:4.3 __usneguha2@GCC_4.3.0 1:4.3 __usneguhq2@GCC_4.3.0 1:4.3 __usneguqq2@GCC_4.3.0 1:4.3 __usnegusa2@GCC_4.3.0 1:4.3 __usnegusq2@GCC_4.3.0 1:4.3 __usneguta2@GCC_4.3.0 1:4.3 __usnegutq2@GCC_4.3.0 1:4.3 __ussubuda3@GCC_4.3.0 1:4.3 __ussubudq3@GCC_4.3.0 1:4.3 __ussubuha3@GCC_4.3.0 1:4.3 __ussubuhq3@GCC_4.3.0 1:4.3 __ussubuqq3@GCC_4.3.0 1:4.3 __ussubusa3@GCC_4.3.0 1:4.3 __ussubusq3@GCC_4.3.0 1:4.3 __ussubuta3@GCC_4.3.0 1:4.3 __ussubutq3@GCC_4.3.0 1:4.3 gnat-4.8-4.8.2/debian/libgfortran3.symbols.qf0000644000000000000000000000132212173542725015516 0ustar _gfortran_maxloc0_16_r16@GFORTRAN_1.0 4.6 _gfortran_maxloc1_16_r16@GFORTRAN_1.0 4.6 _gfortran_minloc0_16_r16@GFORTRAN_1.0 4.6 _gfortran_minloc1_16_r16@GFORTRAN_1.0 4.6 _gfortran_mmaxloc0_16_r16@GFORTRAN_1.0 4.6 _gfortran_mmaxloc1_16_r16@GFORTRAN_1.0 4.6 _gfortran_mminloc0_16_r16@GFORTRAN_1.0 4.6 _gfortran_mminloc1_16_r16@GFORTRAN_1.0 4.6 _gfortran_smaxloc0_16_r16@GFORTRAN_1.0 4.6 _gfortran_smaxloc1_16_r16@GFORTRAN_1.0 4.6 _gfortran_sminloc0_16_r16@GFORTRAN_1.0 4.6 _gfortran_sminloc1_16_r16@GFORTRAN_1.0 4.6 _gfortran_transfer_complex128@GFORTRAN_1.4 4.6 _gfortran_transfer_complex128_write@GFORTRAN_1.4 4.6 _gfortran_transfer_real128@GFORTRAN_1.4 4.6 _gfortran_transfer_real128_write@GFORTRAN_1.4 4.6 gnat-4.8-4.8.2/debian/libitm1.symbols0000644000000000000000000000050112253105002014032 0ustar libitm.so.1 libitm1 #MINVER# #include "libitm1.symbols.common" (arch=amd64 i386 x32)#include "libitm1.symbols.x86" (arch=!alpha !amd64 !ia64 !ppc64 !ppc64el !s390x !sparc64 !kfreebsd-amd64)#include "libitm1.symbols.32bit" (arch=alpha amd64 ia64 ppc64 ppc64el s390x sparc64 kfreebsd-amd64)#include "libitm1.symbols.64bit" gnat-4.8-4.8.2/debian/dh_doclink0000755000000000000000000000053112173542725013130 0ustar #! /bin/sh pkg=`echo $1 | sed 's/^-p//'` target=$2 [ -d debian/$pkg/usr/share/doc ] || mkdir -p debian/$pkg/usr/share/doc if [ -d debian/$pkg/usr/share/doc/$p -a ! -h debian/$pkg/usr/share/doc/$p ] then echo "WARNING: removing doc directory $pkg" rm -rf debian/$pkg/usr/share/doc/$pkg fi ln -sf $target debian/$pkg/usr/share/doc/$pkg gnat-4.8-4.8.2/debian/gcc-BV-hppa64.prerm0000644000000000000000000000024712173542725014320 0ustar #! /bin/sh -e if [ "$1" != "upgrade" ]; then update-alternatives --quiet \ --remove hppa64-linux-gcc /usr/bin/hppa64-linux-gnu-gcc-@BV@ fi #DEBHELPER# exit 0 gnat-4.8-4.8.2/debian/libgcj-common.preinst0000644000000000000000000000034012173542725015230 0ustar #! /bin/sh -e case "$1" in upgrade|install) if [ -n "$2" ] && [ -h /usr/share/doc/libgcj-common ] \ && dpkg --compare-versions "$2" lt 1:4.0.2-10 then rm -f /usr/share/doc/libgcj-common fi esac #DEBHELPER# gnat-4.8-4.8.2/debian/lib64gcc1.symbols.powerpc0000644000000000000000000000764212173542725015664 0ustar libgcc_s.so.1 lib64gcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4.4@GCC_3.4.4 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __absvti2@GCC_3.4.4 1:4.1.1 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __addvti3@GCC_3.4.4 1:4.1.1 __ashlti3@GCC_3.0 1:4.1.1 __ashrti3@GCC_3.0 1:4.1.1 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbti2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzti2@GCC_3.4 1:4.1.1 __cmpti2@GCC_3.0 1:4.1.1 __ctzdi2@GCC_3.4 1:4.1.1 __ctzti2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divdc3@GCC_4.0.0 1:4.1.1 __divsc3@GCC_4.0.0 1:4.1.1 __divtc3@GCC_4.0.0 1:4.1.1 __divti3@GCC_3.0 1:4.1.1 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __ffsdi2@GCC_3.0 1:4.1.1 __ffsti2@GCC_3.0 1:4.1.1 __fixdfdi@GCC_3.0 1:4.1.1 __fixdfti@GCC_3.0 1:4.1.1 __fixsfdi@GCC_3.0 1:4.1.1 __fixsfti@GCC_3.0 1:4.1.1 __fixtfdi@GCC_3.0 1:4.1.1 __fixtfti@GCC_3.0 1:4.1.1 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfsi@GCC_3.0 1:4.1.1 __fixunsdfti@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfsi@GCC_3.0 1:4.1.1 __fixunssfti@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_3.0 1:4.1.1 __fixunstfti@GCC_3.0 1:4.1.1 __floatdidf@GCC_3.0 1:4.1.1 __floatdisf@GCC_3.0 1:4.1.1 __floatditf@GCC_3.0 1:4.1.1 __floattidf@GCC_3.0 1:4.1.1 __floattisf@GCC_3.0 1:4.1.1 __floattitf@GCC_3.0 1:4.1.1 __floatundidf@GCC_4.2.0 1:4.2.1 __floatundisf@GCC_4.2.0 1:4.2.1 __floatunditf@GCC_4.2.0 1:4.2.1 __floatuntidf@GCC_4.2.0 1:4.2.1 __floatuntisf@GCC_4.2.0 1:4.2.1 __floatuntitf@GCC_4.2.0 1:4.2.1 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __gcc_qadd@GCC_3.4.4 1:4.1.1 __gcc_qdiv@GCC_3.4.4 1:4.1.1 __gcc_qmul@GCC_3.4.4 1:4.1.1 __gcc_qsub@GCC_3.4.4 1:4.1.1 __lshrti3@GCC_3.0 1:4.1.1 __modti3@GCC_3.0 1:4.1.1 __muldc3@GCC_4.0.0 1:4.1.1 __mulsc3@GCC_4.0.0 1:4.1.1 __multc3@GCC_4.0.0 1:4.1.1 __multi3@GCC_3.0 1:4.1.1 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __mulvti3@GCC_3.4.4 1:4.1.1 __negti2@GCC_3.0 1:4.1.1 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __negvti2@GCC_3.4.4 1:4.1.1 __paritydi2@GCC_3.4 1:4.1.1 __parityti2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountti2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.0.0 1:4.1.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __subvti3@GCC_3.4.4 1:4.1.1 __ucmpti2@GCC_3.0 1:4.1.1 __udivmodti4@GCC_3.0 1:4.1.1 __udivti3@GCC_3.0 1:4.1.1 __umodti3@GCC_3.0 1:4.1.1 _xlqadd@GCC_3.4 1:4.1.1 _xlqdiv@GCC_3.4 1:4.1.1 _xlqmul@GCC_3.4 1:4.1.1 _xlqsub@GCC_3.4 1:4.1.1 gnat-4.8-4.8.2/debian/libgcc1.symbols.powerpc0000644000000000000000000001036212173542725015503 0ustar libgcc_s.so.1 libgcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.1.1 GCC_3.3.1@GCC_3.3.1 1:4.1.1 GCC_3.3.4@GCC_3.3.4 1:4.1.1 GCC_3.3@GCC_3.3 1:4.1.1 GCC_3.4.2@GCC_3.4.2 1:4.1.1 GCC_3.4@GCC_3.4 1:4.1.1 GCC_4.0.0@GCC_4.0.0 1:4.1.1 GCC_4.1.0@GCC_4.1.0 1:4.1.1 GCC_4.2.0@GCC_4.2.0 1:4.1.1 GCC_4.3.0@GCC_4.3.0 1:4.3 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.0@GLIBC_2.0 1:4.1.1 _Unwind_Backtrace@GCC_3.3 1:4.1.1 _Unwind_DeleteException@GCC_3.0 1:4.1.1 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.1.1 _Unwind_Find_FDE@GCC_3.0 1:4.1.1 _Unwind_ForcedUnwind@GCC_3.0 1:4.1.1 _Unwind_GetCFA@GCC_3.3 1:4.1.1 _Unwind_GetDataRelBase@GCC_3.0 1:4.1.1 _Unwind_GetGR@GCC_3.0 1:4.1.1 _Unwind_GetIP@GCC_3.0 1:4.1.1 _Unwind_GetIPInfo@GCC_4.2.0 1:4.1.1 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.1.1 _Unwind_GetRegionStart@GCC_3.0 1:4.1.1 _Unwind_GetTextRelBase@GCC_3.0 1:4.1.1 _Unwind_RaiseException@GCC_3.0 1:4.1.1 _Unwind_Resume@GCC_3.0 1:4.1.1 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.1.1 _Unwind_SetGR@GCC_3.0 1:4.1.1 _Unwind_SetIP@GCC_3.0 1:4.1.1 __absvdi2@GCC_3.0 1:4.1.1 __absvsi2@GCC_3.0 1:4.1.1 __adddf3@GCC_3.0 1:4.1.1 __addsf3@GCC_3.0 1:4.1.1 __addvdi3@GCC_3.0 1:4.1.1 __addvsi3@GCC_3.0 1:4.1.1 __ashldi3@GCC_3.0 1:4.1.1 __ashrdi3@GCC_3.0 1:4.1.1 __bswapdi2@GCC_4.3.0 1:4.3 __bswapsi2@GCC_4.3.0 1:4.3 __clear_cache@GCC_3.0 1:4.1.1 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbsi2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.1.1 __clzsi2@GCC_3.4 1:4.1.1 __cmpdi2@GCC_3.0 1:4.1.1 __ctzdi2@GCC_3.4 1:4.1.1 __ctzsi2@GCC_3.4 1:4.1.1 __deregister_frame@GLIBC_2.0 1:4.1.1 __deregister_frame_info@GLIBC_2.0 1:4.1.1 __deregister_frame_info_bases@GCC_3.0 1:4.1.1 __divdc3@GCC_4.0.0 1:4.1.1 __divdf3@GCC_3.0 1:4.1.1 __divdi3@GLIBC_2.0 1:4.1.1 __divsc3@GCC_4.0.0 1:4.1.1 __divsf3@GCC_3.0 1:4.1.1 __divtc3@GCC_4.1.0 1:4.1.1 __emutls_get_address@GCC_4.3.0 1:4.3 __emutls_register_common@GCC_4.3.0 1:4.3 __enable_execute_stack@GCC_3.4.2 1:4.1.1 __eqdf2@GCC_3.0 1:4.1.1 __eqsf2@GCC_3.0 1:4.1.1 __extendsfdf2@GCC_3.0 1:4.1.1 __ffsdi2@GCC_3.0 1:4.1.1 __ffssi2@GCC_4.3.0 1:4.3 __fixdfdi@GCC_3.0 1:4.1.1 __fixdfsi@GCC_3.0 1:4.1.1 __fixsfdi@GCC_3.0 1:4.1.1 __fixsfsi@GCC_3.0 1:4.1.1 __fixtfdi@GCC_4.1.0 1:4.1.1 __fixunsdfdi@GCC_3.0 1:4.1.1 __fixunsdfsi@GCC_3.0 1:4.1.1 __fixunssfdi@GCC_3.0 1:4.1.1 __fixunssfsi@GCC_3.0 1:4.1.1 __fixunstfdi@GCC_4.1.0 1:4.1.1 __floatdidf@GCC_3.0 1:4.1.1 __floatdisf@GCC_3.0 1:4.1.1 __floatditf@GCC_4.1.0 1:4.1.1 __floatsidf@GCC_3.0 1:4.1.1 __floatsisf@GCC_3.0 1:4.1.1 __floatundidf@GCC_4.2.0 1:4.2.1 __floatundisf@GCC_4.2.0 1:4.2.1 __floatunditf@GCC_4.2.0 1:4.2.1 __floatunsidf@GCC_4.2.0 1:4.2.1 __floatunsisf@GCC_4.2.0 1:4.2.1 __frame_state_for@GLIBC_2.0 1:4.1.1 __gcc_personality_v0@GCC_3.3.1 1:4.1.1 __gcc_qadd@GCC_4.1.0 1:4.1.1 __gcc_qdiv@GCC_4.1.0 1:4.1.1 __gcc_qmul@GCC_4.1.0 1:4.1.1 __gcc_qsub@GCC_4.1.0 1:4.1.1 __gedf2@GCC_3.0 1:4.1.1 __gesf2@GCC_3.0 1:4.1.1 __gtdf2@GCC_3.0 1:4.1.1 __gtsf2@GCC_3.0 1:4.1.1 __ledf2@GCC_3.0 1:4.1.1 __lesf2@GCC_3.0 1:4.1.1 __lshrdi3@GCC_3.0 1:4.1.1 __ltdf2@GCC_3.0 1:4.1.1 __ltsf2@GCC_3.0 1:4.1.1 __moddi3@GLIBC_2.0 1:4.1.1 __muldc3@GCC_4.0.0 1:4.1.1 __muldf3@GCC_3.0 1:4.1.1 __muldi3@GCC_3.0 1:4.1.1 __mulsc3@GCC_4.0.0 1:4.1.1 __mulsf3@GCC_3.0 1:4.1.1 __multc3@GCC_4.1.0 1:4.1.1 __mulvdi3@GCC_3.0 1:4.1.1 __mulvsi3@GCC_3.0 1:4.1.1 __nedf2@GCC_3.0 1:4.1.1 __negdf2@GCC_3.0 1:4.1.1 __negdi2@GCC_3.0 1:4.1.1 __negsf2@GCC_3.0 1:4.1.1 __negvdi2@GCC_3.0 1:4.1.1 __negvsi2@GCC_3.0 1:4.1.1 __nesf2@GCC_3.0 1:4.1.1 __paritydi2@GCC_3.4 1:4.1.1 __paritysi2@GCC_3.4 1:4.1.1 __popcountdi2@GCC_3.4 1:4.1.1 __popcountsi2@GCC_3.4 1:4.1.1 __powidf2@GCC_4.0.0 1:4.1.1 __powisf2@GCC_4.0.0 1:4.1.1 __powitf2@GCC_4.1.0 1:4.1.1 __register_frame@GLIBC_2.0 1:4.1.1 __register_frame_info@GLIBC_2.0 1:4.1.1 __register_frame_info_bases@GCC_3.0 1:4.1.1 __register_frame_info_table@GLIBC_2.0 1:4.1.1 __register_frame_info_table_bases@GCC_3.0 1:4.1.1 __register_frame_table@GLIBC_2.0 1:4.1.1 __subdf3@GCC_3.0 1:4.1.1 __subsf3@GCC_3.0 1:4.1.1 __subvdi3@GCC_3.0 1:4.1.1 __subvsi3@GCC_3.0 1:4.1.1 __trampoline_setup@GCC_3.4.2 1:4.1.1 __truncdfsf2@GCC_3.0 1:4.1.1 __ucmpdi2@GCC_3.0 1:4.1.1 __udivdi3@GLIBC_2.0 1:4.1.1 __udivmoddi4@GCC_3.0 1:4.1.1 __umoddi3@GLIBC_2.0 1:4.1.1 __unorddf2@GCC_3.3.4 1:4.1.1 __unordsf2@GCC_3.3.4 1:4.1.1 gnat-4.8-4.8.2/debian/rules.conf0000644000000000000000000012626012316471722013112 0ustar # -*- makefile -*- # rules.conf # - used to build debian/control and debian/rules.parameters # - assumes unpacked sources include debian/rules.defs include debian/rules.sonames # manual ... ifeq ($(DEB_TARGET_GNU_CPU), $(findstring $(DEB_TARGET_GNU_CPU),hppa m68k)) ifeq ($(DEB_TARGET_ARCH),m68k) GCC_SONAME := 2 endif ifeq ($(DEB_TARGET_ARCH),hppa) GCC_SONAME := 4 endif DEB_LIBGCC_SOVERSION := $(DEB_SOVERSION) DEB_LIBGCC_VERSION := $(DEB_VERSION) else GCC_SONAME := 1 DEB_LIBGCC_SOVERSION := $(DEB_SOEVERSION) DEB_LIBGCC_VERSION := $(DEB_EVERSION) endif _soname_map = gcc=$(GCC_SONAME) stdc++=$(CXX_SONAME) gomp=$(GOMP_SONAME) \ ssp=$(SSP_SONAME) gfortran=$(FORTRAN_SONAME) \ itm=$(ITM_SONAME) objc=$(OBJC_SONAME) quadmath=$(QUADMATH_SONAME) \ go=$(GO_SONAME) backtrace=$(BTRACE_SONAME) \ atomic=$(ATOMIC_SONAME) asan=$(ASAN_SONAME) tsan=$(TSAN_SONAME) _soname = $(patsubst $(1)=%,%,$(filter $(1)=%,$(_soname_map))) # $(call _lib_name,,,) _lib_name = $(subst $(SPACE),, \ lib$(2)$(1) \ $(if $(filter dev,$(3)),,$(call _soname,$(1))) \ $(if $(or $(filter $(3),dev),$(and $(filter $(3),dbg),$(filter $(1),stdc++))),-$(BASE_VERSION)) \ $(if $(3),-$(3))$(LS)$(AQ)) # $(call _lib_vers,,) _lib_vers = ($(if $(filter $(1),dev),=,>=) $(2)) # Helper to generate biarch/triarch dependencies. # For example, $(eval $(call gen_multilib_deps,gomp)) will create the # libgompbiarch variable, and make it contains the libgompbiarch{32,64,n32} # variables if biarch{32,64,n32} is set to yes. define gen_multilib_deps lib$1biarch64$2 := $(call _lib_name,$(1),64,$(2)) $(call _lib_vers,$(2),$(3)) lib$1biarch32$2 := $(call _lib_name,$(1),32,$(2)) $(call _lib_vers,$(2),$(3)) lib$1biarchn32$2 := $(call _lib_name,$(1),n32,$(2)) $(call _lib_vers,$(2),$(3)) lib$1biarchx32$2 := $(call _lib_name,$(1),x32,$(2)) $(call _lib_vers,$(2),$(3)) lib$1biarchhf$2 := $(call _lib_name,$(1),hf,$(2)) $(call _lib_vers,$(2),$(3)) lib$1biarchsf$2 := $(call _lib_name,$(1),sf,$(2)) $(call _lib_vers,$(2),$(3)) ifeq ($$(biarch64),yes) lib$1biarch$2 := $$(lib$1biarch64$2) endif ifeq ($$(biarch32),yes) ifeq ($$(biarch64),yes) lib$1biarch$2 := $$(lib$1biarch64$2), $$(lib$1biarch32$2) else lib$1biarch$2 := $$(lib$1biarch32$2) endif endif ifeq ($$(biarchx32),yes) ifeq ($$(biarch64),yes) lib$1biarch$2 := $$(lib$1biarch64$2), $$(lib$1biarchx32$2) else ifeq ($$(biarch32),yes) lib$1biarch$2 := $$(lib$1biarch32$2), $$(lib$1biarchx32$2) else lib$1biarch$2 := $$(lib$1biarchx32$2) endif endif ifeq ($$(biarchn32),yes) ifeq ($$(biarch64),yes) lib$1biarch$2 := $$(lib$1biarch64$2), $$(lib$1biarchn32$2) else ifeq ($$(biarch32),yes) lib$1biarch$2 := $$(lib$1biarch32$2), $$(lib$1biarchn32$2) else lib$1biarch$2 := $$(lib$1biarchn32$2) endif endif ifeq ($$(biarchhf),yes) lib$1biarch$2 := $$(lib$1biarchhf$2) | $(call _lib_name,$(1),hf,$(2)) endif ifeq ($$(biarchsf),yes) lib$1biarch$2 := $$(lib$1biarchsf$2) | $(call _lib_name,$(1),sf,$(2)) endif endef ifeq ($(with_shared_libgcc),yes) LIBGCC_DEP := libgcc$(GCC_SONAME)$(LS)$(AQ) (>= $(DEB_LIBGCC_VERSION)) $(eval $(call gen_multilib_deps,gcc,,$(DEB_LIBGCC_VERSION))) endif $(foreach x,stdc++ gomp ssp gfortran itm objc atomic asan quadmath go, \ $(eval $(call gen_multilib_deps,$(x),,$$$${gcc:Version}))) $(foreach x,gcc stdc++ gfortran objc go, \ $(eval $(call gen_multilib_deps,$(x),dev,$$$${gcc:Version}))) $(foreach x,gcc stdc++ gfortran objc go, \ $(eval $(call gen_multilib_deps,$(x),dbg,$$$${gcc:Version}))) # Helper to generate _no_archs variables. # For example, $(eval $(call gen_no_archs,java)) will create the java_no_archs # variable, using the java_no_cpu and java_no_systems variables. define gen_no_archs $1_no_archs := ifneq (,$$($1_no_cpus)) $1_no_archs += $$(foreach cpu,$$(filter-out i386 amd64 alpha arm,$$($1_no_cpus)),!$$(cpu)) ifneq (,$$(filter i386,$$($1_no_cpus))) $1_no_archs += !i386 !hurd-i386 !kfreebsd-i386 endif ifneq (,$$(filter amd64,$$($1_no_cpus))) $1_no_archs += !amd64 !kfreebsd-amd64 endif ifneq (,$$(filter alpha,$$($1_no_cpus))) $1_no_archs += !alpha !hurd-alpha endif ifneq (,$$(filter arm,$$($1_no_cpus))) $1_no_archs += !arm !armel !armhf endif ifneq (,$$(strip $3)) $1_no_systems_tmp := $$(subst $$(SPACE)gnu$$(SPACE),$$(SPACE)hurd-gnu$$(SPACE),$$(SPACE)$3$$(SPACE)) $1_no_archs += $$(foreach cpu,$$($1_no_cpus),$$(foreach system,$$($1_no_systems_tmp),!$$(subst gnu,$$(cpu),$$(system)))) endif endif ifneq (,$$($1_no_systems)) $1_no_systems_tmp := $$(subst $$(SPACE)gnu$$(SPACE),$$(SPACE)hurd-gnu$$(SPACE),$$(SPACE)$$($1_no_systems)$$(SPACE)) $1_no_archs += $$(foreach system,$$($1_no_systems_tmp),$$(foreach cpu,$2,!$$(subst gnu,$$(cpu),$$(system)))) endif $1_no_archs := $$(strip $$($1_no_archs)) endef base_deb_cpus := amd64 i386 alpha base_deb_systems := $(foreach x,ada java java_plugin fortran libphobos libgc check locale,$(eval $(call gen_no_archs,$(x),$(base_deb_cpus),$(base_deb_systems)))) linux_no_archs := !hurd-any !kfreebsd-any GCC_VERSION := $(strip $(shell cat $(firstword $(wildcard $(srcdir)/gcc/FULL-VER $(srcdir)/gcc/BASE-VER)))) NEXT_GCC_VERSION := $(shell echo $(GCC_VERSION) | \ awk -F. '{OFS="."; if (NF==2) $$3=1; else $$NF += 1; print}') GCC_MAJOR_VERSION := $(shell echo $(GCC_VERSION) | sed -r 's/([0-9])\.[0-9]\.[0-9]/\1/') GCC_MINOR_VERSION := $(shell echo $(GCC_VERSION) | sed -r 's/[0-9]\.([0-9])\.[0-9]/\1/') GCC_RELEASE_VERSION := $(shell echo $(GCC_VERSION) | sed -r 's/[0-9]\.[0-9]\.([0-9])/\1/') NEXT_GCC_MAJOR_VERSION := $(shell expr $(echo $(GCC_MAJOR_VERSION)) + 1) NEXT_GCC_MINOR_VERSION := $(shell expr $(echo $(GCC_MINOR_VERSION)) + 1) NEXT_GCC_RELEASE_VERSION := $(shell expr $(echo $(GCC_MAJOR_VERSION)) + 1) ifeq ($(single_package),yes) BASE_VERSION := $(shell echo $(GCC_VERSION) | sed -e 's/\([1-9]\.[0-9]\).*/\1/') endif GCC_SOURCE_VERSION := $(shell echo $(DEB_VERSION) | sed 's/-.*//') NEXT_GCC_SOURCE_VERSION := $(shell echo $(GCC_SOURCE_VERSION) | \ awk -F. '{OFS="."; if (NF==2) $$3=1; else $$NF += 1; print}') MAINTAINER = Debian GCC Maintainers ifeq ($(distribution),Ubuntu) ifneq (,$(findstring $(PKGSOURCE),gnat gdc)) MAINTAINER = Ubuntu MOTU Developers else MAINTAINER = Ubuntu Core developers endif endif UPLOADERS = Matthias Klose ifneq (,$(findstring $(PKGSOURCE),gnat)) UPLOADERS = Ludovic Brenta endif ifneq (,$(findstring $(PKGSOURCE),gdc)) UPLOADERS = Iain Buclaw , Matthias Klose endif DPKGV = 1.14.15 ifeq ($(with_multiarch_lib),yes) DPKGV = 1.16.0~ubuntu4 endif ifeq ($(multiarch_stage1),yes) DPKGV = 1.16.0~ubuntu4 endif DPKG_BUILD_DEP = dpkg-dev (>= $(DPKGV)), # The binutils version needed. # The oldest suitable versions for the various platforms can be found in # INSTALL/specific.html ; we take a tighter dependency if possible to be on # the safe side (something like newest( version in stable, versions for the # various platforms in INSTALL/specific.html) ). # We need binutils (>= 2.19.1) for a new dwarf unwind expression opcode. # See http://gcc.gnu.org/ml/gcc-patches/2008-09/msg01713.html ifeq ($(trunk_build),yes) BINUTILSBDV = 2.23 else BINUTILSBDV = 2.22 ifneq (,$(filter $(distrelease),jessie sid saucy)) BINUTILSBDV = 2.23.52 endif endif ifeq ($(DEB_CROSS),yes) BINUTILS_BUILD_DEP = binutils$(TS) (>= $(BINUTILSBDV)), binutils-multiarch (>= $(BINUTILSBDV)) BINUTILSV := $(shell dpkg -l binutils$(TS) \ | awk '/^ii/{print $$3;exit}' | sed 's/-.*//') else BINUTILS_BUILD_DEP = binutils (>= $(BINUTILSBDV)) | binutils-multiarch (>= $(BINUTILSBDV)) ifeq ($(REVERSE_CROSS),yes) BINUTILSV := $(shell dpkg -l binutils$(TS) \ | awk '/^ii/{print $$3;exit}' | sed 's/-.*//') else BINUTILSV := $(shell dpkg -l binutils binutils-multiarch \ | awk '/^ii/{print $$3;exit}' | sed 's/-.*//') endif endif ifeq (,$(BINUTILSV)) BINUTILSV := $(BINUTILSBDV) endif # FIXME; stripping doesn't work with gold #BINUTILS_BUILD_DEP += , binutils-gold (>= $(BINUTILSV)) [$(gold_archs)] # libc-dev dependencies libc_ver := 2.11 libc_dev_ver := $(libc_ver) ifeq ($(with_multiarch_lib),yes) ifeq ($(derivative),Debian) libc_dev_ver := 2.13-5 #ifeq (,$(filter arm, $(go_no_cpus))) # libc_dev_ver := 2.13-31 #endif else libc_dev_ver := 2.13-0ubuntu6 endif endif ifeq ($(DEB_TARGET_ARCH_OS),linux) ifneq (,$(findstring $(DEB_TARGET_ARCH),alpha ia64)) LIBC_DEP = libc6.1 else LIBC_DEP = libc6 endif else ifeq ($(DEB_TARGET_ARCH_OS),hurd) LIBC_DEP = libc0.3 endif ifeq ($(DEB_TARGET_ARCH_OS),kfreebsd) LIBC_DEP = libc0.1 endif ifeq ($(DEB_TARGET_ARCH),uclibc) LIBC_DEP ?= libuclibc LIBC_DEV_DEP ?= libuclibc-dev endif endif LIBC_DEV_DEP = $(LIBC_DEP)-dev # for cross ifeq ($(DEB_CROSS),yes) LIBC_DEP ?= $(LIBC_DEP)$(LS)$(AQ) LIBC_DEV_DEP ?= $(LIBC_DEV_DEP)$(LS)$(AQ) else LIBC_DBG_DEP = libc6.1-dbg [alpha ia64] | libc0.3-dbg [hurd-i386] | libc0.1-dbg [kfreebsd-i386 kfreebsd-amd64] | libc6-dbg, endif # this is about Debian archs name, *NOT* GNU target triplet biarch_deb_map := \ i386=amd64 amd64=i386 \ mips=mips64 mipsel=mips64 \ powerpc=ppc64 ppc64=powerpc \ sparc=sparc64 sparc64=sparc\ s390=s390x s390x=s390 \ kfreebsd-amd64=i386 \ armel=armhf \ armhf=armel biarch_deb_arch := $(patsubst $(DEB_TARGET_ARCH)=%,%, \ $(filter $(DEB_TARGET_ARCH)=%,$(biarch_deb_map))) LIBC_BIARCH_DEP := LIBC_BIARCH_DEV_DEP := ifneq (,$(findstring yes,$(biarch64) $(biarch32) $(biarchn32) $(biarchx32)$(biarchhf)$(biarchsf))) LIBC_BIARCH_DEP := $${shlibs:Depends} LIBC_BIARCH_DEV_DEP := $(LIBC_DEV_DEP)-$(biarch_deb_arch)$(LS)$(AQ) (>= $(libc_ver)) # amd64, x32, i386 ifneq (,$(findstring $(DEB_TARGET_ARCH),amd64 x32 i386)) ifeq ($(biarch64)$(biarch32),yesyes) LIBC_BIARCH_DEV_DEP := $(LIBC_DEV_DEP)-amd64$(LS)$(AQ) (>= $(libc_ver)), $(LIBC_DEV_DEP)-i386$(LS)$(AQ) (>= $(libc_ver)) endif ifeq ($(biarch64)$(biarchx32),yesyes) LIBC_BIARCH_DEV_DEP := $(LIBC_DEV_DEP)-amd64$(LS)$(AQ) (>= $(libc_ver)), $(LIBC_DEV_DEP)-x32$(LS)$(AQ) (>= $(libc_ver)) endif ifeq ($(biarch32)$(biarchx32),yesyes) LIBC_BIARCH_DEV_DEP := $(LIBC_DEV_DEP)-i386$(LS)$(AQ) (>= $(libc_ver)), $(LIBC_DEV_DEP)-x32$(LS)$(AQ) (>= $(libc_ver)) endif endif # mips* ifneq (,$(findstring $(DEB_TARGET_ARCH),mips mipsel mipsn32 mipsn32el mips64 mips64el)) ifeq ($(biarchn32)$(biarch32),yesyes) LIBC_BIARCH_DEV_DEP := libc6-dev-mips32$(LS)$(AQ) (>= $(libc_ver)), libc6-dev-mipsn32$(LS)$(AQ) (>= $(libc_ver)) endif ifeq ($(biarch64)$(biarch32),yesyes) triarch := $(COMMA)$(SPACE) LIBC_BIARCH_DEV_DEP := libc6-dev-mips32$(LS)$(AQ) (>= $(libc_ver)), libc6-dev-mips64$(LS)$(AQ) (>= $(libc_ver)) endif ifeq ($(biarchn32)$(biarch64),yesyes) triarch := $(COMMA)$(SPACE) LIBC_BIARCH_DEV_DEP := libc6-dev-mips64$(LS)$(AQ) (>= $(libc_ver)), libc6-dev-mipsn32$(LS)$(AQ) (>= $(libc_ver)) endif endif ifeq ($(biarchhf),yes) LIBC_BIARCH_DEP := $(LIBC_DEP)-$(biarch_deb_arch)$(LS)$(AQ) (>= $(libc_ver)) LIBC_BIARCH_DEP += | $(LIBC_DEP)-$(biarch_deb_arch)$(LS)$(AQ) LIBC_BIARCH_DEV_DEP += | $(LIBC_DEV_DEP)-$(biarch_deb_arch)$(LS)$(AQ) endif ifeq ($(biarchsf),yes) LIBC_BIARCH_DEP := $(LIBC_DEP)-$(biarch_deb_arch)$(LS)$(AQ) (>= $(libc_ver)) LIBC_BIARCH_DEP += | $(LIBC_DEP)-$(biarch_deb_arch)$(LS)$(AQ) LIBC_BIARCH_DEV_DEP += | $(LIBC_DEV_DEP)-$(biarch_deb_arch)$(LS)$(AQ) endif endif # Add suffix and required version LIBC_DEV_DEP := $(LIBC_DEV_DEP)$(LS)$(AQ) (>= $(libc_dev_ver)) # TODO: make this automatic, there must be a better way to define LIBC_DEP. ifneq ($(DEB_CROSS),yes) LIBC_BUILD_DEP = libc6.1-dev (>= $(libc_dev_ver)) [alpha ia64] | libc0.3-dev (>= $(libc_dev_ver)) [hurd-i386] | libc0.1-dev (>= $(libc_dev_ver)) [kfreebsd-i386 kfreebsd-amd64] | libc6-dev (>= $(libc_dev_ver)) ifeq (,$(filter $(distrelease),lenny etch squeeze dapper hardy jaunty karmic lucid maverick natty oneiric)) LIBC_BUILD_DEP += , libc6-dev (>= 2.13-31) [armel armhf] endif LIBC_BIARCH_BUILD_DEP = libc6-dev-amd64 [i386 x32], libc6-dev-sparc64 [sparc], libc6-dev-sparc [sparc64], libc6-dev-s390 [s390x], libc6-dev-s390x [s390], libc6-dev-i386 [amd64 x32], libc6-dev-powerpc [ppc64], libc6-dev-ppc64 [powerpc], libc0.1-dev-i386 [kfreebsd-amd64], lib32gcc1 [amd64 ppc64 kfreebsd-amd64 mipsn32 mipsn32el mips64 mips64el s390x sparc64 x32], libn32gcc1 [mips mipsel mips64 mips64el], lib64gcc1 [i386 mips mipsel mipsn32 mipsn32el powerpc sparc s390 x32], libc6-dev-mips64 [mips mipsel mipsn32 mipsn32el], libc6-dev-mipsn32 [mips mipsel mips64 mips64el], libc6-dev-mips32 [mipsn32 mipsn32el mips64 mips64el], ifneq (,$(findstring amd64,$(biarchx32archs))) LIBC_BIARCH_BUILD_DEP += libc6-dev-x32 [amd64 i386], libx32gcc1 [amd64 i386], endif ifneq (,$(findstring armel,$(biarchhfarchs))) LIBC_BIARCH_BUILD_DEP += libc6-dev-armhf [armel], libhfgcc1 [armel], endif ifneq (,$(findstring armhf,$(biarchsfarchs))) LIBC_BIARCH_BUILD_DEP += libc6-dev-armel [armhf], libsfgcc1 [armhf], endif else LIBC_BUILD_DEP = $(LIBC_DEV_DEP), ifneq ($(LIBC_BIARCH_DEV_DEP),) LIBC_BIARCH_BUILD_DEP = $(LIBC_BIARCH_DEV_DEP), else LIBC_BIARCH_BUILD_DEP = endif endif # needed for the include/asm symlink to run the testsuite for # non default multilibs GCC_MULTILIB_BUILD_DEP = g++-multilib [$(multilib_archs)], LIBUNWIND_DEV_DEP := libunwind7-dev$(LS)$(AQ) (>= 0.98.5-6) LIBUNWIND_BUILD_DEP := $(LIBUNWIND_DEV_DEP) [ia64], LIBATOMIC_OPS_BUILD_DEP := libatomic-ops-dev$(LS) [ia64], ifneq ($(DEB_TARGET_ARCH),ia64) LIBUNWIND_DEV_DEP := # nothing endif ifneq (,$(filter $(distrelease),lenny etch squeeze dapper hardy jaunty karmic lucid maverick natty)) GMP_BUILD_DEP = libgmp3-dev | libgmp-dev (>= 2:5.0.1~), MPFR_BUILD_DEP = libmpfr-dev, else GMP_BUILD_DEP = libgmp-dev (>= 2:5.0.1~), MPFR_BUILD_DEP = libmpfr-dev (>= 3.0.0-9~), endif PPL_BUILD_DEP = libisl-dev, CLOOG_BUILD_DEP = libcloog-isl-dev (>= 0.18), # FIXME: currently not dl'opened. #CLOOG_RUNTIME_DEP = libisl10, libcloog-isl4 ifneq (,$(filter $(distrelease),lenny etch squeeze wheezy dapper hardy jaunty karmic lucid maverick natty oneiric precise quantal raring)) MPC_BUILD_DEP = libmpc-dev, else MPC_BUILD_DEP = libmpc-dev (>= 1.0), endif SOURCE_BUILD_DEP := ifeq (,$(findstring gcc,$(PKGSOURCE))) SOURCE_BUILD_DEP := gcc-$(BASE_VERSION)-source (>= $(GCC_SOURCE_VERSION)), gcc-$(BASE_VERSION)-source (<< $(NEXT_GCC_SOURCE_VERSION)), endif CHECK_BUILD_DEP := dejagnu [$(check_no_archs)], ifneq (,$(findstring gcc,$(PKGSOURCE))) CHECK_BUILD_DEP += autogen, endif AUTO_BUILD_DEP := m4, libtool, AUTO_BUILD_DEP += autoconf2.64, ifneq ($(DEB_CROSS),yes) JAVA_BUILD_DEP := zlib1g-dev, libantlr-java, python, libffi-dev, ifeq ($(PKGSOURCE),gcj-$(BASE_VERSION)) bd_java_archs = else ifeq ($(single_package)-$(with_java),yes-yes) bd_java_archs = else bd_java_archs = $(if $(java_no_archs),$(EMPTY) [$(java_no_archs)]) endif ifneq (,$(java_awt_peers)) JAVA_BUILD_DEP += fastjar$(bd_java_archs), libmagic-dev$(bd_java_archs), JAVA_BUILD_DEP += libecj-java (>= 3.3.0-2)$(bd_java_archs), zip$(bd_java_archs), ifeq ($(with_java_maintainer_mode),yes) # gcj-4.8 needed for gjavah-4.8. JAVA_BUILD_DEP += gcj-4.8$(bd_java_archs), ecj (>= 3.3.0-2)$(bd_java_archs), endif JAVA_BUILD_DEP += libasound2-dev [$(java_no_archs) $(linux_no_archs)], ifneq (,$(findstring gtk,$(java_awt_peers))) JAVA_BUILD_DEP += libxtst-dev$(bd_java_archs), libxt-dev$(bd_java_archs), libgtk2.0-dev (>= 2.4.4-2)$(bd_java_archs), libart-2.0-dev$(bd_java_archs), libcairo2-dev$(bd_java_archs), endif ifneq (,$(findstring qt,$(java_awt_peers))) JAVA_BUILD_DEP += libqt4-dev (>= 4.1.0)$(bd_java_archs), endif # gconf peer, disabled by default #JAVA_BUILD_DEP += libgconf2-dev$(bd_java_archs), # gstreamer peer #JAVA_BUILD_DEP += libgstreamer-plugins-base0.10-dev$(bd_java_archs), ifneq ($(single_package),yes) JAVA_BUILD_DEP += g++-4.8 [armel armhf], endif endif ifneq ($(with_standalone_gcj),yes) ifeq ($(PKGSOURCE),gcj-$(BASE_VERSION)) JAVA_BUILD_DEP += $(SOURCE_BUILD_DEP) endif endif #JAVA_BUILD_INDEP := gcj-$(BASE_VERSION)-jdk ifeq ($(single_package),yes) LIBSTDCXX_BUILD_INDEP = doxygen (>= 1.7.2), graphviz (>= 2.2), ghostscript, texlive-latex-base LIBSTDCXX_BUILD_INDEP +=, xsltproc, libxml2-utils, docbook-xsl-ns JAVA_BUILD_INDEP := endif ifeq ($(with_separate_libgcj),yes) ifeq ($(PKGSOURCE),gcc-$(BASE_VERSION)) JAVA_BUILD_DEP := JAVA_BUILD_INDEP := endif endif ifeq ($(with_ecj),yes) ifneq (./,$(dir $(ecj_jar))) ECJ_DEP = libecj-java (>= 3.5.1) endif else ECJ_DEP = ecj, libecj-java (>= 3.5.1) ECJ_DEP = ecj-gcj, libecj-java-gcj (>= 3.5.1) ifneq (,$(filter $(DEB_HOST_ARCH),arm armel armhf)) ECJ_DEP +=, ecj1 endif endif ifeq ($(PKGSOURCE),gcc-$(BASE_VERSION)) LIBSTDCXX_BUILD_INDEP = doxygen (>= 1.7.2), graphviz (>= 2.2), ghostscript, texlive-latex-base ifeq (,$(filter $(distrelease),lenny etch dapper hardy jaunty karmic lucid maverick natty oneiric)) LIBSTDCXX_BUILD_INDEP +=, xsltproc, libxml2-utils, docbook-xsl-ns endif JAVA_BUILD_INDEP :=, $(JAVA_BUILD_INDEP) endif # FIXME: needs zlib? GO_BUILD_DEP := g++-4.6, GO_BUILD_DEP := netbase, ifeq ($(PKGSOURCE),gcc-$(BASE_VERSION)) ifneq ($(with_separate_gnat),yes) # Build gnat as part of the combiled gcc-x.y source package. Do not fail # if gnat is not present on unsupported architectures; the build scripts # will not use gnat anyway. #GNAT_BUILD_DEP := gnat (>= 4.1) [$(ada_no_archs)], GNAT_BUILD_DEP := gnat (>= 4.1) [!arm !armhf !arm64 !powerpcspe !ppc64el !sh4 !sparc64 !hurd-i386], endif else ifeq ($(single_package),yes) # Ditto, as part of the gcc-snapshot package. # FIXME: ad hoc dependency, better fix setting of ada_no_archs #GNAT_BUILD_DEP := gnat (>= 4.1) [$(ada_no_archs)], gcc-snapshot (>= 20090821-1) [armel armhf], GNAT_BUILD_DEP := gnat (>= 4.1) [!arm !armhf !arm64 !powerpcspe !ppc64el !sh4 !sparc64 !hurd-i386], else ifeq ($(PKGSOURCE),gnat-$(BASE_VERSION)) # Special source package just for gnat. Fail early if gnat is not present, # rather than waste CPU cycles and fail later. GNAT_BUILD_DEP := gnat (>= 4.1), g++-$(BASE_VERSION), libstdc++-$(BASE_VERSION)-dev, GNAT_BUILD_DEP += $(SOURCE_BUILD_DEP) JAVA_BUILD_DEP := JAVA_BUILD_INDEP := GDC_BUILD_DEP := GO_BUILD_DEP := else ifeq ($(PKGSOURCE),gcj-$(BASE_VERSION)) # Special source package just for gcj. GNAT_BUILD_DEP := GDC_BUILD_DEP := GO_BUILD_DEP := else ifeq ($(PKGSOURCE),gdc-$(BASE_VERSION)) # Special source package just for gdc. GNAT_BUILD_DEP := JAVA_BUILD_DEP := JAVA_BUILD_INDEP := GDC_BUILD_DEP := $(SOURCE_BUILD_DEP) GO_BUILD_DEP := else ifeq ($(PKGSOURCE),gccgo-$(BASE_VERSION)) # Special source package just for gccgo. GNAT_BUILD_DEP := JAVA_BUILD_DEP := JAVA_BUILD_INDEP := GDC_BUILD_DEP := $(SOURCE_BUILD_DEP) endif else # build cross compiler CROSS_BUILD_DEP := libc6-dev$(cross_lib_arch), ifeq ($(REVERSE_CROSS),yes) CROSS_BUILD_DEP += zlib1g-dev$(cross_lib_arch), libmpfr-dev$(cross_lib_arch), endif SOURCE_BUILD_DEP := ifeq (,$(findstring gcc,$(PKGSOURCE))) SOURCE_BUILD_DEP := gcc-$(BASE_VERSION)-source (>= $(GCC_SOURCE_VERSION)), gcc-$(BASE_VERSION)-source (<< $(NEXT_GCC_SOURCE_VERSION)), endif ifeq ($(with_java),yes) JAVA_BUILD_DEP := zlib1g-dev, lib64z1-dev [i386 powerpc sparc s390], lib32z1-dev [amd64 ppc64 kfreebsd-amd64 s390x], endif JAVA_BUILD_INDEP := GNAT_BUILD_DEP := endif # cross compiler # The numeric part of the gcc version number (x.yy.zz) NEXT_GCC_VERSION := $(shell echo $(GCC_VERSION) | \ awk -F. '{OFS="."; if (NF==2) $$3=1; else $$NF += 1; print}') # first version with a new path component in gcc_lib_dir (i.e. GCC_VERSION # or TARGET_ALIAS changes), or last version available for all architectures DEB_GCC_SOFT_VERSION := 4.8 DEB_GCJ_SOFT_VERSION := 4.8 ifeq ($(with_d),yes) GDC_VERSION := $(BASE_VERSION) DEB_GDC_VERSION := $(DEB_VERSION) endif # semiautomatic ... DEB_SOVERSION := $(DEB_VERSION) DEB_SOVERSION := 4.8 DEB_SOEVERSION := $(EPOCH):4.8 DEB_STDCXX_SOVERSION := 4.8 DEB_GCJ_SOVERSION := 4.8 DEB_GOMP_SOVERSION := $(DEB_SOVERSION) DEB_GCCMATH_SOVERSION := $(DEB_SOVERSION) DEB_GCC_VERSION := $(DEB_VERSION) DEB_GCJ_VERSION := $(DEB_VERSION) ifeq ($(with_separate_libgcj),yes) ifeq ($(PKGSOURCE),gcj-$(BASE_VERSION)) DEB_GCC_VERSION := $(DEB_GCC_SOFT_VERSION) endif endif DEB_GNAT_VERSION := $(DEB_VERSION) ifeq ($(with_separate_gnat),yes) ifeq ($(PKGSOURCE),gnat-$(BASE_VERSION)) DEB_GCC_VERSION := $(DEB_GCC_SOFT_VERSION) endif endif GNAT_VERSION := $(BASE_VERSION) LIBGNAT_DEP := ifeq ($(with_libgnat),yes) LIBGNAT_DEP := libgnat-$(GNAT_VERSION) (= $(DEB_VERSION)) endif pkg_ver := -$(BASE_VERSION) PKG_GCJ_EXT = $(GCJ_SONAME1) PKG_LIBGCJ_EXT = $(GCJ_SONAME1)$(if $(GCJ_SONAME2),-$(GCJ_SONAME2)) ctrl_flags = \ -DBINUTILSV=$(BINUTILSV) \ -DBINUTILSBDV=$(BINUTILSBDV) \ -DSRCNAME=$(PKGSOURCE) \ -D__$(DEB_TARGET_GNU_CPU)__ \ -DARCH=$(DEB_TARGET_ARCH) \ -DDIST=$(distribution) ctrl_flags += \ -DLIBC_DEV_DEP="$(LIBC_DEV_DEP)" \ -DLIBC_BIARCH_BUILD_DEP="$(LIBC_BIARCH_BUILD_DEP)" \ -DLIBC_DBG_DEP="$(LIBC_DBG_DEP)" \ -DFORTRAN_BUILD_DEP="$(FORTRAN_BUILD_DEP)" \ -DGNAT_BUILD_DEP="$(GNAT_BUILD_DEP)" \ -DJAVA_BUILD_DEP="$(JAVA_BUILD_DEP)" \ -DGO_BUILD_DEP="$(GO_BUILD_DEP)" \ -DJAVA_BUILD_INDEP="$(JAVA_BUILD_INDEP)" \ -DLIBSTDCXX_BUILD_INDEP="$(LIBSTDCXX_BUILD_INDEP)" \ -DGDC_BUILD_DEP="$(GDC_BUILD_DEP)" \ -DBINUTILS_BUILD_DEP="$(BINUTILS_BUILD_DEP)" \ -DLIBC_BUILD_DEP="$(LIBC_BUILD_DEP)" \ -DCHECK_BUILD_DEP="$(CHECK_BUILD_DEP)" \ -DAUTO_BUILD_DEP="$(AUTO_BUILD_DEP)" \ -DAUTOGEN_BUILD_DEP="$(AUTOGEN_BUILD_DEP)" \ -DCLOOG_BUILD_DEP="$(CLOOG_BUILD_DEP)" \ -DGMP_BUILD_DEP="$(GMP_BUILD_DEP)" \ -DMPFR_BUILD_DEP="$(MPFR_BUILD_DEP)" \ -DMPC_BUILD_DEP="$(MPC_BUILD_DEP)" \ -DDPKG_BUILD_DEP="$(DPKG_BUILD_DEP)" \ -DSOURCE_BUILD_DEP="$(SOURCE_BUILD_DEP)" \ -DCROSS_BUILD_DEP="$(CROSS_BUILD_DEP)" \ -DGCC_MULTILIB_BUILD_DEP='$(GCC_MULTILIB_BUILD_DEP)' \ -DMULTILIB_ARCHS="$(multilib_archs)" \ -DNEON_ARCHS="$(neon_archs)" \ -DTP=$(TP) \ -DTS=$(TS) \ -DLS=$(LS) \ -DAQ=$(AQ) ifeq ($(DEB_CROSS),yes) ctrl_flags += \ -DTARGET=$(DEB_TARGET_ARCH) \ -DLIBUNWIND_BUILD_DEP="$(LIBUNWIND_BUILD_DEP)" \ -DLIBATOMIC_OPS_BUILD_DEP="$(LIBATOMIC_OPS_BUILD_DEP)" ifeq ($(with_deps_on_target_arch_pkgs),yes) ctrl_flags += -DCROSS_ARCH=$(DEB_TARGET_ARCH) endif else # add '-DPRI=optional' to ctrl_flags if this is not the default compiler # ctrl_flags += \ # -DPRI=optional endif ifeq ($(with_base_only),yes) ctrl_flags += \ -DBASE_ONLY=yes endif ifeq ($(with_multiarch_lib),yes) ctrl_flags += \ -DMULTIARCH=yes endif control: control-file readme-bugs-file parameters-file symbols-files copyright-file substvars-file versioned-files check-versions # stage1 and stage2 compilers are only C ifdef DEB_STAGE languages = c addons = cdev plugindev ifeq ($(multilib),yes) addons += multilib endif addons += $(if $(findstring armel,$(biarchhfarchs)),armml) addons += $(if $(findstring armhf,$(biarchsfarchs)),armml) ifeq ($(DEB_STAGE),stage2) addons += libgcc gccxbase ifeq ($(multilib),yes) addons += lib32gcc lib64gcc libn32gcc addons += $(if $(findstring amd64,$(biarchx32archs)),libx32gcc) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfgcc) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfgcc) endif endif else languages = c c++ fortran objc objpp ifeq ($(with_gccbase),yes) addons += gccbase endif ifeq ($(with_gccxbase),yes) addons += gccxbase endif addons += cdev c++dev fdev objcdev source objppdev multilib addons += plugindev addons += $(if $(findstring armel,$(biarchhfarchs)),armml) addons += $(if $(findstring armhf,$(biarchsfarchs)),armml) addons += $(if $(findstring amd64,$(biarchx32archs)),x32dev) ifeq ($(with_libgcc),yes) addons += libgcc lib4gcc lib32gcc lib64gcc libn32gcc addons += $(if $(findstring amd64,$(biarchx32archs)),libx32gcc) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfgcc) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfgcc) endif ifeq ($(with_libcxx),yes) addons += libcxx lib32cxx lib64cxx libn32cxx addons += $(if $(findstring amd64,$(biarchx32archs)),libx32cxx) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfcxx) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfcxx) endif addons += $(if $(findstring amd64,$(biarchx32archs)),libx32dbgcxx) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfdbgcxx) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfdbgcxx) ifeq ($(with_libgfortran),yes) addons += libgfortran lib32gfortran lib64gfortran libn32gfortran addons += $(if $(findstring amd64,$(biarchx32archs)),libx32gfortran) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfgfortran) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfgfortran) endif ifeq ($(with_libobjc),yes) addons += libobjc lib32objc lib64objc libn32objc addons += $(if $(findstring amd64,$(biarchx32archs)),libx32objc) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfobjc) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfobjc) endif ifeq ($(with_libgomp),yes) addons += libgomp lib32gomp lib64gomp libn32gomp addons += $(if $(findstring amd64,$(biarchx32archs)),libx32gomp) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfgomp) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfgomp) endif ifeq ($(with_libitm),yes) addons += libitm lib32itm lib64itm libn32itm addons += $(if $(findstring amd64,$(biarchx32archs)),libx32itm) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfitm) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfitm) endif ifeq ($(with_libatomic),yes) addons += libatomic lib32atomic lib64atomic libn32atomic addons += $(if $(findstring amd64,$(biarchx32archs)),libx32atomic) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfatomic) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfatomic) endif ifeq ($(with_libbacktrace),yes) addons += libbtrace lib32btrace lib64btrace libn32btrace addons += $(if $(findstring amd64,$(biarchx32archs)),libx32btrace) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfbtrace) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfbtrace) endif ifeq ($(with_libasan),yes) addons += libasan lib32asan lib64asan libn32asan addons += $(if $(findstring amd64,$(biarchx32archs)),libx32asan) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfasan) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfasan) endif addons += libtsan ifeq ($(with_libtsan),yes) addons += libtsan #lib32tsan lib64tsan libn32tsan #addons += $(if $(findstring amd64,$(biarchx32archs)),libx32tsan) #addons += $(if $(findstring armel,$(biarchhfarchs)),libhftsan) #addons += $(if $(findstring armhf,$(biarchsfarchs)),libsftsan) endif ifeq ($(with_libqmath),yes) addons += libqmath lib32qmath lib64qmath libn32qmath addons += $(if $(findstring amd64,$(biarchx32archs)),libx32qmath) addons += $(if $(findstring armel,$(biarchhfarchs)),libhfqmath) addons += $(if $(findstring armhf,$(biarchsfarchs)),libsfqmath) endif ifeq ($(with_d),yes) languages += d ifeq ($(with_libphobos),yes) addons += libphobos endif endif ifeq ($(with_go),yes) addons += ggo godev ifeq ($(with_libgo),yes) addons += libggo lib32ggo lib64ggo libn32ggo addons += $(if $(findstring amd64,$(biarchx32archs)),libx32ggo) endif endif languages += ada addons += libgnat libs source # libgmath libnof lib64gnat ssp languages += java addons += gcj ifneq ($(DEB_CROSS),yes) addons += libgcj libgcjdev gcjdoc gcjsrc endif ifneq ($(DEB_CROSS),yes) ifneq (,$(neon_archs)) addons += libneongcc libneongomp libneonitm libneonobjc libneongfortran libneoncxx endif ifeq ($(with_fixincl),yes) addons += fixincl endif ifeq ($(with_libgcj_doc),yes) addons += gcjdoc endif endif # DEB_CROSS # ifneq (,$(findstring gtk, $(java_awt_peers))) # addons += gtkpeer # endif # ifneq (,$(findstring qt, $(java_awt_peers))) # addons += qtpeer # endif ifeq ($(with_separate_libgcj),yes) ifeq ($(PKGSOURCE),gcc-$(BASE_VERSION)) languages := $(filter-out java,$(languages)) addons := $(filter-out gcj libgcj libgcjdev gcjdoc gcjsrc gtkpeer qtpeer,$(addons)) endif ifeq ($(PKGSOURCE),gcj-$(BASE_VERSION)) languages = java addons = gcj libgcj libgcjdev gcjsrc addons += $(if $(filter yes,$(with_gcjbase)),gcjbase) addons += $(if $(filter yes,$(with_gcjxbase)),gcjxbase) ifeq ($(with_libgcj_doc),yes) addons += gcjdoc endif # ifneq (,$(findstring gtk, $(java_awt_peers))) # addons += gtkpeer # endif # ifneq (,$(findstring qt, $(java_awt_peers))) # addons += qtpeer # endif ifeq ($(with_standalone_gcj),yes) addons += libgcc lib4gcc lib64gcc lib32gcc libn32gcc libx32gcc endif endif endif ifeq ($(DEB_CROSS),yes) addons := $(filter-out gcjdoc gcjsrc,$(addons)) endif ifeq ($(with_standalone_gcj),yes) ifeq ($(PKGSOURCE),gcj-$(BASE_VERSION)) ctrl_flags += -DSTANDALONEJAVA endif endif ifeq ($(with_separate_libgo),yes) ifeq ($(PKGSOURCE),gcc-$(BASE_VERSION)) languages := $(filter-out go,$(languages)) addons := $(filter-out ggo godev libggo lib64ggo lib32ggo libn32ggo libx32ggo,$(addons)) endif ifeq ($(PKGSOURCE),gccgo-$(BASE_VERSION)) languages = go addons = ggo godev libggo lib64ggo lib32ggo libn32ggo gccbase multilib addons += $(if $(findstring amd64,$(biarchx32archs)),libx32ggo) # FIXME: use the convenience libgcc ... #ifeq ($(with_standalone_go),yes) # addons += libgcc lib4gcc lib64gcc lib32gcc libn32gcc libx32gcc #endif endif endif ifeq ($(with_standalone_go),yes) ifeq ($(PKGSOURCE),gccgo-$(BASE_VERSION)) ctrl_flags += -DSTANDALONEGO endif endif ifeq ($(with_separate_gnat),yes) ifeq ($(PKGSOURCE),gcc-$(BASE_VERSION)) languages := $(filter-out ada,$(languages)) addons := $(filter-out libgnat,$(addons)) endif ifeq ($(PKGSOURCE),gnat-$(BASE_VERSION)) languages = ada addons = libgnat endif endif ifeq ($(with_separate_gdc),yes) ifeq ($(PKGSOURCE),gcc-$(BASE_VERSION)) languages := $(filter-out d,$(languages)) endif ifeq ($(PKGSOURCE),gdc-$(BASE_VERSION)) languages = d addons = ifeq ($(with_libphobos),yes) addons += libphobos endif endif endif ifneq ($(DEB_CROSS),yes) # no docs for cross compilers ifneq ($(GFDL_INVARIANT_FREE),yes) addons += gfdldoc endif endif endif # not stage control-file: echo "addons: $(addons)"; \ m4 $(ctrl_flags) \ -DPV=$(pkg_ver) \ -DCXX_SO=$(CXX_SONAME) \ -DGCC_SO=$(GCC_SONAME) \ -DOBJC_SO=$(OBJC_SONAME) \ -DFORTRAN_SO=$(FORTRAN_SONAME) \ -DGCJ_SO=$(PKG_GCJ_EXT) \ -DLIBGCJ_EXT=$(PKG_LIBGCJ_EXT) \ -DGNAT_SO=$(GNAT_SONAME) \ -DGNAT_V=$(GNAT_VERSION) \ -DPHOBOS_V=$(libphobos_version) \ -DGOMP_SO=$(GOMP_SONAME) \ -DGCCMATH_SO=$(GCCMATH_SONAME) \ -DITM_SO=$(ITM_SONAME) \ -DATOMIC_SO=$(ATOMIC_SONAME) \ -DBTRACE_SO=$(BTRACE_SONAME) \ -DASAN_SO=$(ASAN_SONAME) \ -DTSAN_SO=$(TSAN_SONAME) \ -DQMATH_SO=$(QUADMATH_SONAME) \ -DSSP_SO=$(SSP_SONAME) \ -DGO_SO=$(GO_SONAME) \ -Denabled_languages="$(languages) $(addons)" \ -Dada_no_archs="$(ada_no_archs)" \ -Djava_no_archs="$(java_no_archs)" \ -Dfortran_no_archs="$(fortran_no_archs)" \ -Dlibgc_no_archs="$(libgc_no_archs)" \ -Dlibphobos_archs="$(libphobos_archs)" \ -Dlibphobos_no_archs="$(libphobos_no_archs)" \ -Dcheck_no_archs="$(check_no_archs)" \ -Dlocale_no_archs="$(locale_no_archs)" \ -Dlinux_gnu_archs="$(linux_gnu_archs)" \ -Dbiarch32_archs="$(strip $(subst /, ,$(biarch32archs)))" \ -Dbiarch64_archs="$(strip $(subst /, ,$(biarch64archs)))" \ -Dbiarchn32_archs="$(strip $(subst /, ,$(biarchn32archs)))" \ -Dbiarchx32_archs="$(strip $(subst /, ,$(biarchx32archs)))" \ -Dbiarchhf_archs="$(strip $(subst /, ,$(biarchhfarchs)))" \ -Dbiarchsf_archs="$(strip $(subst /, ,$(biarchsfarchs)))" \ -Dadd_built_using=$(add_built_using) \ debian/control.m4 > debian/control.tmp2 uniq debian/control.tmp2 | sed '/^Build/s/ *, */, /g;/^ /s/ *, */, /g' \ > debian/control.tmp rm -f debian/control.tmp2 [ -e debian/control ] \ && cmp -s debian/control debian/control.tmp \ && rm -f debian/control.tmp && exit 0; \ mv debian/control.tmp debian/control; touch $(control_stamp) readme-bugs-file: m4 -DDIST=$(distribution) -DSRCNAME=$(PKGSOURCE) \ debian/README.Bugs.m4 > debian/README.Bugs copyright-file: rm -f debian/copyright if echo $(SOURCE_VERSION) | grep -E ^'[0-9]\.[0-9]-[0-9]{8}' ; \ then SVN_BRANCH="trunk" ; \ else \ SVN_BRANCH="gcc-$(subst .,_,$(BASE_VERSION))-branch" ; \ fi ; \ sed debian/copyright.in \ -e "s/@BV@/$(BASE_VERSION)/g" \ -e "s/@SVN_BRANCH@/$$SVN_BRANCH/g" \ > debian/copyright substvars-file: rm -f debian/substvars.local.tmp ( \ echo 'libgcc:Version=$(DEB_LIBGCC_VERSION)'; \ echo 'gcc:Version=$(DEB_GCC_VERSION)'; \ echo 'gcc:EpochVersion=$(DEB_EVERSION)'; \ echo 'gcc:SoftVersion=$(DEB_GCC_SOFT_VERSION)'; \ echo 'gdc:Version=$(DEB_GDC_VERSION)'; \ echo 'gcj:Version=$(DEB_GCJ_VERSION)'; \ echo 'gcj:SoftVersion=$(DEB_GCJ_SOFT_VERSION)'; \ echo 'gcj:BaseVersion=$(BASE_VERSION)'; \ echo 'gnat:Version=$(DEB_GNAT_VERSION)'; \ echo 'binutils:Version=$(BINUTILSV)'; \ echo 'dep:libgcc=$(LIBGCC_DEP)'; \ echo 'dep:libgccbiarch=$(libgccbiarch)'; \ echo 'dep:libgccbiarchdev=$(libgccbiarchdev)'; \ echo 'dep:libc=$(LIBC_DEP) (>= $(libc_ver))'; \ echo 'dep:libcdev=$(LIBC_DEV_DEP)'; \ echo 'dep:libcbiarch=$(LIBC_BIARCH_DEP)'; \ echo 'dep:libcbiarchdev=$(LIBC_BIARCH_DEV_DEP)'; \ echo 'dep:libunwinddev=$(LIBUNWIND_DEV_DEP)'; \ echo 'dep:libcxxbiarchdev=$(libstdc++biarchdev)'; \ echo 'dep:libcxxbiarchdbg=$(libstdc++biarchdbg)'; \ echo 'dep:libgnat=$(LIBGNAT_DEP)'; \ echo 'dep:ecj=$(ECJ_DEP)'; \ echo 'dep:libcloog=$(CLOOG_RUNTIME_DEP)'; \ ) > debian/substvars.local.tmp ifneq (,$(filter $(DEB_TARGET_ARCH), $(multilib_archs))) ( \ echo 'gcc:multilib=gcc-$(BASE_VERSION)-multilib$(TS)'; \ echo 'gxx:multilib=g++-$(BASE_VERSION)-multilib$(TS)'; \ echo 'gobjc:multilib=gobjc-$(BASE_VERSION)-multilib$(TS)'; \ echo 'gobjcxx:multilib=gobjc++-$(BASE_VERSION)-multilib$(TS)'; \ echo 'gfortran:multilib=gfortran-$(BASE_VERSION)-multilib$(TS)'; \ ) >> debian/substvars.local.tmp endif ifeq ($(with_gold),yes) echo 'dep:gold=binutils-gold (>= $(BINUTILSV))' \ >> debian/substvars.local.tmp endif ifeq ($(with_libssp),yes) echo 'dep:libssp=libssp$(SSP_SONAME)$(LS)$(AQ) (>= $${gcc:Version})' \ >> debian/substvars.local.tmp endif ifeq ($(with_gomp),yes) echo 'dep:libgomp=libgomp$(GOMP_SONAME)$(LS)$(AQ) (>= $${gcc:Version})' \ >> debian/substvars.local.tmp endif ifeq ($(with_itm),yes) echo 'dep:libitm=libitm$(ITM_SONAME)$(LS)$(AQ) (>= $${gcc:Version})' \ >> debian/substvars.local.tmp endif ifeq ($(with_atomic),yes) echo 'dep:libatomic=libatomic$(ATOMIC_SONAME)$(LS)$(AQ) (>= $${gcc:Version})' \ >> debian/substvars.local.tmp endif ifeq ($(with_libbacktrace),yes) echo 'dep:libbacktrace=libbtrace$(BTRACE_SONAME)$(LS)$(AQ) (>= $${gcc:Version})' \ >> debian/substvars.local.tmp endif ifeq ($(with_asan),yes) echo 'dep:libasan=libasan$(ASAN_SONAME)$(LS)$(AQ) (>= $${gcc:Version})' \ >> debian/substvars.local.tmp endif ifeq ($(with_tsan),yes) echo 'dep:libtsan=libtsan$(TSAN_SONAME)$(LS)$(AQ) (>= $${gcc:Version})' \ >> debian/substvars.local.tmp endif ifeq ($(with_qmath),yes) echo 'dep:libqmath=libquadmath$(QUADMATH_SONAME)$(LS)$(AQ) (>= $${gcc:Version})' \ >> debian/substvars.local.tmp endif ifeq ($(multilib),yes) echo 'dep:libgfortranbiarchdev=$(libgfortranbiarchdev)' \ >> debian/substvars.local.tmp echo 'dep:libobjcbiarchdev=$(libobjcbiarchdev)' \ >> debian/substvars.local.tmp ifeq ($(with_libssp),yes) echo 'dep:libsspbiarch=$(libsspbiarch)' \ >> debian/substvars.local.tmp endif ifeq ($(with_gomp),yes) echo 'dep:libgompbiarch=$(libgompbiarch)' \ >> debian/substvars.local.tmp endif ifeq ($(with_itm),yes) echo 'dep:libitmbiarch=$(libitmbiarch)' \ >> debian/substvars.local.tmp endif ifeq ($(with_atomic),yes) echo 'dep:libatomicbiarch=$(libatomicbiarch)' \ >> debian/substvars.local.tmp endif ifeq ($(with_libbacktrace),yes) echo 'dep:libbtracebiarch=$(libbtracebiarch)' \ >> debian/substvars.local.tmp endif ifeq ($(with_asan),yes) echo 'dep:libasanbiarch=$(libasanbiarch)' \ >> debian/substvars.local.tmp endif ifeq ($(with_tsan),yes) #echo 'dep:libtsanbiarch=$(libtsanbiarch)' \ # >> debian/substvars.local.tmp endif ifeq ($(with_qmath),yes) echo 'dep:libqmathbiarch=$(libquadmathbiarch)' \ >> debian/substvars.local.tmp endif ifeq ($(with_go),yes) echo 'dep:libgobiarchdev=$(libgobiarchdev)' \ >> debian/substvars.local.tmp echo 'dep:libgobiarch=$(libgobiarch)' \ >> debian/substvars.local.tmp endif endif ifneq ($(with_standalone_gcj),yes) ifneq (,$(filter $(DEB_HOST_ARCH),armel armhf)) echo 'dep:gcj=g++$(pkg_ver) (>= $(DEB_GCC_SOFT_VERSION))' \ >> debian/substvars.local.tmp else echo 'dep:gcj=gcc$(pkg_ver) (>= $(DEB_GCC_SOFT_VERSION))' \ >> debian/substvars.local.tmp endif ifeq ($(DEB_CROSS),yes) echo 'dep:gcjcross=gcj$(pkg_ver) (>= $(DEB_GCC_SOFT_VERSION))' \ >> debian/substvars.local.tmp endif endif ifeq ($(DEB_CROSS),yes) echo 'dep:gdccross=gdc$(pkg_ver) (>= $(DEB_GCC_SOFT_VERSION))' \ >> debian/substvars.local.tmp endif ifeq ($(with_libphobos),yes) ifeq ($(DEB_CROSS),yes) echo 'dep:gdccross=gdc$(pkg_ver) (>= $(DEB_GCC_SOFT_VERSION))' \ >> debian/substvars.local.tmp else echo 'dep:phobosdev=libphobos$(pkg_ver)-dev (>= $(DEB_GCC_SOFT_VERSION))' \ >> debian/substvars.local.tmp endif endif #ifneq (,$(findstring gtk, $(java_awt_peers))) # echo 'pkg:gcjgtk=libgcj$(subst 0,,$(GCJ_SONAME))-awt-gtk (>= $(DEB_GCJ_VERSION))' \ # >> debian/substvars.local.tmp #endif #ifneq (,$(findstring qt, $(java_awt_peers))) # echo 'pkg:gcjqt=libgcj$(subst 0,,$(GCJ_SONAME))-awt-qt (>= $(DEB_GCJ_VERSION))' \ # >> debian/substvars.local.tmp #endif ifeq ($(DEB_HOST_ARCH),hppa) echo 'dep:prctl=prctl' >> debian/substvars.local.tmp endif ifeq ($(derivative)-$(DEB_HOST_ARCH),Debian-amd64) echo 'confl:lib32=libc6-i386 (<< 2.9-22)' >> debian/substvars.local.tmp endif ifeq ($(with_multiarch_lib),yes) echo 'multiarch:breaks=gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2)' >> debian/substvars.local.tmp endif ifeq ($(add_built_using),yes) echo "Built-Using=$(shell dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W gcc$(pkg_ver)-source)" \ >> debian/substvars.local.tmp endif v=`sed -n '/^#define MOD_VERSION/s/.* "\([0-9]*\)"/\1/p' \ $(srcdir)/gcc/fortran/module.c`; \ echo "fortran:mod-version=gfortran-mod-$$v" >> debian/substvars.local.tmp [ -e debian/substvars.local ] \ && cmp -s debian/substvars.local debian/substvars.local.tmp \ && rm -f debian/substvars.local.tmp && exit 0; \ mv debian/substvars.local.tmp debian/substvars.local; \ touch $(control_stamp) parameters-file: rm -f debian/rules.parameters.tmp ( \ echo '# configuration parameters taken from upstream source files'; \ echo 'GCC_VERSION := $(GCC_VERSION)'; \ echo 'NEXT_GCC_VERSION := $(NEXT_GCC_VERSION)'; \ echo 'BASE_VERSION := $(BASE_VERSION)'; \ echo 'SOURCE_VERSION := $(SOURCE_VERSION)'; \ echo 'DEB_VERSION := $(DEB_VERSION)'; \ echo 'DEB_EVERSION := $(DEB_EVERSION)'; \ echo 'DEB_GDC_VERSION := $(DEB_GDC_VERSION)'; \ echo 'DEB_SOVERSION := $(DEB_SOVERSION)'; \ echo 'DEB_SOEVERSION := $(DEB_SOEVERSION)'; \ echo 'DEB_LIBGCC_SOVERSION := $(DEB_LIBGCC_SOVERSION)'; \ echo 'DEB_LIBGCC_VERSION := $(DEB_LIBGCC_VERSION)'; \ echo 'DEB_STDCXX_SOVERSION := $(DEB_STDCXX_SOVERSION)'; \ echo 'DEB_GCJ_SOVERSION := $(DEB_GCJ_SOVERSION)'; \ echo 'PKG_GCJ_EXT := $(PKG_GCJ_EXT)'; \ echo 'PKG_LIBGCJ_EXT := $(PKG_LIBGCJ_EXT)'; \ echo 'DEB_GOMP_SOVERSION := $(DEB_GOMP_SOVERSION)'; \ echo 'DEB_GCCMATH_SOVERSION := $(DEB_GCCMATH_SOVERSION)'; \ echo 'GCC_SONAME := $(GCC_SONAME)'; \ echo 'CXX_SONAME := $(CXX_SONAME)'; \ echo 'FORTRAN_SONAME := $(FORTRAN_SONAME)'; \ echo 'OBJC_SONAME := $(OBJC_SONAME)'; \ echo 'GCJ_SONAME := $(GCJ_SONAME)'; \ echo 'GDC_VERSION := $(GDC_VERSION)'; \ echo 'GNAT_VERSION := $(GNAT_VERSION)'; \ echo 'GNAT_SONAME := $(GNAT_SONAME)'; \ echo 'FFI_SONAME := $(FFI_SONAME)'; \ echo 'SSP_SONAME := $(SSP_SONAME)'; \ echo 'GOMP_SONAME := $(GOMP_SONAME)'; \ echo 'ITM_SONAME := $(ITM_SONAME)'; \ echo 'ATOMIC_SONAME := $(ATOMIC_SONAME)'; \ echo 'BTRACE_SONAME := $(BTRACE_SONAME)'; \ echo 'ASAN_SONAME := $(ASAN_SONAME)'; \ echo 'TSAN_SONAME := $(TSAN_SONAME)'; \ echo 'QMATH_SONAME := $(QUADMATH_SONAME)'; \ echo 'GCCMATH_SONAME := $(GCCMATH_SONAME)'; \ echo 'GO_SONAME := $(GO_SONAME)'; \ echo 'LIBC_DEP := $(LIBC_DEP)'; \ ) > debian/rules.parameters.tmp [ -e debian/rules.parameters ] \ && cmp -s debian/rules.parameters debian/rules.parameters.tmp \ && rm -f debian/rules.parameters.tmp && exit 0; \ mv debian/rules.parameters.tmp debian/rules.parameters; \ touch $(control_stamp) symbols-files: ifeq ($(DEB_CROSS),yes) ifneq ($(with_deps_on_target_arch_pkgs),yes) for f in debian/*.symbols; do \ [ -f "$$f" ] || continue; \ [ -L "$$f" ] && continue; \ b=$$(basename $$f .symbols); \ ln -sf $$f debian/$$b$(LS).symbols; \ done for f in debian/*.symbols.$(DEB_TARGET_ARCH); do \ [ -f "$$f" ] || continue; \ [ -L "$$f" ] && continue; \ b=$$(basename $$f .symbols.$(DEB_TARGET_ARCH)); \ ln -sf $$f debian/$$b$(LS).symbols; \ done endif endif versioned-files: fs=`echo debian/*BV* debian/*GCJ* debian/*CXX* debian/*LC* | sort -u`; \ for f in $$fs debian/source.lintian-overrides.in; do \ [ -f $$f ] || echo "CANNOT FIND $$f"; \ [ -f $$f ] || continue; \ if [ -z "$(DEB_CROSS)" ]; then case "$$f" in *-CR*) continue; esac; fi; \ f2=$$(echo $$f \ | sed 's/BV/$(BASE_VERSION)/;s/CXX/$(CXX_SONAME)/;s/LGCJ/$(PKG_LIBGCJ_EXT)/;s/GCJ/$(PKG_GCJ_EXT)/;s/LC/$(GCC_SONAME)/;s/-CRB/$(cross_bin_arch)/;s/\.in$$//'); \ sed -e 's/@BV@/$(BASE_VERSION)/g' \ -e 's/@CXX@/$(CXX_SONAME)/g' \ -e 's/@LGCJ@/$(PKG_LIBGCJ_EXT)/g' \ -e 's/@GCJ@/$(PKG_GCJ_EXT)/g' \ -e 's/@GCJSO@/$(GCJ_SONAME)/g' \ -e 's/@LC@/$(GCC_SONAME)/g' \ -e 's/@SRC@/$(PKGSOURCE)/g' \ -e 's/@GFDL@/$(if $(filter yes,$(GFDL_INVARIANT_FREE)),#)/g' \ -e 's/@java_priority@/$(java_priority)/g' \ -e 's/@gcc_priority@/$(subst .,,$(BASE_VERSION))/g' \ -e 's/@TARGET@/$(DEB_TARGET_GNU_TYPE)/g' \ $$f > $$f2; \ touch -r $$f $$f2; \ done for t in ar nm ranlib; do \ sed "s/@BV@/$(BASE_VERSION)/g;s/@TOOL@/$$t/g" \ debian/gcc-XX-BV.1 > debian/gcc-$$t-$(BASE_VERSION).1; \ done # don't encode versioned build dependencies in the control file, but check # these here instead. check-versions: v=$$(dpkg-query -l dpkg-dev | awk '/^.i/ {print $$3}'); \ if dpkg --compare-versions "$$v" lt "$(DPKGV)"; then \ echo "dpkg-dev (>= $(DPKGV)) required, found $$v"; \ exit 1; \ fi v=$$(dpkg-query -l binutils binutils-multiarch | awk '/^.i/ {print $$3;exit}'); \ if dpkg --compare-versions "$$v" lt "$(BINUTILSBDV)"; then \ echo "binutils (>= $(BINUTILSBDV)) required, found $$v"; \ exit 1; \ fi gnat-4.8-4.8.2/debian/cpp-BV-doc.doc-base.cpp0000644000000000000000000000105412173542725015117 0ustar Document: cpp-@BV@ Title: The GNU C preprocessor Author: Various Abstract: The C preprocessor is a "macro processor" that is used automatically by the C compiler to transform your program before actual compilation. It is called a macro processor because it allows you to define "macros", which are brief abbreviations for longer constructs. Section: Programming Format: html Index: /usr/share/doc/gcc-@BV@-base/cpp.html Files: /usr/share/doc/gcc-@BV@-base/cpp.html Format: info Index: /usr/share/info/cpp-@BV@.info.gz Files: /usr/share/info/cpp-@BV@* gnat-4.8-4.8.2/debian/gcc-BV-doc.doc-base.itm0000644000000000000000000000221612173542725015101 0ustar Document: gcc-@BV@-itm Title: The GNU Transactional Memory Library (for GCC @BV@) Author: Various Abstract: This manual documents the usage and internals of libitm, the GNU Transactional Memory Library. It provides transaction support for accesses to a process' memory, enabling easy-to-use synchronization of accesses to shared memory by several threads. Section: Programming Format: html Index: /usr/share/doc/gcc-@BV@-base/libitm.html Files: /usr/share/doc/gcc-@BV@-base/libitm.html Format: info Index: /usr/share/info/libitm-@BV@.info.gz Files: /usr/share/info/libitm-@BV@* Document: gcc-@BV@-itm Title: The GNU Transactional Memory Library (for GCC @BV@) Author: Various Abstract: This manual documents the usage and internals of libitm, the GNU Transactional Memory Library. It provides transaction support for accesses to a process' memory, enabling easy-to-use synchronization of accesses to shared memory by several threads. Section: Programming Format: html Index: /usr/share/doc/gcc-@BV@-base/libitm.html Files: /usr/share/doc/gcc-@BV@-base/libitm.html Format: info Index: /usr/share/info/libitm-@BV@.info.gz Files: /usr/share/info/libitm-@BV@* gnat-4.8-4.8.2/debian/libobjc4.symbols0000644000000000000000000000015012173542725014203 0ustar libobjc.so.4 libobjc4 #MINVER# #include "libobjc4.symbols.common" __gnu_objc_personality_v0@Base 4.2.1 gnat-4.8-4.8.2/debian/porting.html0000644000000000000000000000175212173542726013463 0ustar Porting libstdc++-v3

Porting libstdc++-v3


Node: Top, Next: , Up: (dir)
The documentation in this file was removed, because it is licencensed under a non DFSG conforming licencse. gnat-4.8-4.8.2/debian/libstdc++6.symbols.mips0000644000000000000000000000042412173542725015326 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.32bit" __gxx_personality_v0@CXXABI_1.3 4.1.1 #include "libstdc++6.symbols.excprop" #include "libstdc++6.symbols.glibcxxmath" _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3.0 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3.0 gnat-4.8-4.8.2/debian/README.gnat0000644000000000000000000000161012173542725012713 0ustar If you want to develop Ada programs and libraries on Debian, please read the Debian Policy for Ada: http://people.debian.org/~lbrenta/debian-ada-policy.html The default Ada compiler is and always will be the package `gnat'. Debian contains many programs and libraries compiled with it, which are all ABI-compatible. Starting with gnat-4.2, Debian provides both zero-cost and setjump/longjump versions of the run-time library. The zero-cost exception handling mechanism is the default as it provides the best performance. The setjump/longjump exception handling mechanism is new and only provided as a static library. It is necessary to use this exception handling mechanism in distributed (annex E) programs. If you wish to use the new sjlj library: 1) call gnatmake with --RTS=sjlj 2) call gnatbind with -static Do NOT link your programs with libgnat-4.2.so, because it uses the ZCX mechanism. gnat-4.8-4.8.2/debian/lib64gfortran3.symbols.s3900000644000000000000000000000031312173542725015757 0ustar libgfortran.so.3 lib64gfortran3 #MINVER# #include "libgfortran3.symbols.common" #include "libgfortran3.symbols.16.powerpc" #include "libgfortran3.symbols.16.powerpc64" #include "libgfortran3.symbols.64" gnat-4.8-4.8.2/debian/source.lintian-overrides.in0000644000000000000000000000027312175252665016377 0ustar @SRC@ source: invalid-arch-string-in-source-relation @SRC@ source: quilt-build-dep-but-no-series-file # lintian can't handle (>= ${gcc:Version}) @SRC@ source: weak-library-dev-dependency gnat-4.8-4.8.2/debian/lib64gccLC.postinst0000644000000000000000000000030712173542725014526 0ustar #! /bin/sh -e case "$1" in configure) docdir=/usr/share/doc/lib64gcc@LC@ if [ -d $docdir ] && [ ! -h $docdir ]; then rm -rf $docdir ln -s gcc-@BV@-base $docdir fi esac #DEBHELPER# gnat-4.8-4.8.2/debian/libstdc++6.symbols.32bit.hurd0000644000000000000000000010227612173542725016252 0ustar #include "libstdc++6.symbols.common" _ZN9__gnu_cxx12__atomic_addEPVii@GLIBCXX_3.4 4.1.1 _ZN9__gnu_cxx17__pool_alloc_base16_M_get_free_listEj@GLIBCXX_3.4.2 4.1.1 _ZN9__gnu_cxx17__pool_alloc_base9_M_refillEj@GLIBCXX_3.4.2 4.1.1 _ZN9__gnu_cxx18__exchange_and_addEPVii@GLIBCXX_3.4 4.1.1 _ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsgetnEPci@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsputnEPKci@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsgetnEPwi@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsputnEPKwi@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4.10 4.3.0~rc2 _ZN9__gnu_cxx6__poolILb0EE16_M_reclaim_blockEPcj@GLIBCXX_3.4.4 4.1.1 _ZN9__gnu_cxx6__poolILb0EE16_M_reserve_blockEjj@GLIBCXX_3.4.4 4.1.1 _ZN9__gnu_cxx6__poolILb1EE16_M_reclaim_blockEPcj@GLIBCXX_3.4.4 4.1.1 _ZN9__gnu_cxx6__poolILb1EE16_M_reserve_blockEjj@GLIBCXX_3.4.4 4.1.1 _ZN9__gnu_cxx9free_list6_M_getEj@GLIBCXX_3.4.4 4.1.1 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE@CXXABI_1.3 4.1.1 _ZNK10__cxxabiv121__vmi_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_@CXXABI_1.3 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofERKS2_j@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofERKS2_j@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEjjPKc@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEjjPKc@GLIBCXX_3.4.5 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofERKS2_j@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofERKS2_j@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE2atEj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4copyEPwjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4findERKS2_j@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE4findEwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE5rfindERKS2_j@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE5rfindEwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE6substrEjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE7compareEjjPKw@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE7compareEjjPKwj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE7compareEjjRKS2_@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE7compareEjjRKS2_jj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE8_M_checkEjPKc@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEE8_M_limitEjj@GLIBCXX_3.4 4.1.1 _ZNKSbIwSt11char_traitsIwESaIwEEixEj@GLIBCXX_3.4 4.1.1 _ZNKSs12find_last_ofEPKcj@GLIBCXX_3.4 4.1.1 _ZNKSs12find_last_ofEPKcjj@GLIBCXX_3.4 4.1.1 _ZNKSs12find_last_ofERKSsj@GLIBCXX_3.4 4.1.1 _ZNKSs12find_last_ofEcj@GLIBCXX_3.4 4.1.1 _ZNKSs13find_first_ofEPKcj@GLIBCXX_3.4 4.1.1 _ZNKSs13find_first_ofEPKcjj@GLIBCXX_3.4 4.1.1 _ZNKSs13find_first_ofERKSsj@GLIBCXX_3.4 4.1.1 _ZNKSs13find_first_ofEcj@GLIBCXX_3.4 4.1.1 _ZNKSs15_M_check_lengthEjjPKc@GLIBCXX_3.4 4.1.1 _ZNKSs15_M_check_lengthEjjPKc@GLIBCXX_3.4.5 4.1.1 _ZNKSs16find_last_not_ofEPKcj@GLIBCXX_3.4 4.1.1 _ZNKSs16find_last_not_ofEPKcjj@GLIBCXX_3.4 4.1.1 _ZNKSs16find_last_not_ofERKSsj@GLIBCXX_3.4 4.1.1 _ZNKSs16find_last_not_ofEcj@GLIBCXX_3.4 4.1.1 _ZNKSs17find_first_not_ofEPKcj@GLIBCXX_3.4 4.1.1 _ZNKSs17find_first_not_ofEPKcjj@GLIBCXX_3.4 4.1.1 _ZNKSs17find_first_not_ofERKSsj@GLIBCXX_3.4 4.1.1 _ZNKSs17find_first_not_ofEcj@GLIBCXX_3.4 4.1.1 _ZNKSs2atEj@GLIBCXX_3.4 4.1.1 _ZNKSs4copyEPcjj@GLIBCXX_3.4 4.1.1 _ZNKSs4findEPKcj@GLIBCXX_3.4 4.1.1 _ZNKSs4findEPKcjj@GLIBCXX_3.4 4.1.1 _ZNKSs4findERKSsj@GLIBCXX_3.4 4.1.1 _ZNKSs4findEcj@GLIBCXX_3.4 4.1.1 _ZNKSs5rfindEPKcj@GLIBCXX_3.4 4.1.1 _ZNKSs5rfindEPKcjj@GLIBCXX_3.4 4.1.1 _ZNKSs5rfindERKSsj@GLIBCXX_3.4 4.1.1 _ZNKSs5rfindEcj@GLIBCXX_3.4 4.1.1 _ZNKSs6substrEjj@GLIBCXX_3.4 4.1.1 _ZNKSs7compareEjjPKc@GLIBCXX_3.4 4.1.1 _ZNKSs7compareEjjPKcj@GLIBCXX_3.4 4.1.1 _ZNKSs7compareEjjRKSs@GLIBCXX_3.4 4.1.1 _ZNKSs7compareEjjRKSsjj@GLIBCXX_3.4 4.1.1 _ZNKSs8_M_checkEjPKc@GLIBCXX_3.4 4.1.1 _ZNKSs8_M_limitEjj@GLIBCXX_3.4 4.1.1 _ZNKSsixEj@GLIBCXX_3.4 4.1.1 _ZNKSt11__timepunctIcE6_M_putEPcjPKcPK2tm@GLIBCXX_3.4 4.1.1 _ZNKSt11__timepunctIwE6_M_putEPwjPKwPK2tm@GLIBCXX_3.4 4.1.1 _ZNKSt7codecvtIcc11__mbstate_tE9do_lengthERS0_PKcS4_j@GLIBCXX_3.4 4.1.1 _ZNKSt7codecvtIwc11__mbstate_tE9do_lengthERS0_PKcS4_j@GLIBCXX_3.4 4.1.1 _ZNKSt7collateIcE12_M_transformEPcPKcj@GLIBCXX_3.4 4.1.1 _ZNKSt7collateIwE12_M_transformEPwPKwj@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE12_M_group_intEPKcjcRSt8ios_basePcS9_Ri@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE14_M_group_floatEPKcjcS6_PcS7_Ri@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6_M_padEciRSt8ios_basePcPKcRi@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE12_M_group_intEPKcjwRSt8ios_basePwS9_Ri@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE14_M_group_floatEPKcjwPKwPwS9_Ri@GLIBCXX_3.4 4.1.1 _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6_M_padEwiRSt8ios_basePwPKwRi@GLIBCXX_3.4 4.1.1 _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_numES3_S3_RiiijRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4 4.1.1 _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE15_M_extract_nameES3_S3_RiPPKcjRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4 4.1.1 _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_numES3_S3_RiiijRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4 4.1.1 _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE15_M_extract_nameES3_S3_RiPPKwjRSt8ios_baseRSt12_Ios_Iostate@GLIBCXX_3.4 4.1.1 _ZNKSt8valarrayIjE4sizeEv@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE12_S_constructEjwRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE14_M_replace_auxEjjjw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE15_M_replace_safeEjjPKwj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE2atEj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEj@GLIBCXX_3.4.5 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE4_Rep8_M_cloneERKS1_j@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE4_Rep9_S_createEjjRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE5eraseEjj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6appendEPKwj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_jj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6appendEjw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_jj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6assignEjw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EEjw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEjPKw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEjPKwj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEjRKS2_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEjRKS2_jj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6insertEjjw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6resizeEj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE6resizeEjw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwj@GLIBCXX_3.4.5 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwj@GLIBCXX_3.4.5 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKwj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_jw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEjjPKw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEjjPKwj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEjjRKS2_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEjjRKS2_jj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7replaceEjjjw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE7reserveEj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwjw@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwjw@GLIBCXX_3.4.5 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEE9_M_mutateEjjj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC1EPKwjRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_jj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_jjRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC1EjwRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC2EPKwjRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_jj@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_jjRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEC2EjwRKS1_@GLIBCXX_3.4 4.1.1 _ZNSbIwSt11char_traitsIwESaIwEEixEj@GLIBCXX_3.4 4.1.1 _ZNSi3getEPci@GLIBCXX_3.4 4.1.1 _ZNSi3getEPcic@GLIBCXX_3.4 4.1.1 _ZNSi4readEPci@GLIBCXX_3.4 4.1.1 _ZNSi5seekgExSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSi6ignoreEi@GLIBCXX_3.4 4.1.1 _ZNSi6ignoreEi@GLIBCXX_3.4.5 4.1.1 _ZNSi6ignoreEii@GLIBCXX_3.4 4.1.1 _ZNSi7getlineEPci@GLIBCXX_3.4 4.1.1 _ZNSi7getlineEPcic@GLIBCXX_3.4 4.1.1 _ZNSi8readsomeEPci@GLIBCXX_3.4 4.1.1 _ZNSo5seekpExSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSo5writeEPKci@GLIBCXX_3.4 4.1.1 _ZNSo8_M_writeEPKci@GLIBCXX_3.4 4.1.1 _ZNSs12_S_constructEjcRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSs14_M_replace_auxEjjjc@GLIBCXX_3.4 4.1.1 _ZNSs15_M_replace_safeEjjPKcj@GLIBCXX_3.4 4.1.1 _ZNSs2atEj@GLIBCXX_3.4 4.1.1 _ZNSs4_Rep26_M_set_length_and_sharableEj@GLIBCXX_3.4 4.1.1 _ZNSs4_Rep26_M_set_length_and_sharableEj@GLIBCXX_3.4.5 4.1.1 _ZNSs4_Rep8_M_cloneERKSaIcEj@GLIBCXX_3.4 4.1.1 _ZNSs4_Rep9_S_createEjjRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSs5eraseEjj@GLIBCXX_3.4 4.1.1 _ZNSs6appendEPKcj@GLIBCXX_3.4 4.1.1 _ZNSs6appendERKSsjj@GLIBCXX_3.4 4.1.1 _ZNSs6appendEjc@GLIBCXX_3.4 4.1.1 _ZNSs6assignEPKcj@GLIBCXX_3.4 4.1.1 _ZNSs6assignERKSsjj@GLIBCXX_3.4 4.1.1 _ZNSs6assignEjc@GLIBCXX_3.4 4.1.1 _ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEjc@GLIBCXX_3.4 4.1.1 _ZNSs6insertEjPKc@GLIBCXX_3.4 4.1.1 _ZNSs6insertEjPKcj@GLIBCXX_3.4 4.1.1 _ZNSs6insertEjRKSs@GLIBCXX_3.4 4.1.1 _ZNSs6insertEjRKSsjj@GLIBCXX_3.4 4.1.1 _ZNSs6insertEjjc@GLIBCXX_3.4 4.1.1 _ZNSs6resizeEj@GLIBCXX_3.4 4.1.1 _ZNSs6resizeEjc@GLIBCXX_3.4 4.1.1 _ZNSs7_M_copyEPcPKcj@GLIBCXX_3.4 4.1.1 _ZNSs7_M_copyEPcPKcj@GLIBCXX_3.4.5 4.1.1 _ZNSs7_M_moveEPcPKcj@GLIBCXX_3.4 4.1.1 _ZNSs7_M_moveEPcPKcj@GLIBCXX_3.4.5 4.1.1 _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcj@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_jc@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEjjPKc@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEjjPKcj@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEjjRKSs@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEjjRKSsjj@GLIBCXX_3.4 4.1.1 _ZNSs7replaceEjjjc@GLIBCXX_3.4 4.1.1 _ZNSs7reserveEj@GLIBCXX_3.4 4.1.1 _ZNSs9_M_assignEPcjc@GLIBCXX_3.4 4.1.1 _ZNSs9_M_assignEPcjc@GLIBCXX_3.4.5 4.1.1 _ZNSs9_M_mutateEjjj@GLIBCXX_3.4 4.1.1 _ZNSsC1EPKcjRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC1ERKSsjj@GLIBCXX_3.4 4.1.1 _ZNSsC1ERKSsjjRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC1EjcRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC2EPKcjRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC2ERKSsjj@GLIBCXX_3.4 4.1.1 _ZNSsC2ERKSsjjRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsC2EjcRKSaIcE@GLIBCXX_3.4 4.1.1 _ZNSsixEj@GLIBCXX_3.4 4.1.1 _ZNSt10istrstreamC1EPKci@GLIBCXX_3.4 4.1.1 _ZNSt10istrstreamC1EPci@GLIBCXX_3.4 4.1.1 _ZNSt10istrstreamC2EPKci@GLIBCXX_3.4 4.1.1 _ZNSt10istrstreamC2EPci@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC1EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC1EPSt18__moneypunct_cacheIcLb0EEj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC2EPSt18__moneypunct_cacheIcLb0EEj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb0EEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC1EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC1EPSt18__moneypunct_cacheIcLb1EEj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC2EPSt18__moneypunct_cacheIcLb1EEj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIcLb1EEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC1EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC1EPSt18__moneypunct_cacheIwLb0EEj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC2EPSt18__moneypunct_cacheIwLb0EEj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb0EEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC1EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC1EPSt18__moneypunct_cacheIwLb1EEj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEj@GLIBCXX_3.4 4.1.1 _ZNSt10moneypunctIwLb1EEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC1EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC1EPSt17__timepunct_cacheIcEj@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC2EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEj@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIcEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC1EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC1EPSt17__timepunct_cacheIwEj@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC2EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEj@GLIBCXX_3.4 4.1.1 _ZNSt11__timepunctIwEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcE6xsgetnEPci@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcE6xsputnEPKci@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcE7seekoffExSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcE8xsputn_2EPKciS2_i@GLIBCXX_3.4 4.1.1 _ZNSt12ctype_bynameIcEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt12ctype_bynameIcEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt12ctype_bynameIwEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt12ctype_bynameIwEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambuf6setbufEPci@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambuf7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambuf8_M_allocEj@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambuf8_M_setupEPcS0_i@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPFPvjEPFvS0_E@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPKai@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPKci@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPKhi@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPaiS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPciS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1EPhiS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC1Ei@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPFPvjEPFvS0_E@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPKai@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPKci@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPKhi@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPaiS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPciS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2EPhiS0_@GLIBCXX_3.4 4.1.1 _ZNSt12strstreambufC2Ei@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE13_M_set_bufferEi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE22_M_convert_to_externalEPci@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPci@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE6xsgetnEPci@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE6xsputnEPKci@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE7_M_seekExSt12_Ios_Seekdir11__mbstate_t@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE13_M_set_bufferEi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE22_M_convert_to_externalEPwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE6xsgetnEPwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE6xsputnEPKwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE7_M_seekExSt12_Ios_Seekdir11__mbstate_t@GLIBCXX_3.4 4.1.1 _ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwiw@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE4readEPwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgExSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEi@GLIBCXX_3.4.5 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEij@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwiw@GLIBCXX_3.4 4.1.1 _ZNSt13basic_istreamIwSt11char_traitsIwEE8readsomeEPwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpExSt12_Ios_Seekdir@GLIBCXX_3.4 4.1.1 _ZNSt13basic_ostreamIwSt11char_traitsIwEE5writeEPKwi@GLIBCXX_3.4 4.1.1 _ZNSt13basic_ostreamIwSt11char_traitsIwEE8_M_writeEPKwi@GLIBCXX_3.4 4.1.1 _ZNSt14codecvt_bynameIcc11__mbstate_tEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt14codecvt_bynameIwc11__mbstate_tEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt14collate_bynameIcEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt14collate_bynameIcEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt14collate_bynameIwEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt14collate_bynameIwEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetnEPci@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE5sputnEPKci@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE6setbufEPci@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPci@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKci@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIcSt11char_traitsIcEE9pubsetbufEPci@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetnEPwi@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE5sputnEPKwi@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE6setbufEPwi@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwi@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwi@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_streambufIwSt11char_traitsIwEE9pubsetbufEPwi@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE6setbufEPci@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcjj@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE6setbufEPwi@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7_M_syncEPwjj@GLIBCXX_3.4 4.1.1 _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode@GLIBCXX_3.4 4.1.1 _ZNSt15messages_bynameIcEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15messages_bynameIcEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15messages_bynameIwEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15messages_bynameIwEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15numpunct_bynameIcEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15numpunct_bynameIcEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15numpunct_bynameIwEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15numpunct_bynameIwEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt16__numpunct_cacheIcEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt16__numpunct_cacheIcEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt16__numpunct_cacheIwEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt16__numpunct_cacheIwEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt17__timepunct_cacheIcEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt17__timepunct_cacheIcEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt17__timepunct_cacheIwEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt17__timepunct_cacheIwEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIcLb0EEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIcLb0EEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIcLb1EEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIcLb1EEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIwLb0EEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIwLb0EEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIwLb1EEC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt17moneypunct_bynameIwLb1EEC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIcLb0EEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIcLb0EEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIcLb1EEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIcLb1EEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIwLb0EEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIwLb0EEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIwLb1EEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt18__moneypunct_cacheIwLb1EEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIcEC1EP15__locale_structPKtbj@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIcEC1EPKtbj@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIcEC2EP15__locale_structPKtbj@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIcEC2EPKtbj@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIwEC1EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIwEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIwEC2EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt5ctypeIwEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt6gslice8_IndexerC1EjRKSt8valarrayIjES4_@GLIBCXX_3.4 4.1.1 _ZNSt6gslice8_IndexerC2EjRKSt8valarrayIjES4_@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEj@GLIBCXX_3.4.7 4.1.1 _ZNSt6locale5_ImplC1EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC1ERKS0_j@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC2EPKcj@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC2ERKS0_j@GLIBCXX_3.4 4.1.1 _ZNSt6locale5_ImplC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIcc11__mbstate_tEC1EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIcc11__mbstate_tEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIcc11__mbstate_tEC2EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIcc11__mbstate_tEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIwc11__mbstate_tEC1EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIwc11__mbstate_tEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIwc11__mbstate_tEC2EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt7codecvtIwc11__mbstate_tEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt7collateIcEC1EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt7collateIcEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt7collateIcEC2EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt7collateIcEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt7collateIwEC1EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt7collateIwEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt7collateIwEC2EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt7collateIwEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIcEC1EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIcEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIcEC2EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIcEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIwEC1EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIwEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIwEC2EP15__locale_structPKcj@GLIBCXX_3.4 4.1.1 _ZNSt8messagesIwEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC1EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC1EPSt16__numpunct_cacheIcEj@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC2EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEj@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIcEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC1EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC1EPSt16__numpunct_cacheIwEj@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC2EP15__locale_structj@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC2EPSt16__numpunct_cacheIwEj@GLIBCXX_3.4 4.1.1 _ZNSt8numpunctIwEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayIjEC1ERKS0_@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayIjEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayIjEC2ERKS0_@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayIjEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayIjED1Ev@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayIjED2Ev@GLIBCXX_3.4 4.1.1 _ZNSt8valarrayIjEixEj@GLIBCXX_3.4 4.1.1 _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Ej@GLIBCXX_3.4 4.1.1 _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Ej@GLIBCXX_3.4 4.1.1 _ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_i@GLIBCXX_3.4.9 4.2.1 _ZSt16__ostream_insertIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_i@GLIBCXX_3.4.9 4.2.1 _ZSt17__copy_streambufsIcSt11char_traitsIcEEiPSt15basic_streambufIT_T0_ES6_@GLIBCXX_3.4.6 4.1.1 _ZSt17__copy_streambufsIwSt11char_traitsIwEEiPSt15basic_streambufIT_T0_ES6_@GLIBCXX_3.4.6 4.1.1 _ZSt17__verify_groupingPKcjRKSs@GLIBCXX_3.4.10 4.3 _ZSt21__copy_streambufs_eofIcSt11char_traitsIcEEiPSt15basic_streambufIT_T0_ES6_Rb@GLIBCXX_3.4.9 4.2.1 _ZSt21__copy_streambufs_eofIwSt11char_traitsIwEEiPSt15basic_streambufIT_T0_ES6_Rb@GLIBCXX_3.4.9 4.2.1 _ZThn8_NSdD0Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSdD1Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt9strstreamD0Ev@GLIBCXX_3.4 4.1.1 _ZThn8_NSt9strstreamD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSdD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSdD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSiD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSiD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSoD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSoD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt10istrstreamD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt10istrstreamD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt10ostrstreamD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt10ostrstreamD1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_ifstreamIcSt11char_traitsIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_ifstreamIcSt11char_traitsIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_ifstreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_ifstreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_ofstreamIcSt11char_traitsIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_ofstreamIcSt11char_traitsIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_ofstreamIwSt11char_traitsIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt14basic_ofstreamIwSt11char_traitsIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt9strstreamD0Ev@GLIBCXX_3.4 4.1.1 _ZTv0_n12_NSt9strstreamD1Ev@GLIBCXX_3.4 4.1.1 _Znaj@GLIBCXX_3.4 4.1.1 _ZnajRKSt9nothrow_t@GLIBCXX_3.4 4.1.1 _Znwj@GLIBCXX_3.4 4.1.1 _ZnwjRKSt9nothrow_t@GLIBCXX_3.4 4.1.1 _ZNSt12__basic_fileIcEC1EP15__pthread_mutex@GLIBCXX_3.4 4.3.0 _ZNSt12__basic_fileIcEC2EP15__pthread_mutex@GLIBCXX_3.4 4.3.0 gnat-4.8-4.8.2/debian/libstdc++6.symbols.hurd-i3860000644000000000000000000000031112173542725016002 0ustar libstdc++.so.6 libstdc++6 #MINVER# #include "libstdc++6.symbols.32bit.hurd" __gxx_personality_v0@CXXABI_1.3 4.1.1 _ZNKSt3tr14hashIeEclEe@GLIBCXX_3.4.10 4.3.0 _ZNKSt4hashIeEclEe@GLIBCXX_3.4.10 4.3.0 gnat-4.8-4.8.2/debian/libgcc1.symbols.arm640000644000000000000000000000744012274247101014750 0ustar libgcc_s.so.1 libgcc1 #MINVER# GCC_3.0@GCC_3.0 1:4.7 GCC_3.3.1@GCC_3.3.1 1:4.7 GCC_3.3@GCC_3.3 1:4.7 GCC_3.4.2@GCC_3.4.2 1:4.7 GCC_3.4.4@GCC_3.4.4 1:4.7 GCC_3.4@GCC_3.4 1:4.7 GCC_4.0.0@GCC_4.0.0 1:4.7 GCC_4.2.0@GCC_4.2.0 1:4.7 GCC_4.3.0@GCC_4.3.0 1:4.7 GCC_4.5.0@GCC_4.5.0 1:4.7 GCC_4.7.0@GCC_4.7.0 1:4.7 GLIBC_2.0@GLIBC_2.0 1:4.7 _Unwind_Backtrace@GCC_3.3 1:4.7 _Unwind_DeleteException@GCC_3.0 1:4.7 _Unwind_FindEnclosingFunction@GCC_3.3 1:4.7 _Unwind_Find_FDE@GCC_3.0 1:4.7 _Unwind_ForcedUnwind@GCC_3.0 1:4.7 _Unwind_GetCFA@GCC_3.3 1:4.7 _Unwind_GetDataRelBase@GCC_3.0 1:4.7 _Unwind_GetGR@GCC_3.0 1:4.7 _Unwind_GetIP@GCC_3.0 1:4.7 _Unwind_GetIPInfo@GCC_4.2.0 1:4.7 _Unwind_GetLanguageSpecificData@GCC_3.0 1:4.7 _Unwind_GetRegionStart@GCC_3.0 1:4.7 _Unwind_GetTextRelBase@GCC_3.0 1:4.7 _Unwind_RaiseException@GCC_3.0 1:4.7 _Unwind_Resume@GCC_3.0 1:4.7 _Unwind_Resume_or_Rethrow@GCC_3.3 1:4.7 _Unwind_SetGR@GCC_3.0 1:4.7 _Unwind_SetIP@GCC_3.0 1:4.7 __absvdi2@GCC_3.0 1:4.7 __absvsi2@GCC_3.0 1:4.7 __absvti2@GCC_3.4.4 1:4.7 __addtf3@GCC_3.0 1:4.7 __addvdi3@GCC_3.0 1:4.7 __addvsi3@GCC_3.0 1:4.7 __addvti3@GCC_3.4.4 1:4.7 __ashlti3@GCC_3.0 1:4.7 __ashrti3@GCC_3.0 1:4.7 __bswapdi2@GCC_4.3.0 1:4.7 __bswapsi2@GCC_4.3.0 1:4.7 __clear_cache@GCC_3.0 1:4.7 __clrsbdi2@GCC_4.7.0 1:4.7 __clrsbti2@GCC_4.7.0 1:4.7 __clzdi2@GCC_3.4 1:4.7 __clzti2@GCC_3.4 1:4.7 __cmpti2@GCC_3.0 1:4.7 __ctzdi2@GCC_3.4 1:4.7 __ctzti2@GCC_3.4 1:4.7 __deregister_frame@GLIBC_2.0 1:4.7 __deregister_frame_info@GLIBC_2.0 1:4.7 __deregister_frame_info_bases@GCC_3.0 1:4.7 __divdc3@GCC_4.0.0 1:4.7 __divsc3@GCC_4.0.0 1:4.7 __divtc3@GCC_4.0.0 1:4.7 __divtf3@GCC_3.0 1:4.7 __divti3@GCC_3.0 1:4.7 __emutls_get_address@GCC_4.3.0 1:4.7 __emutls_register_common@GCC_4.3.0 1:4.7 __enable_execute_stack@GCC_3.4.2 1:4.7 __eqtf2@GCC_3.0 1:4.7 __extenddftf2@GCC_3.0 1:4.7 __extendsftf2@GCC_3.0 1:4.7 __ffsdi2@GCC_3.0 1:4.7 __ffsti2@GCC_3.0 1:4.7 __fixdfti@GCC_3.0 1:4.7 __fixsfti@GCC_3.0 1:4.7 __fixtfdi@GCC_3.0 1:4.7 __fixtfsi@GCC_3.0 1:4.7 __fixtfti@GCC_3.0 1:4.7 __fixunsdfdi@GCC_3.0 1:4.7 __fixunsdfti@GCC_3.0 1:4.7 __fixunssfdi@GCC_3.0 1:4.7 __fixunssfti@GCC_3.0 1:4.7 __fixunstfdi@GCC_3.0 1:4.7 __fixunstfsi@GCC_3.0 1:4.7 __fixunstfti@GCC_3.0 1:4.7 __floatditf@GCC_3.0 1:4.7 __floatsitf@GCC_3.0 1:4.7 __floattidf@GCC_3.0 1:4.7 __floattisf@GCC_3.0 1:4.7 __floattitf@GCC_3.0 1:4.7 __floatunditf@GCC_4.2.0 1:4.7 __floatunsitf@GCC_4.2.0 1:4.7 __floatuntidf@GCC_4.2.0 1:4.7 __floatuntisf@GCC_4.2.0 1:4.7 __floatuntitf@GCC_4.2.0 1:4.7 __frame_state_for@GLIBC_2.0 1:4.7 __gcc_personality_v0@GCC_3.3.1 1:4.7 __getf2@GCC_3.0 1:4.7 __gttf2@GCC_3.0 1:4.7 __letf2@GCC_3.0 1:4.7 __lshrti3@GCC_3.0 1:4.7 __lttf2@GCC_3.0 1:4.7 __modti3@GCC_3.0 1:4.7 __muldc3@GCC_4.0.0 1:4.7 __mulsc3@GCC_4.0.0 1:4.7 __multc3@GCC_4.0.0 1:4.7 __multf3@GCC_3.0 1:4.7 __multi3@GCC_3.0 1:4.7 __mulvdi3@GCC_3.0 1:4.7 __mulvsi3@GCC_3.0 1:4.7 __mulvti3@GCC_3.4.4 1:4.7 __negtf2@GCC_3.0 1:4.7 __negti2@GCC_3.0 1:4.7 __negvdi2@GCC_3.0 1:4.7 __negvsi2@GCC_3.0 1:4.7 __negvti2@GCC_3.4.4 1:4.7 __netf2@GCC_3.0 1:4.7 __paritydi2@GCC_3.4 1:4.7 __parityti2@GCC_3.4 1:4.7 __popcountdi2@GCC_3.4 1:4.7 __popcountti2@GCC_3.4 1:4.7 __powidf2@GCC_4.0.0 1:4.7 __powisf2@GCC_4.0.0 1:4.7 __powitf2@GCC_4.0.0 1:4.7 __register_frame@GLIBC_2.0 1:4.7 __register_frame_info@GLIBC_2.0 1:4.7 __register_frame_info_bases@GCC_3.0 1:4.7 __register_frame_info_table@GLIBC_2.0 1:4.7 __register_frame_info_table_bases@GCC_3.0 1:4.7 __register_frame_table@GLIBC_2.0 1:4.7 __subtf3@GCC_3.0 1:4.7 __subvdi3@GCC_3.0 1:4.7 __subvsi3@GCC_3.0 1:4.7 __subvti3@GCC_3.4.4 1:4.7 __trunctfdf2@GCC_3.0 1:4.7 __trunctfsf2@GCC_3.0 1:4.7 __ucmpti2@GCC_3.0 1:4.7 __udivmodti4@GCC_3.0 1:4.7 __udivti3@GCC_3.0 1:4.7 __umodti3@GCC_3.0 1:4.7 __unordtf2@GCC_4.5.0 1:4.7 gnat-4.8-4.8.2/debian/rules.d/0000755000000000000000000000000012320221247012444 5ustar gnat-4.8-4.8.2/debian/rules.d/binary-fixincl.mk0000644000000000000000000000263312173542726015735 0ustar arch_binaries := $(arch_binaries) fixincl p_fix = fixincludes d_fix = debian/$(p_fix) dirs_fix = \ $(docdir)/$(p_xbase)/fixincludes \ $(PF)/share/man/man1 \ $(PF)/bin \ $(gcc_lexec_dir) \ $(gcc_lib_dir) files_fix = \ $(gcc_lexec_dir)/install-tools \ $(gcc_lib_dir)/install-tools # ---------------------------------------------------------------------- $(binary_stamp)-fixincl: $(install_stamp) dh_testdir dh_testroot mv $(install_stamp) $(install_stamp)-tmp rm -rf $(d_fix) dh_installdirs -p$(p_fix) $(dirs_fix) DH_COMPAT=2 dh_movefiles -p$(p_fix) $(files_fix) # $(IP) $(builddir)/gcc/fixinc/fixincl $(d_fix)/$(PF)/lib/fixincludes/ # sed -e "s,^FIXINCL=\(.*\),FIXINCL=/$(PF)/lib/fixincludes/fixincl," \ # $(builddir)/gcc/fixinc.sh \ # > $(d_fix)/$(PF)/lib/fixincludes/fixinc.sh # chmod 755 $(d_fix)/$(PF)/lib/fixincludes/fixinc.sh $(IR) $(srcdir)/fixincludes/README \ $(d_fix)/$(docdir)/$(p_xbase)/fixincludes sed -e 's,@LIBEXECDIR@,$(gcc_lexec_dir),g' debian/fixincludes.in \ > $(d_fix)/$(PF)/bin/fixincludes chmod 755 $(d_fix)/$(PF)/bin/fixincludes debian/dh_doclink -p$(p_fix) $(p_xbase) dh_strip -p$(p_fix) dh_compress -p$(p_fix) dh_fixperms -p$(p_fix) dh_shlibdeps -p$(p_fix) dh_gencontrol -p$(p_fix) -- -v$(DEB_EVERSION) $(common_substvars) dh_installdeb -p$(p_fix) dh_md5sums -p$(p_fix) dh_builddeb -p$(p_fix) trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp) gnat-4.8-4.8.2/debian/rules.d/binary-libobjc.mk0000644000000000000000000001007012173542726015677 0ustar ifeq ($(with_libobjc),yes) $(lib_binaries) += libobjc endif ifeq ($(with_objcdev),yes) $(lib_binaries) += libobjc-dev endif ifeq ($(with_lib64objc),yes) $(lib_binaries) += lib64objc endif ifeq ($(with_lib64objcdev),yes) $(lib_binaries) += lib64objc-dev endif ifeq ($(with_lib32objc),yes) $(lib_binaries) += lib32objc endif ifeq ($(with_lib32objcdev),yes) $(lib_binaries) += lib32objc-dev endif ifeq ($(with_libn32objc),yes) $(lib_binaries) += libn32objc endif ifeq ($(with_libn32objcdev),yes) $(lib_binaries) += libn32objc-dev endif ifeq ($(with_libx32objc),yes) $(lib_binaries) += libx32objc endif ifeq ($(with_libx32objcdev),yes) $(lib_binaries) += libx32objc-dev endif ifeq ($(with_libhfobjc),yes) $(lib_binaries) += libhfobjc endif ifeq ($(with_libhfobjcdev),yes) $(lib_binaries) += libhfobjc-dev endif ifeq ($(with_libsfobjc),yes) $(lib_binaries) += libsfobjc endif ifeq ($(with_libsfobjcdev),yes) $(lib_binaries) += libsfobjc-dev endif files_lobjcdev= \ $(gcc_lib_dir)/include/objc files_lobjc = \ $(usr_lib$(2))/libobjc.so.* ifeq ($(with_objc_gc),yes) files_lobjc += \ $(usr_lib$(2))/libobjc_gc.so.* endif define __do_libobjc dh_testdir dh_testroot mv $(install_stamp) $(install_stamp)-tmp rm -rf $(d_l) $(d_d) dh_installdirs -p$(p_l) \ $(usr_lib$(2)) DH_COMPAT=2 dh_movefiles -p$(p_l) \ $(files_lobjc) debian/dh_doclink -p$(p_l) $(p_base) debian/dh_doclink -p$(p_d) $(p_base) dh_strip -p$(p_l) --dbg-package=$(p_d) dh_compress -p$(p_l) -p$(p_d) dh_fixperms -p$(p_l) -p$(p_d) $(cross_makeshlibs) dh_makeshlibs -p$(p_l) -Xlibobjc_gc.so $(call cross_mangle_shlibs,$(p_l)) $(ignshld)DIRNAME=$(subst n,,$(2)) $(cross_shlibdeps) dh_shlibdeps -p$(p_l) \ $(call shlibdirs_to_search,$(subst objc$(OBJC_SONAME),gcc$(GCC_SONAME),$(p_l)),$(2)) $(call cross_mangle_substvars,$(p_l)) $(cross_gencontrol) dh_gencontrol -p$(p_l) -p$(p_d) \ -- -v$(DEB_VERSION) $(common_substvars) $(call cross_mangle_control,$(p_l)) dh_installdeb -p$(p_l) -p$(p_d) dh_md5sums -p$(p_l) -p$(p_d) dh_builddeb -p$(p_l) -p$(p_d) trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp) endef define __do_libobjc_dev dh_testdir dh_testroot mv $(install_stamp) $(install_stamp)-tmp rm -rf $(d_l) dh_installdirs -p$(p_l) \ $(gcc_lib_dir$(2)) DH_COMPAT=2 dh_movefiles -p$(p_l) \ $(files_lobjcdev) $(call install_gcc_lib,libobjc,$(OBJC_SONAME),$(2),$(p_l)) $(if $(filter yes,$(with_objc_gc)), dh_link -p$(p_l) \ /$(usr_lib$(2))/libobjc_gc.so.$(OBJC_SONAME) \ /$(gcc_lib_dir$(2))/libobjc_gc.so ) debian/dh_doclink -p$(p_l) $(p_base) dh_compress -p$(p_l) dh_fixperms -p$(p_l) $(cross_gencontrol) dh_gencontrol -p$(p_l) \ -- -v$(DEB_VERSION) $(common_substvars) $(call cross_mangle_control,$(p_l)) dh_installdeb -p$(p_l) dh_md5sums -p$(p_l) dh_builddeb -p$(p_l) trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp) endef # ---------------------------------------------------------------------- do_libobjc = $(call __do_libobjc,lib$(1)objc$(OBJC_SONAME),$(1)) do_libobjc_dev = $(call __do_libobjc_dev,lib$(1)objc-$(BASE_VERSION)-dev,$(1)) $(binary_stamp)-libobjc: $(install_stamp) $(call do_libobjc,) $(binary_stamp)-lib64objc: $(install_stamp) $(call do_libobjc,64) $(binary_stamp)-lib32objc: $(install_stamp) $(call do_libobjc,32) $(binary_stamp)-libn32objc: $(install_stamp) $(call do_libobjc,n32) $(binary_stamp)-libx32objc: $(install_stamp) $(call do_libobjc,x32) $(binary_stamp)-libhfobjc: $(install_stamp) $(call do_libobjc,hf) $(binary_stamp)-libsfobjc: $(install_stamp) $(call do_libobjc,sf) $(binary_stamp)-libobjc-dev: $(install_stamp) $(call do_libobjc_dev,) $(binary_stamp)-lib64objc-dev: $(install_stamp) $(call do_libobjc_dev,64) $(binary_stamp)-lib32objc-dev: $(install_stamp) $(call do_libobjc_dev,32) $(binary_stamp)-libx32objc-dev: $(install_stamp) $(call do_libobjc_dev,x32) $(binary_stamp)-libn32objc-dev: $(install_stamp) $(call do_libobjc_dev,n32) $(binary_stamp)-libhfobjc-dev: $(install_stamp) $(call do_libobjc_dev,hf) $(binary_stamp)-libsfobjc-dev: $(install_stamp) $(call do_libobjc_dev,sf) gnat-4.8-4.8.2/debian/rules.d/binary-java.mk0000644000000000000000000005644412253105003015211 0ustar ifeq ($(with_gcj_base_only),yes) arch_binaries := $(arch_binaries) jbase else ifeq ($(with_separate_libgcj),yes) ifeq ($(PKGSOURCE),gcj-$(BASE_VERSION)) arch_binaries := $(arch_binaries) jbase endif endif ifeq ($(with_libgcj),yes) ifeq ($(with_java),yes) arch_binaries := $(arch_binaries) java gcjjre indep_binaries := $(indep_binaries) libgcjjar endif ifeq ($(with_javadev),yes) arch_binaries := $(arch_binaries) gcjjdk libgcjdev libgcjdbg ifneq ($(DEB_CROSS),yes) indep_binaries := $(indep_binaries) libgcjsrc ifeq ($(with_libgcj_doc),yes) indep_binaries := $(indep_binaries) libgcjdoc endif endif endif endif ifeq ($(with_gcj),yes) arch_binaries := $(arch_binaries) gcj endif endif p_jbase = gcj$(pkg_ver)-base ifeq ($(with_separate_libgcj)-$(with_standalone_gcj),no-no) p_jbase = gcc$(pkg_ver)-base endif p_gcj = gcj$(pkg_ver)$(cross_bin_arch) p_jdk = gcj$(pkg_ver)-jdk$(cross_bin_arch) p_jrehl = gcj$(pkg_ver)-jre-headless$(cross_bin_arch) p_jre = gcj$(pkg_ver)-jre$(cross_bin_arch) p_jar = gcj$(pkg_ver)-jre-lib$(cross_bin_arch) p_jsrc = gcj$(pkg_ver)-source p_jlib = libgcj$(PKG_LIBGCJ_EXT)$(cross_lib_arch) p_jdbg = libgcj$(PKG_GCJ_EXT)-dbg$(cross_lib_arch) p_jlibx = libgcj$(PKG_LIBGCJ_EXT)-awt$(cross_lib_arch) p_jgtk = libgcj$(PKG_GCJ_EXT)-awt-gtk$(cross_lib_arch) p_jqt = libgcj$(PKG_GCJ_EXT)-awt-qt$(cross_lib_arch) p_jdev = libgcj$(PKG_GCJ_EXT)-dev$(cross_lib_arch) p_jdoc = libgcj-doc d_jbase = debian/$(p_jbase) d_gcj = debian/$(p_gcj) d_jdk = debian/$(p_jdk) d_jrehl = debian/$(p_jrehl) d_jar = debian/$(p_jar) d_jsrc = debian/$(p_jsrc) d_jlib = debian/$(p_jlib) d_jdbg = debian/$(p_jdbg) d_jlibx = debian/$(p_jlibx) d_jgtk = debian/$(p_jgtk) d_jqt = debian/$(p_jqt) d_jdev = debian/$(p_jdev) d_jdoc = debian/$(p_jdoc) d_jre = debian/$(p_jre) GCJ_BASE_VERSION = $(BASE_VERSION) gcj_vlibdir = $(PF)/$(libdir)/gcj-$(BASE_VERSION)-$(GCJ_SONAME) jre_tools = java keytool orbd rmid rmiregistry tnameserv jdk_tools = appletviewer jar jarsigner javac javadoc javah native2ascii rmic serialver dirs_gcj = \ $(docdir)/$(p_jbase) \ $(PF)/bin \ $(PF)/share/man/man1 \ $(gcc_lexec_dir) files_gcj = \ $(PF)/bin/$(cmd_prefix)gcj$(pkg_ver) \ $(gcc_lexec_dir)/{ecj1,jc1,jvgenmain} ifneq ($(GFDL_INVARIANT_FREE),yes) files_gcj += \ $(PF)/share/man/man1/$(cmd_prefix)gcj$(pkg_ver).1 endif dirs_jdk = \ $(docdir)/$(p_jbase) \ $(PF)/bin \ $(PF)/share/man/man1 \ $(PF)/share/info \ $(gcc_lexec_dir) \ $(jvm_dir)/bin files_jdk = \ $(PF)/bin/{gappletviewer,gjdoc,gc-analyze,gjar,gjarsigner,gcjh,gjavah,gnative2ascii,grmic,gserialver,jv-convert,jcf-dump}$(pkg_ver) \ $(PF)/share/man/man1/{gappletviewer,gjdoc,gjar,gjarsigner,gcjh,gjavah,gnative2ascii,gserialver}$(pkg_ver).1 \ $(gcc_lib_dir)/include/{jni.h,jni_md.h,jvmpi.h} \ $(gcc_lib_dir)/include/{jawt.h,jawt_md.h} \ $(gcc_lib_dir)/include/gcj/libgcj-config.h \ $(PF)/$(libdir)/lib{gij,gcj,gcj-tools}.so \ $(PF)/$(libdir)/libgcj.spec \ $(jvm_dir)/include \ $(jvm_dir)/bin/{appletviewer,jar,jarsigner,javadoc,javah,native2ascii,rmic,serialver} \ $(PF)/lib/jvm-exports ifneq ($(GFDL_INVARIANT_FREE),yes) files_jdk += \ $(PF)/share/info/gcj* \ $(PF)/share/man/man1/{gc-analyze,grmic,jv-convert,jcf-dump}$(pkg_ver).1 endif dirs_jrehl = \ $(docdir)/$(p_jbase) \ $(PF)/bin \ $(PF)/share/man/man1 \ $(jvm_dir)/bin \ $(jvm_dir)/jre/lib \ $(jvm_dir)/lib \ var/lib/gcj$(pkg_ver) files_jrehl = \ $(PF)/bin/{gij,gcj-dbtool,gorbd,grmid,grmiregistry,gkeytool,gtnameserv}$(pkg_ver) \ $(PF)/share/man/man1/{gorbd,grmid,grmiregistry,gkeytool,gtnameserv}$(pkg_ver).1 \ $(jvm_dir)/jre/bin \ $(jvm_dir)/bin/{java,keytool,orbd,rmid,rmiregistry,tnameserv} \ $(jvm_dir)/jre/lib/rt.jar \ $(jvm_dir)/jre/lib/$(java_cpu)/{client,server} \ $(jvm_dir)/lib/tools.jar ifneq ($(GFDL_INVARIANT_FREE),yes) files_jrehl += \ $(PF)/share/man/man1/{gij,gcj-dbtool}$(pkg_ver).1 endif dirs_jre = \ $(docdir)/$(p_jbase) \ $(jvm_dir)/jre/lib/$(java_cpu) files_jre = \ $(jvm_dir)/jre/lib/$(java_cpu)/libjawt.so dirs_jlib = \ $(docdir)/$(p_jbase) \ $(gcj_vlibdir) \ $(PF)/$(libdir) \ $(jvm_dir)/jre/lib files_jlib = \ $(PF)/$(libdir)/libgij.so.* \ $(PF)/$(libdir)/libgcj-tools.so.* \ $(PF)/$(libdir)/libgcj.so.* \ $(gcj_vlibdir)/libjvm.so \ $(gcj_vlibdir)/libjavamath.so \ $(jvm_dir)/jre/lib/security # $(gcj_vlibdir)/libgconfpeer.so ifeq ($(with_java_alsa),yes) files_jlib += \ $(gcj_vlibdir)/libgjsmalsa.so endif dirs_jar = \ $(PF)/share/java files_jar = \ $(PF)/share/java/libgcj-$(BASE_VERSION).jar \ $(PF)/share/java/libgcj-tools-$(BASE_VERSION).jar dirs_jlibx = \ $(PF)/$(libdir) \ $(gcj_vlibdir) \ $(PF)/share/java files_jlibx = \ $(gcj_vlibdir)/libjawt.so \ $(gcj_vlibdir)/libgtkpeer.so #files_jgtk = \ # $(gcj_vlibdir)/libgtkpeer.so #files_jqt = \ # $(gcj_vlibdir)/libqtpeer.so dirs_jdev = \ $(PF)/{include,lib} \ $(jvm_dir)/include files_jdev = \ $(cxx_inc_dir)/{org,gcj,java,javax} \ $(cxx_inc_dir)/gnu/{awt,classpath,gcj,java,javax} \ $(PF)/$(libdir)/pkgconfig/libgcj-$(BASE_VERSION).pc \ $(gcj_vlibdir)/lib*peer.so ifeq ($(with_static_java),yes) files_jdev += \ $(PF)/$(libdir)/libgij.a \ $(PF)/$(libdir)/libgcj.a \ $(PF)/$(libdir)/libgcj-tools.a endif ifeq (,$(p_l64gcc)) p_l64gcc = lib64gcc$(GCC_SONAME) d_l64gcc = debian/$(p_l64gcc) endif ifeq ($(with_standalone_gcj),yes) dirs_gcj += \ $(gcc_lib_dir)/include \ $(PF)/share/man/man1 # XXX: what about triarch mapping? files_gcj += \ $(PF)/bin/{cpp,gcc,gcov}$(pkg_ver) \ $(gcc_lexec_dir)/{collect2,lto1,lto-wrapper} \ $(gcc_lexec_dir)/liblto_plugin.so{,.0,.0.0.0} \ $(gcc_lib_dir)/{libgcc*,libgcov.a,*.o} \ $(header_files) \ $(shell test -e $(d)/$(gcc_lib_dir)/SYSCALLS.c.X \ && echo $(gcc_lib_dir)/SYSCALLS.c.X) ifneq ($(GFDL_INVARIANT_FREE),yes) files_gcj += \ $(PF)/share/man/man1/{cpp,gcc,gcov}$(pkg_ver).1 endif ifeq ($(biarch64),yes) files_gcj += $(gcc_lib_dir)/$(biarch64subdir)/{libgcc*,libgcov.a,*.o} endif ifeq ($(biarch32),yes) files_gcj += $(gcc_lib_dir)/$(biarch32subdir)/{libgcc*,*.o} endif ifeq ($(biarchn32),yes) files_gcj += $(gcc_lib_dir)/$(biarchn32subdir)/{libgcc*,libgcov.a,*.o} endif ifeq ($(biarchx32),yes) files_gcj += $(gcc_lib_dir)/$(biarchx32subdir)/{libgcc*,libgcov.a,*.o} endif endif # ---------------------------------------------------------------------- $(binary_stamp)-jbase: $(install_dependencies) dh_testdir dh_testroot rm -rf $(d_jbase) dh_installdirs -p$(p_jbase) dh_installdocs -p$(p_jbase) dh_installchangelogs -p$(p_jbase) dh_compress -p$(p_jbase) dh_fixperms -p$(p_jbase) dh_gencontrol -p$(p_jbase) -- -v$(DEB_VERSION) $(common_substvars) dh_installdeb -p$(p_jbase) dh_md5sums -p$(p_jbase) dh_builddeb -p$(p_jbase) touch $@ # ---------------------------------------------------------------------- $(binary_stamp)-gcj: $(install_stamp) dh_testdir dh_testroot mv $(install_stamp) $(install_stamp)-tmp rm -rf $(d_gcj) dh_installdirs -p$(p_gcj) $(dirs_gcj) ifeq ($(DEB_CROSS),yes) ln -sf ../../../gcc/$(DEB_HOST_GNU_TYPE)/$(BASE_VERSION)/ecj1 \ $(d)/$(gcc_lib_dir)/ecj1 endif DH_COMPAT=2 dh_movefiles -p$(p_gcj) $(files_gcj) ifneq (,$(filter $(DEB_HOST_ARCH), arm armel)) ln -sf ../../ecj1 $(d_gcj)/$(gcc_lexec_dir)/ecj1 endif ifneq ($(DEB_CROSS),yes) ln -sf gcj$(pkg_ver) \ $(d_gcj)/$(PF)/bin/$(TARGET_ALIAS)-gcj$(pkg_ver) ifneq ($(GFDL_INVARIANT_FREE),yes) ln -sf gcj$(pkg_ver).1 \ $(d_gcj)/$(PF)/share/man/man1/$(TARGET_ALIAS)-gcj$(pkg_ver).1 endif endif debian/dh_doclink -p$(p_gcj) $(p_jbase) debian/dh_rmemptydirs -p$(p_gcj) dh_strip -p$(p_gcj) dh_compress -p$(p_gcj) dh_fixperms -p$(p_gcj) dh_shlibdeps -p$(p_gcj) -Xecj1 dh_gencontrol -p$(p_gcj) -- -v$(DEB_VERSION) $(common_substvars) dh_installdeb -p$(p_gcj) dh_md5sums -p$(p_gcj) dh_builddeb -p$(p_gcj) trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp) # ---------------------------------------------------------------------- $(binary_stamp)-libgcjjar: $(install_stamp) dh_testdir dh_testroot mv $(install_stamp) $(install_stamp)-tmp dh_installdirs -p$(p_jar) $(dirs_jar) DH_COMPAT=2 dh_movefiles -p$(p_jar) $(files_jar) ln -sf libgcj-$(BASE_VERSION).jar \ $(d_jar)/$(PF)/share/java/libgcj-$(GCC_VERSION).jar ln -sf libgcj-tools-$(BASE_VERSION).jar \ $(d_jar)/$(PF)/share/java/libgcj-tools-$(GCC_VERSION).jar debian/dh_doclink -p$(p_jar) $(p_jbase) debian/dh_rmemptydirs -p$(p_jar) dh_compress -p$(p_jar) dh_fixperms -p$(p_jar) dh_gencontrol -p$(p_jar) -- -v$(DEB_VERSION) $(common_substvars) dh_installdeb -p$(p_jar) dh_md5sums -p$(p_jar) dh_builddeb -p$(p_jar) trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp) # ---------------------------------------------------------------------- $(build_javasrc_stamp): $(build_stamp) PATH=$(PWD)/bin:$$PATH \ $(MAKE) -C $(buildlibdir)/libjava src.zip touch $@ $(binary_stamp)-libgcjsrc: $(install_stamp) $(build_javasrc_stamp) dh_testdir dh_testroot dh_installdirs -p$(p_jsrc) $(PF)/share/java $(jvm_dir) cp -p $(buildlibdir)/libjava/src.zip \ $(d_jsrc)/$(PF)/share/java/libgcj-src-$(BASE_VERSION).zip dh_link -p$(p_jsrc) \ $(PF)/share/java/libgcj-src-$(BASE_VERSION).zip \ $(jvm_dir)/src.zip debian/dh_doclink -p$(p_jsrc) $(p_jbase) debian/dh_rmemptydirs -p$(p_jsrc) dh_compress -p$(p_jsrc) dh_fixperms -p$(p_jsrc) dh_gencontrol -p$(p_jsrc) -- -v$(DEB_VERSION) $(common_substvars) dh_installdeb -p$(p_jsrc) dh_md5sums -p$(p_jsrc) dh_builddeb -p$(p_jsrc) touch $@ # ---------------------------------------------------------------------- libgcj_version = $$($(builddir)/gcc/xgcc -B$(builddir)/gcc/ --version \ | sed -n '/^xgcc/s/[^)]*) *\(.*\)/\1/p' | sed 's/ \[[^[]*$$//') libgcj_title = LibGCJ Classpath libgcjhbox_href = http://gcc.gnu.org/java libgcjhbox =