AminetAminet
Search:
84478 packages online
About
Recent
Browse
Search
Upload
Setup
Services

dev/gcc/x86-ami-gcc.lha

Mirror:Random
Showing:m68k-amigaosppc-amigaosppc-morphosi386-arosi386-amithlonppc-warpupppc-powerupgeneric
No screenshot available
Short:GCC v2.95.3 - Amithlon x86 cross compiler (68k hosted)
Author:Jens.Langner at light-speed.de (Jens Langner)
Uploader:Jens Langner light-speed de (Jens Langner)
Type:dev/gcc
Version:2.95.3
Requires:dev/gcc/x86-ami-bin.lha
Architecture:m68k-amigaos; i386-amithlon
Date:2002-07-25
Download:http://aminet.net/dev/gcc/x86-ami-gcc.lha - View contents
Readme:http://aminet.net/dev/gcc/x86-ami-gcc.readme
Downloads:1392

About
-----
This archive contains a uptodate version of a AmigaOS (68k)
hosted gcc cross compiler environment for compiling/porting
existing applications to Amithlon (x86).

By installing this cross compiler, one will be able to
easily port existing AmigaOS application to the new x86 hosted
Amithlon emulation (www.amithlon.net)

This version is based on the 2.95.3 version of the gcc compiler
with changed mainly made by Martin Blom <martin at blom.org>.
http://www.lysator.liu.se/~lcs/files/gg-cross

Please note that you also need the x86-ami-bin.lha archive to
successfully use the cross-compiler.

Jens Langner <Jens.Langner at light-speed.de>
July 2002

Documentation
-------------

Setting up a i686be-amithlon cross compiler under AmigaOS
---------------------------------------------------------

1) If you don't have a GeekGadget environment:

Make a GeekGadget directory somewhere, and assign GG: to it.

   1> makedir some_volume:GeekGadgets
   1> assign GG: some_volume:GeekGadgets

Make a GG:bin directory, and add it to your path, or add it to
your c: assign.

   1> makedir GG:bin
   1> path GG:bin add


2) Unarchive the "x86-ami-bin.lha" and "x86-ami-gcc.lha" in GG:

   1> cd GG:
   1> lha x  some_dir/x86-ami-bin.lha
   1> lha x  some_dir/x86-ami-gcc.lha

 Warning 1:
 ----------
If you are unarchiving on a filesystem that doesn't support
hard-links (e.g. SFS), you will have error messages and will
need to make the links by hand (or replace them with copies).
You need to have:
  gg:i686be-amithlon/bin/as     ->  gg:bin/i686be-amithlon-as
  gg:i686be-amithlon/bin/ar     ->  gg:bin/i686be-amithlon-ar
  gg:i686be-amithlon/bin/ld     ->  gg:bin/i686be-amithlon-ld
  gg:i686be-amithlon/bin/nm     ->  gg:bin/i686be-amithlon-nm
  gg:i686be-amithlon/bin/ranlib ->  gg:bin/i686be-amithlon-ranlib
  gg:i686be-amithlon/bin/strip  ->  gg:bin/i686be-amithlon-strip

where "->" means "link to" or "copy of".

 Warning 2:
 ----------
If using soft links, you have to specify the full path of the
destination, not just a relative one.

 Warning 3:
 ----------
If using soft links under SFS, you need at least SFS version 1.62.


3) Copy the contents of the amithlon gcc includes to
   GG:i686be-amithlon/sys-include

    1> copy somepath/includeamithlon GG:i686be-amithlon/sys-include all


4) Copy the lib directory from the amithlon lib archive to
   GG:i686be-amithlon/lib and GG:i686be-amithlon/lib/libnix

    1> copy somepath/lib/libamigastubs.a GG:i686be-amithlon/lib

    1> copy somepath/lib/libnix GG:i686be-amithlon/lib ALL

  you can get those files from
  http://www.lysator.liu.se/~lcs/files/gg-cross


    Usage
    -----

Currently, as there is no ixemul part for this amithlon gcc compiler,
you always have to specify -noixemul for compiling something.

To compile 'hello.c' to 'hello' using libnix:

   1> i686be-amithlon-gcc -noixemul -o hello hello.c

To strip debugging informations and symbols from an executable file:

   1> i686be-amithlon-strip hello

To compile and link separately:

   1> i686be-amithlon-gcc -noixemul -c hello1.c
   1> i686be-amithlon-gcc -noixemul -c hello2.c
   1> i686be-amithlon-gcc -noixemul -r -o hello hello1.o hello2.o

(the last step can be replaced by a direct call to i686be-amithlon-ld)

Please note that your have to use the "-r" option for the moment like
in former PowerUP days, as the linker isn`t fully working yet without
it.

* Some useful options:

   -O, -O2, -O3 to optimize (-O3 make files bigger, be careful)

   -mcpu=i386, -mcpu=i486, -mcpu=pentium, -mcpu=k6 to optimize for a
   specific cpu. Files optimized for one processor still work on others.

   -v to view the exact commands executed by gcc, and its include
search path. Useful to find out installation problems.


* Predefined symbols:

__ELF__, __pentiumpro__, __amithlon__

__i386__ if compiled with -mcpu=i386
__i486__ if compiled with -mcpu=i486
__i586__ if compiled with -mcpu=i586 or -mcpu=k6
__i686__ if compiled without -mcpu= or -mcpu=pentiumpro

__amigaos__, amigaos, amiga, AMIGA, MCH_AMIGA for compatibility


* Some remarks:

1) This compiler uses the natural alignment, i.e. in
   struct S
   {
     short a;
     long b;
   };

the offset of 'b' is 4, and not 2 as with 68k compilers. You can
force the alignment to be 2 by defining S as follow:

  struct S
  {
    short a;
    long b __attribute__((aligned(2)));
  } __attribute__((packed));

or even better by:

  #pragma pack(2)
   struct S
   {
     short a;
     long b;
   };
  #pragma pack()
 
Usually you shouldn't care about that, except in interfaces with
external libraries, or for binary compatibility if you read/write
such structures from/to files.

Attn: floats and doubles must _never_ have an alignment lower than 4.

2) The diff file on which this release was build can be found at:
   http://www.lysator.liu.se/~lcs/files/gg-cross

Have phun
and keep up the good work

Jens Langner <Jens.Langner at light-speed.de>
July 2002


Contents of dev/gcc/x86-ami-gcc.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO     CRC       STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[generic]                41069  100236  41.0% -lh5- 21b3 Jul 24  2002 bin/i686be-amithlon-c++
[generic]                24447   53184  46.0% -lh5- edaa Jul 24  2002 bin/i686be-amithlon-c++filt
[generic]                41069  100236  41.0% -lh5- 21b3 Jul 24  2002 bin/i686be-amithlon-g++
[generic]                40313   99020  40.7% -lh5- b237 Jul 24  2002 bin/i686be-amithlon-gcc
[generic]                27767   69172  40.1% -lh5- 59d6 Jul 24  2002 bin/i686be-amithlon-protoize
[generic]                25475   64340  39.6% -lh5- 0970 Jul 24  2002 bin/i686be-amithlon-unprotoize
[generic]                 7009   18007  38.9% -lh5- fa00 Oct 21  2000 copying
[generic]                 1616    3682  43.9% -lh5- ab45 Oct 21  2000 i686be-amithlon/include/a.out.h
[generic]                 1579    3872  40.8% -lh5- 1a82 Oct 21  2000 i686be-amithlon/include/amitcp/socketbasetags.h
[generic]                  821    1767  46.5% -lh5- 8cf8 Oct 21  2000 i686be-amithlon/include/amitcp/usergroup.h
[generic]                 1954    4716  41.4% -lh5- 0c0c Sep 15  2000 i686be-amithlon/include/ansidecl.h
[generic]                 1303    2756  47.3% -lh5- 60f8 Oct 21  2000 i686be-amithlon/include/ar.h
[generic]                 1638    3983  41.1% -lh5- e646 Oct 21  2000 i686be-amithlon/include/arpa/ftp.h
[generic]                 1196    2475  48.3% -lh5- 8570 Oct 21  2000 i686be-amithlon/include/arpa/inet.h
[generic]                 3430   10075  34.0% -lh5- 87d1 Oct 21  2000 i686be-amithlon/include/arpa/nameser.h
[generic]                 4056   11950  33.9% -lh5- 55f6 Oct 21  2000 i686be-amithlon/include/arpa/telnet.h
[generic]                 1469    3353  43.8% -lh5- 6269 Oct 21  2000 i686be-amithlon/include/arpa/tftp.h
[generic]                  475    1486  32.0% -lh5- b8c7 Jul 24  2002 i686be-amithlon/include/assert.h
[generic]                27058   98588  27.4% -lh5- c09f Sep 15  2000 i686be-amithlon/include/bfd.h
[generic]                 6080   20433  29.8% -lh5- 3650 Sep 15  2000 i686be-amithlon/include/bfdlink.h
[generic]                 1665    4744  35.1% -lh5- 055f Oct 21  2000 i686be-amithlon/include/bitstring.h
[generic]                   20      20 100.0% -lh0- 36e8 Oct 21  2000 i686be-amithlon/include/bstring.h
[generic]                 1719    4711  36.5% -lh5- 75ec Oct 21  2000 i686be-amithlon/include/ctype.h
[generic]                 3113    9911  31.4% -lh5- be74 Oct 21  2000 i686be-amithlon/include/db.h
[generic]                 1887    4155  45.4% -lh5- a39e Oct 21  2000 i686be-amithlon/include/dirent.h
[generic]                 1399    3276  42.7% -lh5- 703e Oct 21  2000 i686be-amithlon/include/err.h
[generic]                 2858    8326  34.3% -lh5- 4b8a Oct 21  2000 i686be-amithlon/include/errno.h
[generic]                   23      23 100.0% -lh0- 5c1b Oct 21  2000 i686be-amithlon/include/fcntl.h
[generic]                   68      70  97.1% -lh5- bc34 Oct 21  2000 i686be-amithlon/include/float.h
[generic]                 1334    2694  49.5% -lh5- e665 Oct 21  2000 i686be-amithlon/include/fnmatch.h
[generic]                 2413    6329  38.1% -lh5- 1b9a Oct 21  2000 i686be-amithlon/include/fts.h
[generic]                  873    3182  27.4% -lh5- c39a Sep 19  2000 i686be-amithlon/include/g++-3/algo.h
[generic]                  660    2086  31.6% -lh5- 2a07 Sep 19  2000 i686be-amithlon/include/g++-3/algobase.h
[generic]                  473    1368  34.6% -lh5- 5f10 Sep 19  2000 i686be-amithlon/include/g++-3/algorithm
[generic]                  579    1310  44.2% -lh5- 1a0c Sep 19  2000 i686be-amithlon/include/g++-3/alloc.h
[generic]                 7718   33755  22.9% -lh5- 4cc6 Sep 19  2000 i686be-amithlon/include/g++-3/bitset
[generic]                 1052    2296  45.8% -lh5- 1276 Sep 19  2000 i686be-amithlon/include/g++-3/builtinbuf.h
[generic]                  533    1467  36.3% -lh5- ca26 Sep 19  2000 i686be-amithlon/include/g++-3/bvector.h
[generic]                  124     152  81.6% -lh5- 9ed2 Sep 19  2000 i686be-amithlon/include/g++-3/cassert
[generic]                  126     157  80.3% -lh5- 698a Sep 19  2000 i686be-amithlon/include/g++-3/cctype
[generic]                  124     155  80.0% -lh5- 2c7b Sep 19  2000 i686be-amithlon/include/g++-3/cerrno
[generic]                  121     149  81.2% -lh5- 6205 Sep 19  2000 i686be-amithlon/include/g++-3/cfloat
[generic]                  124     152  81.6% -lh5- 4d33 Sep 19  2000 i686be-amithlon/include/g++-3/ciso646
[generic]                  122     152  80.3% -lh5- b6fb Sep 19  2000 i686be-amithlon/include/g++-3/climits
[generic]                  124     160  77.5% -lh5- 9e1f Sep 19  2000 i686be-amithlon/include/g++-3/clocale
[generic]                  519    1860  27.9% -lh5- 2186 Sep 19  2000 i686be-amithlon/include/g++-3/cmath
[generic]                  215     376  57.2% -lh5- d592 Sep 19  2000 i686be-amithlon/include/g++-3/complex
[generic]                  129     141  91.5% -lh5- 49cf Sep 19  2000 i686be-amithlon/include/g++-3/complex.h
[generic]                  126     161  78.3% -lh5- 5e7c Sep 19  2000 i686be-amithlon/include/g++-3/csetjmp
[generic]                  125     161  77.6% -lh5- 0740 Sep 19  2000 i686be-amithlon/include/g++-3/csignal
[generic]                  124     152  81.6% -lh5- 050a Sep 19  2000 i686be-amithlon/include/g++-3/cstdarg
[generic]                  122     152  80.3% -lh5- fbde Sep 19  2000 i686be-amithlon/include/g++-3/cstddef
[generic]                  124     155  80.0% -lh5- 9f97 Sep 19  2000 i686be-amithlon/include/g++-3/cstdio
[generic]                  262     443  59.1% -lh5- da38 Sep 19  2000 i686be-amithlon/include/g++-3/cstdlib
[generic]                  592    1812  32.7% -lh5- af5a Sep 19  2000 i686be-amithlon/include/g++-3/cstring
[generic]                  116     144  80.6% -lh5- 827a Sep 19  2000 i686be-amithlon/include/g++-3/ctime
[generic]                  126     157  80.3% -lh5- 6324 Sep 19  2000 i686be-amithlon/include/g++-3/cwchar
[generic]                  132     165  80.0% -lh5- d27a Sep 19  2000 i686be-amithlon/include/g++-3/cwctype
[generic]                 1014    2331  43.5% -lh5- 1227 Sep 19  2000 i686be-amithlon/include/g++-3/defalloc.h
[generic]                  464    1350  34.4% -lh5- f708 Sep 19  2000 i686be-amithlon/include/g++-3/deque
[generic]                  485    1373  35.3% -lh5- b687 Sep 19  2000 i686be-amithlon/include/g++-3/deque.h
[generic]                 2662    6882  38.7% -lh5- d5a0 Sep 19  2000 i686be-amithlon/include/g++-3/editbuf.h
[generic]                 1122    2223  50.5% -lh5- c96e Sep 19  2000 i686be-amithlon/include/g++-3/floatio.h
[generic]                  124     153  81.0% -lh5- 515f Sep 19  2000 i686be-amithlon/include/g++-3/fstream
[generic]                 1210    3523  34.3% -lh5- 5615 Sep 19  2000 i686be-amithlon/include/g++-3/fstream.h
[generic]                  863    3327  25.9% -lh5- d351 Sep 19  2000 i686be-amithlon/include/g++-3/function.h
[generic]                  413     762  54.2% -lh5- c4fe Sep 19  2000 i686be-amithlon/include/g++-3/functional
[generic]                  572    1559  36.7% -lh5- 0ddf Sep 19  2000 i686be-amithlon/include/g++-3/hashtable.h
[generic]                  463    1330  34.8% -lh5- 1f1d Sep 19  2000 i686be-amithlon/include/g++-3/hash_map
[generic]                  523    1516  34.5% -lh5- 7890 Sep 19  2000 i686be-amithlon/include/g++-3/hash_map.h
[generic]                  462    1330  34.7% -lh5- b216 Sep 19  2000 i686be-amithlon/include/g++-3/hash_set
[generic]                  495    1474  33.6% -lh5- 1ab9 Sep 19  2000 i686be-amithlon/include/g++-3/hash_set.h
[generic]                  491    1427  34.4% -lh5- 1115 Sep 19  2000 i686be-amithlon/include/g++-3/heap.h
[generic]                 1280    2925  43.8% -lh5- 25f5 Sep 19  2000 i686be-amithlon/include/g++-3/indstream.h
[generic]                  816    2705  30.2% -lh5- 4674 Sep 19  2000 i686be-amithlon/include/g++-3/iolibio.h
[generic]                  123     153  80.4% -lh5- b619 Sep 19  2000 i686be-amithlon/include/g++-3/iomanip
[generic]                 1520    5709  26.6% -lh5- 4742 Sep 19  2000 i686be-amithlon/include/g++-3/iomanip.h
[generic]                  154     279  55.2% -lh5- 5795 Sep 19  2000 i686be-amithlon/include/g++-3/iosfwd
[generic]                 1422    3446  41.3% -lh5- a6d8 Sep 19  2000 i686be-amithlon/include/g++-3/iostdio.h
[generic]                  125     156  80.1% -lh5- 83c3 Sep 19  2000 i686be-amithlon/include/g++-3/iostream
[generic]                 2604    9675  26.9% -lh5- d630 Sep 19  2000 i686be-amithlon/include/g++-3/iostream.h
[generic]                  615    1165  52.8% -lh5- a320 Sep 19  2000 i686be-amithlon/include/g++-3/iostreamP.h
[generic]                  605    1142  53.0% -lh5- 5450 Sep 19  2000 i686be-amithlon/include/g++-3/istream.h
[generic]                  518    1479  35.0% -lh5- d5ee Sep 19  2000 i686be-amithlon/include/g++-3/iterator
[generic]                  818    2792  29.3% -lh5- 4f90 Sep 19  2000 i686be-amithlon/include/g++-3/iterator.h
[generic]                 3762   10827  34.7% -lh5- 490a Sep 19  2000 i686be-amithlon/include/g++-3/libio.h
[generic]                 6916   25625  27.0% -lh5- f472 Sep 19  2000 i686be-amithlon/include/g++-3/libioP.h
[generic]                  465    1351  34.4% -lh5- 428f Sep 19  2000 i686be-amithlon/include/g++-3/list
[generic]                  486    1373  35.4% -lh5- 69cb Sep 19  2000 i686be-amithlon/include/g++-3/list.h
[generic]                  465    1329  35.0% -lh5- a38a Sep 19  2000 i686be-amithlon/include/g++-3/map
[generic]                  477    1345  35.5% -lh5- ab9a Sep 19  2000 i686be-amithlon/include/g++-3/map.h
[generic]                 1072    2869  37.4% -lh5- 50a3 Sep 19  2000 i686be-amithlon/include/g++-3/memory
[generic]                  487    1370  35.5% -lh5- 2c0b Sep 19  2000 i686be-amithlon/include/g++-3/multimap.h
[generic]                  486    1370  35.5% -lh5- 3b62 Sep 19  2000 i686be-amithlon/include/g++-3/multiset.h
[generic]                  478    1398  34.2% -lh5- e725 Sep 19  2000 i686be-amithlon/include/g++-3/numeric
[generic]                  605    1142  53.0% -lh5- 5450 Sep 19  2000 i686be-amithlon/include/g++-3/ostream.h
[generic]                  528    1518  34.8% -lh5- ac20 Sep 19  2000 i686be-amithlon/include/g++-3/pair.h
[generic]                 2239    5431  41.2% -lh5- 7f48 Sep 19  2000 i686be-amithlon/include/g++-3/parsestream.h
[generic]                 1084    2291  47.3% -lh5- 307e Sep 19  2000 i686be-amithlon/include/g++-3/pfstream.h
[generic]                 1304    3201  40.7% -lh5- 89fb Sep 19  2000 i686be-amithlon/include/g++-3/PlotFile.h
[generic]                  923    1787  51.7% -lh5- 749f Sep 19  2000 i686be-amithlon/include/g++-3/procbuf.h
[generic]                 4306   15858  27.2% -lh5- 4e16 Sep 19  2000 i686be-amithlon/include/g++-3/pthread_alloc
[generic]                  459     866  53.0% -lh5- a962 Sep 19  2000 i686be-amithlon/include/g++-3/pthread_alloc.h
[generic]                  490    1475  33.2% -lh5- 29c6 Sep 19  2000 i686be-amithlon/include/g++-3/queue
[generic]                  448     924  48.5% -lh5- 34e0 Sep 19  2000 i686be-amithlon/include/g++-3/rope
[generic]                  466     909  51.3% -lh5- e5e3 Sep 19  2000 i686be-amithlon/include/g++-3/rope.h
[generic]                11823   47485  24.9% -lh5- 039d Sep 19  2000 i686be-amithlon/include/g++-3/ropeimpl.h
[generic]                  466    1329  35.1% -lh5- 5331 Sep 19  2000 i686be-amithlon/include/g++-3/set
[generic]                  477    1345  35.5% -lh5- 24f2 Sep 19  2000 i686be-amithlon/include/g++-3/set.h
[generic]                  953    1909  49.9% -lh5- fe03 Sep 19  2000 i686be-amithlon/include/g++-3/SFile.h
[generic]                  420     807  52.0% -lh5- 9209 Sep 19  2000 i686be-amithlon/include/g++-3/slist
[generic]                  443     830  53.4% -lh5- fec8 Sep 19  2000 i686be-amithlon/include/g++-3/slist.h
[generic]                  471    1378  34.2% -lh5- dbb7 Sep 19  2000 i686be-amithlon/include/g++-3/stack
[generic]                  508    1466  34.7% -lh5- 5474 Sep 19  2000 i686be-amithlon/include/g++-3/stack.h
[generic]                 2680   13525  19.8% -lh5- 4195 Sep 19  2000 i686be-amithlon/include/g++-3/std/bastring.cc
[generic]                 4347   22099  19.7% -lh5- a4eb Sep 19  2000 i686be-amithlon/include/g++-3/std/bastring.h
[generic]                 2249    7053  31.9% -lh5- c46b Sep 19  2000 i686be-amithlon/include/g++-3/std/complext.cc
[generic]                 2008   11535  17.4% -lh5- 8631 Sep 19  2000 i686be-amithlon/include/g++-3/std/complext.h
[generic]                 1163    3650  31.9% -lh5- 9c05 Sep 19  2000 i686be-amithlon/include/g++-3/std/dcomplex.h
[generic]                 1128    3510  32.1% -lh5- 7d1c Sep 19  2000 i686be-amithlon/include/g++-3/std/fcomplex.h
[generic]                 1300    3331  39.0% -lh5- b9f4 Sep 19  2000 i686be-amithlon/include/g++-3/std/gslice.h
[generic]                 1582    5611  28.2% -lh5- 136a Sep 19  2000 i686be-amithlon/include/g++-3/std/gslice_array.h
[generic]                 1567    5446  28.8% -lh5- 3494 Sep 19  2000 i686be-amithlon/include/g++-3/std/indirect_array.h
[generic]                 1175    3876  30.3% -lh5- 3a62 Sep 19  2000 i686be-amithlon/include/g++-3/std/ldcomplex.h
[generic]                 1571    5264  29.8% -lh5- fd34 Sep 19  2000 i686be-amithlon/include/g++-3/std/mask_array.h
[generic]                 1047    2232  46.9% -lh5- 214f Sep 19  2000 i686be-amithlon/include/g++-3/std/slice.h
[generic]                 1593    5364  29.7% -lh5- f1a1 Sep 19  2000 i686be-amithlon/include/g++-3/std/slice_array.h
[generic]                 4375   24025  18.2% -lh5- 73ec Sep 19  2000 i686be-amithlon/include/g++-3/std/std_valarray.h
[generic]                 1457    5162  28.2% -lh5- 3573 Sep 19  2000 i686be-amithlon/include/g++-3/std/straits.h
[generic]                 2431   11293  21.5% -lh5- 5222 Sep 19  2000 i686be-amithlon/include/g++-3/std/valarray_array.h
[generic]                 1274    3867  32.9% -lh5- b5be Sep 19  2000 i686be-amithlon/include/g++-3/std/valarray_array.tcc
[generic]                 5127   41152  12.5% -lh5- bc93 Sep 19  2000 i686be-amithlon/include/g++-3/std/valarray_meta.h
[generic]                 1069    2899  36.9% -lh5- f52b Sep 19  2000 i686be-amithlon/include/g++-3/stdexcept
[generic]                 1107    2602  42.5% -lh5- e783 Sep 19  2000 i686be-amithlon/include/g++-3/stdiostream.h
[generic]                  159     305  52.1% -lh5- 8491 Sep 19  2000 i686be-amithlon/include/g++-3/stl.h
[generic]                11816   92381  12.8% -lh5- f5ee Sep 19  2000 i686be-amithlon/include/g++-3/stl_algo.h
[generic]                 3242   17657  18.4% -lh5- 18c8 Sep 19  2000 i686be-amithlon/include/g++-3/stl_algobase.h
[generic]                 8829   33834  26.1% -lh5- 9672 Sep 19  2000 i686be-amithlon/include/g++-3/stl_alloc.h
[generic]                 4980   26043  19.1% -lh5- 17ea Sep 19  2000 i686be-amithlon/include/g++-3/stl_bvector.h
[generic]                 3107   11894  26.1% -lh5- ec19 Sep 19  2000 i686be-amithlon/include/g++-3/stl_config.h
[generic]                  928    2704  34.3% -lh5- 3d9c Sep 19  2000 i686be-amithlon/include/g++-3/stl_construct.h
[generic]                 9741   56129  17.4% -lh5- 5a01 Sep 19  2000 i686be-amithlon/include/g++-3/stl_deque.h
[generic]                 3952   22197  17.8% -lh5- 9e4b Sep 19  2000 i686be-amithlon/include/g++-3/stl_function.h
[generic]                 5894   32407  18.2% -lh5- 970a Sep 19  2000 i686be-amithlon/include/g++-3/stl_hashtable.h
[generic]                  802    2818  28.5% -lh5- 4260 Sep 19  2000 i686be-amithlon/include/g++-3/stl_hash_fun.h
[generic]                 2243   16001  14.0% -lh5- f502 Sep 19  2000 i686be-amithlon/include/g++-3/stl_hash_map.h
[generic]                 2142   15388  13.9% -lh5- 89fc Sep 19  2000 i686be-amithlon/include/g++-3/stl_hash_set.h
[generic]                 1553    9055  17.2% -lh5- 31c6 Sep 19  2000 i686be-amithlon/include/g++-3/stl_heap.h
[generic]                 4324   28835  15.0% -lh5- a7dc Sep 19  2000 i686be-amithlon/include/g++-3/stl_iterator.h
[generic]                 5008   24850  20.2% -lh5- 9d36 Sep 19  2000 i686be-amithlon/include/g++-3/stl_list.h
[generic]                 2115    8722  24.2% -lh5- 7384 Sep 19  2000 i686be-amithlon/include/g++-3/stl_map.h
[generic]                 1983    8707  22.8% -lh5- 5832 Sep 19  2000 i686be-amithlon/include/g++-3/stl_multimap.h
[generic]                 1784    7875  22.7% -lh5- 1f38 Sep 19  2000 i686be-amithlon/include/g++-3/stl_multiset.h
[generic]                 1534    7291  21.0% -lh5- 0495 Sep 19  2000 i686be-amithlon/include/g++-3/stl_numeric.h
[generic]                  826    2340  35.3% -lh5- 9f3b Sep 19  2000 i686be-amithlon/include/g++-3/stl_pair.h
[generic]                 1414    6144  23.0% -lh5- 6d0e Sep 19  2000 i686be-amithlon/include/g++-3/stl_queue.h
[generic]                  870    2595  33.5% -lh5- 557d Sep 19  2000 i686be-amithlon/include/g++-3/stl_raw_storage_iter.h
[generic]                  613    1828  33.5% -lh5- 83b7 Sep 19  2000 i686be-amithlon/include/g++-3/stl_relops.h
[generic]                19978   94368  21.2% -lh5- ce97 Sep 19  2000 i686be-amithlon/include/g++-3/stl_rope.h
[generic]                 1828    7709  23.7% -lh5- e106 Sep 19  2000 i686be-amithlon/include/g++-3/stl_set.h
[generic]                 5497   28634  19.2% -lh5- 6895 Sep 19  2000 i686be-amithlon/include/g++-3/stl_slist.h
[generic]                 1001    3343  29.9% -lh5- 6191 Sep 19  2000 i686be-amithlon/include/g++-3/stl_stack.h
[generic]                 1560    4676  33.4% -lh5- 72d7 Sep 19  2000 i686be-amithlon/include/g++-3/stl_tempbuf.h
[generic]                 7981   43561  18.3% -lh5- d2c4 Sep 19  2000 i686be-amithlon/include/g++-3/stl_tree.h
[generic]                 1818    9344  19.5% -lh5- 1e22 Sep 19  2000 i686be-amithlon/include/g++-3/stl_uninitialized.h
[generic]                 4660   27313  17.1% -lh5- 263c Sep 19  2000 i686be-amithlon/include/g++-3/stl_vector.h
[generic]                  920    2033  45.3% -lh5- 095d Sep 19  2000 i686be-amithlon/include/g++-3/stream.h
[generic]                 5601   17057  32.8% -lh5- c7be Sep 19  2000 i686be-amithlon/include/g++-3/streambuf.h
[generic]                 1173    2375  49.4% -lh5- 1ab6 Sep 19  2000 i686be-amithlon/include/g++-3/strfile.h
[generic]                  156     238  65.5% -lh5- 1595 Sep 19  2000 i686be-amithlon/include/g++-3/string
[generic]                  125     159  78.6% -lh5- 2de8 Sep 19  2000 i686be-amithlon/include/g++-3/strstream
[generic]                 1491    4328  34.5% -lh5- 1e6b Sep 19  2000 i686be-amithlon/include/g++-3/strstream.h
[generic]                  651    1898  34.3% -lh5- 08a8 Sep 19  2000 i686be-amithlon/include/g++-3/tempbuf.h
[generic]                  499    1423  35.1% -lh5- 5219 Sep 19  2000 i686be-amithlon/include/g++-3/tree.h
[generic]                 2053   12934  15.9% -lh5- e82e Sep 19  2000 i686be-amithlon/include/g++-3/type_traits.h
[generic]                  452    1301  34.7% -lh5- 464b Sep 19  2000 i686be-amithlon/include/g++-3/utility
[generic]                  106     131  80.9% -lh5- 9f34 Sep 19  2000 i686be-amithlon/include/g++-3/valarray
[generic]                  468    1379  33.9% -lh5- 09ac Sep 19  2000 i686be-amithlon/include/g++-3/vector
[generic]                  487    1378  35.3% -lh5- 6a0c Sep 19  2000 i686be-amithlon/include/g++-3/vector.h
[generic]                 1899    4238  44.8% -lh5- 521f Oct 21  2000 i686be-amithlon/include/glob.h
[generic]                 1129    2261  49.9% -lh5- f12a Oct 21  2000 i686be-amithlon/include/glue.h
[generic]                 2510    7445  33.7% -lh5- 3180 Oct 21  2000 i686be-amithlon/include/gnu.a.out.h
[generic]                 1208    2553  47.3% -lh5- 2bdf Oct 21  2000 i686be-amithlon/include/grp.h
[generic]                  701    1815  38.6% -lh5- f30d Oct 21  2000 i686be-amithlon/include/gvarargs.h
[generic]                  762    1594  47.8% -lh5- f9cf Oct 21  2000 i686be-amithlon/include/inetd.h
[generic]                  287     560  51.2% -lh5- a45e Oct 21  2000 i686be-amithlon/include/init.h
[generic]                 3996   10143  39.4% -lh5- f1c2 Oct 21  2000 i686be-amithlon/include/ix.h
[generic]                 1392    3164  44.0% -lh5- f2f0 Oct 21  2000 i686be-amithlon/include/kvm.h
[generic]                 1379    3220  42.8% -lh5- 1815 Oct 21  2000 i686be-amithlon/include/limits.h
[generic]                 1365    2905  47.0% -lh5- b493 Oct 21  2000 i686be-amithlon/include/locale.h
[generic]                 1311    2954  44.4% -lh5- 6b00 Oct 21  2000 i686be-amithlon/include/m68k/asm.h
[generic]                 1354    2883  47.0% -lh5- d6a3 Oct 21  2000 i686be-amithlon/include/m68k/signal.h
[generic]                 1302    2805  46.4% -lh5- 78e2 Oct 21  2000 i686be-amithlon/include/m68k/trap.h
[generic]                 1755    3668  47.8% -lh5- a79f Oct 21  2000 i686be-amithlon/include/machine/ansi.h
[generic]                  123     147  83.7% -lh5- a3a5 Oct 21  2000 i686be-amithlon/include/machine/asm.h
[generic]                  415    1218  34.1% -lh5- d9e9 Oct 21  2000 i686be-amithlon/include/machine/cdefs.h
[generic]                 3162    7359  43.0% -lh5- 5f91 Oct 21  2000 i686be-amithlon/include/machine/cpu.h
[generic]                 1361    3021  45.1% -lh5- 0a1d Oct 21  2000 i686be-amithlon/include/machine/endian.h
[generic]                 1629    3978  41.0% -lh5- e300 Oct 21  2000 i686be-amithlon/include/machine/float.h
[generic]                 1744    4779  36.5% -lh5- 5ed7 Oct 21  2000 i686be-amithlon/include/machine/frame.h
[generic]                 1579    4143  38.1% -lh5- 4894 Oct 21  2000 i686be-amithlon/include/machine/limits.h
[generic]                 1170    2383  49.1% -lh5- 9373 Oct 21  2000 i686be-amithlon/include/machine/mtpr.h
[generic]                 3107    8005  38.8% -lh5- ec53 Oct 21  2000 i686be-amithlon/include/machine/param.h
[generic]                 1468    2988  49.1% -lh5- cacb Oct 21  2000 i686be-amithlon/include/machine/pcb.h
[generic]                 1909    4351  43.9% -lh5- f53e Oct 21  2000 i686be-amithlon/include/machine/pmap.h
[generic]                 1144    2273  50.3% -lh5- 6ac2 Oct 21  2000 i686be-amithlon/include/machine/proc.h
[generic]                 1362    3448  39.5% -lh5- ccb4 Oct 21  2000 i686be-amithlon/include/machine/psl.h
[generic]                  301     563  53.5% -lh5- 5301 Oct 21  2000 i686be-amithlon/include/machine/reg.h
[generic]                  127     156  81.4% -lh5- e8e9 Oct 21  2000 i686be-amithlon/include/machine/signal.h
[generic]                  200     264  75.8% -lh5- 6256 Oct 21  2000 i686be-amithlon/include/machine/trap.h
[generic]                 1354    2858  47.4% -lh5- 9ef0 Oct 21  2000 i686be-amithlon/include/machine/types.h
[generic]                 4093    9573  42.8% -lh5- 4576 Oct 21  2000 i686be-amithlon/include/machine/vmparam.h
[generic]                   88      88 100.0% -lh0- 7ea5 Oct 21  2000 i686be-amithlon/include/malloc.h
[generic]                 1935   10399  18.6% -lh5- eb86 Oct 21  2000 i686be-amithlon/include/math-68881.h
[generic]                 1868    4792  39.0% -lh5- 72a2 Oct 21  2000 i686be-amithlon/include/math.h
[generic]                  954    1900  50.2% -lh5- 6e0a Oct 21  2000 i686be-amithlon/include/memory.h
[generic]                 1864    4327  43.1% -lh5- 48c6 Oct 21  2000 i686be-amithlon/include/mpool.h
[generic]                 1461    3021  48.4% -lh5- e180 Oct 21  2000 i686be-amithlon/include/ndbm.h
[generic]                   58      62  93.5% -lh5- 5715 Oct 21  2000 i686be-amithlon/include/ndir.h
[generic]                  778    1458  53.4% -lh5- 5b18 Oct 21  2000 i686be-amithlon/include/net/af.h
[generic]                 3363    9355  35.9% -lh5- 8ff5 Oct 21  2000 i686be-amithlon/include/net/bpf.h
[generic]                 1864    4215  44.2% -lh5- ab3f Oct 21  2000 i686be-amithlon/include/net/bpfdesc.h
[generic]                 3155    8485  37.2% -lh5- f54a Oct 21  2000 i686be-amithlon/include/net/if.h
[generic]                 1180    2703  43.7% -lh5- f850 Oct 21  2000 i686be-amithlon/include/net/if_arp.h
[generic]                 1767    3571  49.5% -lh5- 52d2 Oct 21  2000 i686be-amithlon/include/net/if_dl.h
[generic]                 1323    2894  45.7% -lh5- 7ecd Oct 21  2000 i686be-amithlon/include/net/if_llc.h
[generic]                 1650    3629  45.5% -lh5- c9b8 Oct 21  2000 i686be-amithlon/include/net/if_slvar.h
[generic]                 1393    3316  42.0% -lh5- 4986 Oct 21  2000 i686be-amithlon/include/net/if_types.h
[generic]                  968    1950  49.6% -lh5- 1137 Oct 21  2000 i686be-amithlon/include/net/netisr.h
[generic]                 1926    4730  40.7% -lh5- 6e71 Oct 21  2000 i686be-amithlon/include/net/radix.h
[generic]                 1079    2345  46.0% -lh5- 3e20 Oct 21  2000 i686be-amithlon/include/net/raw_cb.h
[generic]                 4142   11780  35.2% -lh5- a566 Oct 21  2000 i686be-amithlon/include/net/route.h
[generic]                 2993    6924  43.2% -lh5- 5c13 Oct 21  2000 i686be-amithlon/include/net/slcompress.h
[generic]                 2049    5272  38.9% -lh5- 7633 Oct 21  2000 i686be-amithlon/include/netdb.h
[generic]                 1257    2776  45.3% -lh5- 244d Oct 21  2000 i686be-amithlon/include/netgroup.h
[generic]                  846    1729  48.9% -lh5- b77f Oct 21  2000 i686be-amithlon/include/netinet/icmp_var.h
[generic]                 1358    3098  43.8% -lh5- d773 Oct 21  2000 i686be-amithlon/include/netinet/if_ether.h
[generic]                 3494    9983  35.0% -lh5- c9f1 Oct 21  2000 i686be-amithlon/include/netinet/in.h
[generic]                  985    2020  48.8% -lh5- 4cb4 Oct 21  2000 i686be-amithlon/include/netinet/in_pcb.h
[generic]                  808    1513  53.4% -lh5- 07ce Oct 21  2000 i686be-amithlon/include/netinet/in_systm.h
[generic]                 1047    2212  47.3% -lh5- f60d Oct 21  2000 i686be-amithlon/include/netinet/in_var.h
[generic]                 2604    6867  37.9% -lh5- 05d5 Oct 21  2000 i686be-amithlon/include/netinet/ip.h
[generic]                 1818    5094  35.7% -lh5- 5831 Oct 21  2000 i686be-amithlon/include/netinet/ip_icmp.h
[generic]                 1702    4088  41.6% -lh5- 295f Oct 21  2000 i686be-amithlon/include/netinet/ip_var.h
[generic]                 1300    2810  46.3% -lh5- 857d Oct 21  2000 i686be-amithlon/include/netinet/tcp.h
[generic]                  757    1678  45.1% -lh5- d2bd Oct 21  2000 i686be-amithlon/include/netinet/tcpip.h
[generic]                  760    1371  55.4% -lh5- 150c Oct 21  2000 i686be-amithlon/include/netinet/tcp_debug.h
[generic]                 1240    2795  44.4% -lh5- 22b1 Oct 21  2000 i686be-amithlon/include/netinet/tcp_fsm.h
[generic]                  860    1687  51.0% -lh5- 1a9e Oct 21  2000 i686be-amithlon/include/netinet/tcp_seq.h
[generic]                 2080    5110  40.7% -lh5- 5f5f Oct 21  2000 i686be-amithlon/include/netinet/tcp_timer.h
[generic]                 3428    9849  34.8% -lh5- cf19 Oct 21  2000 i686be-amithlon/include/netinet/tcp_var.h
[generic]                  643    1170  55.0% -lh5- 229a Oct 21  2000 i686be-amithlon/include/netinet/udp.h
[generic]                  811    1696  47.8% -lh5- 3e24 Oct 21  2000 i686be-amithlon/include/netinet/udp_var.h
[generic]                  427    1132  37.7% -lh5- 2ba5 Oct 21  2000 i686be-amithlon/include/nfs/krpc.h
[generic]                 4095   11212  36.5% -lh5- a359 Oct 21  2000 i686be-amithlon/include/nfs/nfs.h
[generic]                 1511    3026  49.9% -lh5- a383 Oct 21  2000 i686be-amithlon/include/nfs/nfsdiskless.h
[generic]                 1977    4894  40.4% -lh5- 9b5c Oct 21  2000 i686be-amithlon/include/nfs/nfsmount.h
[generic]                 3042    8443  36.0% -lh5- 9109 Oct 21  2000 i686be-amithlon/include/nfs/nfsm_subs.h
[generic]                 2664    7563  35.2% -lh5- 9c79 Oct 21  2000 i686be-amithlon/include/nfs/nfsnode.h
[generic]                 1891    4175  45.3% -lh5- 76d8 Oct 21  2000 i686be-amithlon/include/nfs/nfsrtt.h
[generic]                 1517    3365  45.1% -lh5- a375 Oct 21  2000 i686be-amithlon/include/nfs/nfsrvcache.h
[generic]                 2944    9015  32.7% -lh5- 44bc Oct 21  2000 i686be-amithlon/include/nfs/nfsv2.h
[generic]                 3124    7774  40.2% -lh5- f21e Oct 21  2000 i686be-amithlon/include/nfs/nqnfs.h
[generic]                 1490    3334  44.7% -lh5- 1221 Oct 21  2000 i686be-amithlon/include/nfs/rpcv2.h
[generic]                 1601    3687  43.4% -lh5- e10c Oct 21  2000 i686be-amithlon/include/nfs/xdr_subs.h
[generic]                 1817    3905  46.5% -lh5- a8ac Oct 21  2000 i686be-amithlon/include/nlist.h
[generic]                 1005    3405  29.5% -lh5- 0528 Oct 21  2000 i686be-amithlon/include/packets.h
[generic]                   23      23 100.0% -lh0- 219e Oct 21  2000 i686be-amithlon/include/param.h
[generic]                 1393    3142  44.3% -lh5- a360 Oct 21  2000 i686be-amithlon/include/paths.h
[generic]                 1920    4476  42.9% -lh5- 6ce8 Oct 21  2000 i686be-amithlon/include/protocols/dumprestore.h
[generic]                 1951    4289  45.5% -lh5- b837 Oct 21  2000 i686be-amithlon/include/protocols/routed.h
[generic]                 1358    2885  47.1% -lh5- 66bc Oct 21  2000 i686be-amithlon/include/protocols/rwhod.h
[generic]                 2152    5181  41.5% -lh5- 5a23 Oct 21  2000 i686be-amithlon/include/protocols/talkd.h
[generic]                 1816    4466  40.7% -lh5- 61bd Oct 21  2000 i686be-amithlon/include/protocols/timed.h
[generic]                 1638    4302  38.1% -lh5- a0bd Oct 21  2000 i686be-amithlon/include/pwd.h
[generic]                 1130    2285  49.5% -lh5- 50a6 Oct 21  2000 i686be-amithlon/include/ranlib.h
[generic]                 1754    3993  43.9% -lh5- 1a32 Oct 21  2000 i686be-amithlon/include/regex.h
[generic]                 1405    2915  48.2% -lh5- 1133 Oct 21  2000 i686be-amithlon/include/regexp.h
[generic]                 2764    6915  40.0% -lh5- 0e17 Oct 21  2000 i686be-amithlon/include/resolv.h
[generic]                 2264    5734  39.5% -lh5- 3332 Oct 21  2000 i686be-amithlon/include/rpc/auth.h
[generic]                 1399    2655  52.7% -lh5- 4a1e Oct 21  2000 i686be-amithlon/include/rpc/auth_unix.h
[generic]                 3570   10563  33.8% -lh5- 958a Oct 21  2000 i686be-amithlon/include/rpc/clnt.h
[generic]                 1455    3416  42.6% -lh5- 5dc6 Oct 21  2000 i686be-amithlon/include/rpc/pmap_clnt.h
[generic]                 1672    3812  43.9% -lh5- d3b5 Oct 21  2000 i686be-amithlon/include/rpc/pmap_prot.h
[generic]                 1112    2067  53.8% -lh5- 408f Oct 21  2000 i686be-amithlon/include/rpc/pmap_rmt.h
[generic]                 1622    3363  48.2% -lh5- 5b89 Oct 21  2000 i686be-amithlon/include/rpc/rpc.h
[generic]                 1922    4643  41.4% -lh5- 3558 Oct 21  2000 i686be-amithlon/include/rpc/rpc_msg.h
[generic]                 3766   10550  35.7% -lh5- 799b Oct 21  2000 i686be-amithlon/include/rpc/svc.h
[generic]                  985    1762  55.9% -lh5- 8578 Oct 21  2000 i686be-amithlon/include/rpc/svc_auth.h
[generic]                 1041    1963  53.0% -lh5- a322 Oct 21  2000 i686be-amithlon/include/rpc/types.h
[generic]                 3914   11997  32.6% -lh5- 1c89 Oct 21  2000 i686be-amithlon/include/rpc/xdr.h
[generic]                  210     320  65.6% -lh5- 2f47 Oct 21  2000 i686be-amithlon/include/search.h
[generic]                 1357    2768  49.0% -lh5- b983 Oct 21  2000 i686be-amithlon/include/setjmp.h
[generic]                  986    1955  50.4% -lh5- 1266 Oct 21  2000 i686be-amithlon/include/sgtty.h
[generic]                 1721    4344  39.6% -lh5- 69dc Oct 21  2000 i686be-amithlon/include/signal.h
[generic]                 1694    4738  35.8% -lh5- 9867 Oct 21  2000 i686be-amithlon/include/stab.def
[generic]                 1464    3564  41.1% -lh5- 1e07 Oct 21  2000 i686be-amithlon/include/stab.h
[generic]                 1173    2351  49.9% -lh5- 70f2 Oct 21  2000 i686be-amithlon/include/stddef.h
[generic]                 4780   13409  35.6% -lh5- 2fda Oct 21  2000 i686be-amithlon/include/stdio.h
[generic]                 2270    6692  33.9% -lh5- 46f3 Oct 21  2000 i686be-amithlon/include/stdlib.h
[generic]                 1413    3999  35.3% -lh5- cd90 Oct 21  2000 i686be-amithlon/include/string.h
[generic]                  957    1906  50.2% -lh5- a5ea Oct 21  2000 i686be-amithlon/include/strings.h
[generic]                 1110    2311  48.0% -lh5- 3b5e Oct 21  2000 i686be-amithlon/include/struct.h
[generic]                 1492    3107  48.0% -lh5- 0a7d Oct 21  2000 i686be-amithlon/include/sys/acct.h
[generic]                 3504    9695  36.1% -lh5- 6527 Oct 21  2000 i686be-amithlon/include/sys/buf.h
[generic]                 2129    4910  43.4% -lh5- e801 Oct 21  2000 i686be-amithlon/include/sys/cdefs.h
[generic]                 1311    2586  50.7% -lh5- eb41 Oct 21  2000 i686be-amithlon/include/sys/dir.h
[generic]                 1575    3354  47.0% -lh5- 48b6 Oct 21  2000 i686be-amithlon/include/sys/dirent.h
[generic]                 1150    2356  48.8% -lh5- 1149 Oct 21  2000 i686be-amithlon/include/sys/domain.h
[generic]                   19      19 100.0% -lh0- 2bd1 Oct 21  2000 i686be-amithlon/include/sys/errno.h
[generic]                 1451    3319  43.7% -lh5- 74d3 Oct 21  2000 i686be-amithlon/include/sys/exec.h
[generic]                 2962    7979  37.1% -lh5- 8295 Oct 21  2000 i686be-amithlon/include/sys/fcntl.h
[generic]                 2214    5176  42.8% -lh5- 8d04 Oct 21  2000 i686be-amithlon/include/sys/file.h
[generic]                 1368    2937  46.6% -lh5- cfc3 Oct 21  2000 i686be-amithlon/include/sys/filio.h
[generic]                 1700    4071  41.8% -lh5- f0e5 Oct 21  2000 i686be-amithlon/include/sys/gprof.h
[generic]                 1545    3370  45.8% -lh5- 75ec Oct 21  2000 i686be-amithlon/include/sys/ioccom.h
[generic]                 1593    3317  48.0% -lh5- 9173 Oct 21  2000 i686be-amithlon/include/sys/ioctl.h
[generic]                 2861    8736  32.7% -lh5- eb5f Oct 21  2000 i686be-amithlon/include/sys/ioctl_compat.h
[generic]                 1872    4094  45.7% -lh5- 74e4 Oct 21  2000 i686be-amithlon/include/sys/ipc.h
[generic]                 1562    4732  33.0% -lh5- a14f Oct 21  2000 i686be-amithlon/include/sys/ixnet_syscall.def
[generic]                  584    1057  55.3% -lh5- dccc Oct 21  2000 i686be-amithlon/include/sys/ixnet_syscall.h
[generic]                 1325    3125  42.4% -lh5- ad22 Oct 21  2000 i686be-amithlon/include/sys/localedef.h
[generic]                 4495   13170  34.1% -lh5- 4e91 Oct 21  2000 i686be-amithlon/include/sys/mbuf.h
[generic]                 1759    3940  44.6% -lh5- 4e2e Oct 21  2000 i686be-amithlon/include/sys/mman.h
[generic]                 3948   11156  35.4% -lh5- 5142 Oct 21  2000 i686be-amithlon/include/sys/mount.h
[generic]                 2160    5269  41.0% -lh5- 16e5 Oct 21  2000 i686be-amithlon/include/sys/msg.h
[generic]                 2114    5442  38.8% -lh5- 2d31 Oct 21  2000 i686be-amithlon/include/sys/mtio.h
[generic]                 3651    8455  43.2% -lh5- eb5b Oct 21  2000 i686be-amithlon/include/sys/param.h
[generic]                 3948   10503  37.6% -lh5- 76d6 Oct 21  2000 i686be-amithlon/include/sys/proc.h
[generic]                 3626   10031  36.1% -lh5- c2bf Oct 21  2000 i686be-amithlon/include/sys/protosw.h
[generic]                 1752    4284  40.9% -lh5- c3b2 Oct 21  2000 i686be-amithlon/include/sys/ptrace.h
[generic]                 2703   14628  18.5% -lh5- 85a5 Oct 21  2000 i686be-amithlon/include/sys/queue.h
[generic]                 1773    4453  39.8% -lh5- de45 Oct 21  2000 i686be-amithlon/include/sys/resource.h
[generic]                 1908    5832  32.7% -lh5- a989 Oct 21  2000 i686be-amithlon/include/sys/sem.h
[generic]                 1666    3521  47.3% -lh5- 013b Oct 21  2000 i686be-amithlon/include/sys/shm.h
[generic]                 3394    8614  39.4% -lh5- aac9 Oct 21  2000 i686be-amithlon/include/sys/signal.h
[generic]                 4425   13372  33.1% -lh5- 9a8e Oct 21  2000 i686be-amithlon/include/sys/socket.h
[generic]                 3409    8978  38.0% -lh5- 156e Oct 21  2000 i686be-amithlon/include/sys/socketvar.h
[generic]                 1749    5260  33.3% -lh5- 9c8f Oct 21  2000 i686be-amithlon/include/sys/sockio.h
[generic]                 2228    6468  34.4% -lh5- 48d0 Oct 21  2000 i686be-amithlon/include/sys/stat.h
[generic]                  842    1572  53.6% -lh5- 7555 Oct 21  2000 i686be-amithlon/include/sys/stdc.h
[generic]                 5181   21762  23.8% -lh5- 93a8 Oct 21  2000 i686be-amithlon/include/sys/syscall.def
[generic]                  726    1338  54.3% -lh5- a656 Oct 21  2000 i686be-amithlon/include/sys/syscall.h
[generic]                 1446    3198  45.2% -lh5- 89d8 Oct 21  2000 i686be-amithlon/include/sys/syslimits.h
[generic]                 3068    7962  38.5% -lh5- 6145 Oct 21  2000 i686be-amithlon/include/sys/syslog.h
[generic]                 3463   10383  33.4% -lh5- da7d Oct 21  2000 i686be-amithlon/include/sys/termios.h
[generic]                 2241    6317  35.5% -lh5- b036 Oct 21  2000 i686be-amithlon/include/sys/time.h
[generic]                 1099    2206  49.8% -lh5- bf48 Oct 21  2000 i686be-amithlon/include/sys/timeb.h
[generic]                 1167    2420  48.2% -lh5- 9a94 Oct 21  2000 i686be-amithlon/include/sys/times.h
[generic]                 1402    3194  43.9% -lh5- d955 Oct 21  2000 i686be-amithlon/include/sys/tracecntl.h
[generic]                 2814    7066  39.8% -lh5- a138 Oct 21  2000 i686be-amithlon/include/sys/tty.h
[generic]                 1331    2858  46.6% -lh5- 2b28 Oct 21  2000 i686be-amithlon/include/sys/ttychars.h
[generic]                 2670    7889  33.8% -lh5- e4fa Oct 21  2000 i686be-amithlon/include/sys/ttycom.h
[generic]                 1771    4007  44.2% -lh5- dc33 Oct 21  2000 i686be-amithlon/include/sys/ttydefaults.h
[generic]                 1115    2333  47.8% -lh5- a430 Oct 21  2000 i686be-amithlon/include/sys/ttydev.h
[generic]                 2610    6447  40.5% -lh5- 738d Jul 24  2002 i686be-amithlon/include/sys/types.h
[generic]                 1177    2405  48.9% -lh5- 787f Oct 21  2000 i686be-amithlon/include/sys/ucred.h
[generic]                 1332    2741  48.6% -lh5- 4d87 Oct 21  2000 i686be-amithlon/include/sys/uio.h
[generic]                 1179    2316  50.9% -lh5- c03b Oct 21  2000 i686be-amithlon/include/sys/un.h
[generic]                 1666    3931  42.4% -lh5- a7ae Oct 21  2000 i686be-amithlon/include/sys/unistd.h
[generic]                  905    1987  45.5% -lh5- de1f Oct 21  2000 i686be-amithlon/include/sys/unix_socket.h
[generic]                 1655    3612  45.8% -lh5- 46ce Oct 21  2000 i686be-amithlon/include/sys/unpcb.h
[generic]                 1587    3444  46.1% -lh5- 9184 Oct 21  2000 i686be-amithlon/include/sys/user.h
[generic]                  624    1234  50.6% -lh5- 6162 Oct 21  2000 i686be-amithlon/include/sys/utsname.h
[generic]                 5803   15981  36.3% -lh5- b09e Oct 21  2000 i686be-amithlon/include/sys/vnode.h
[generic]                 4435   25670  17.3% -lh5- 4041 Oct 21  2000 i686be-amithlon/include/sys/vnode_if.h
[generic]                 2356    5798  40.6% -lh5- f4bc Oct 21  2000 i686be-amithlon/include/sys/wait.h
[generic]                 2481    6114  40.6% -lh5- 3e96 Oct 21  2000 i686be-amithlon/include/sysexits.h
[generic]                   24      24 100.0% -lh0- d0ce Oct 21  2000 i686be-amithlon/include/syslog.h
[generic]                   25      25 100.0% -lh0- 62e7 Oct 21  2000 i686be-amithlon/include/termios.h
[generic]                 1762    3997  44.1% -lh5- abf4 Oct 21  2000 i686be-amithlon/include/time.h
[generic]                 1518    3289  46.2% -lh5- 2443 Oct 21  2000 i686be-amithlon/include/ttyent.h
[generic]                 1878    5512  34.1% -lh5- b2d8 Oct 21  2000 i686be-amithlon/include/tzfile.h
[generic]                 2430    7647  31.8% -lh5- 4dd0 Oct 21  2000 i686be-amithlon/include/unistd.h
[generic]                 6299   20479  30.8% -lh5- 95b6 Oct 21  2000 i686be-amithlon/include/user.h
[generic]                 1091    2165  50.4% -lh5- 084f Oct 21  2000 i686be-amithlon/include/utime.h
[generic]                 1234    2798  44.1% -lh5- c6da Oct 21  2000 i686be-amithlon/include/utmp.h
[generic]                  105     138  76.1% -lh5- d1a9 Oct 21  2000 i686be-amithlon/include/values.h
[generic]                 1526    3362  45.4% -lh5- 54fd Oct 21  2000 i686be-amithlon/include/vis.h
[generic]                   22      22 100.0% -lh0- b6f2 Oct 21  2000 i686be-amithlon/include/wait.h
[generic]                  848    2670  31.8% -lh5- d7d9 Sep 19  2000 i686be-amithlon/include/_G_config.h
[generic]                 1015    2178  46.6% -lh5- 4bca Jun 18  2002 info/cpp.info
[generic]                17350   50062  34.7% -lh5- 271c Jun 18  2002 info/cpp.info-1
[generic]                14707   42113  34.9% -lh5- 5004 Jun 18  2002 info/cpp.info-2
[generic]                 7242   24200  29.9% -lh5- dd06 Jun 18  2002 info/cpp.info-3
[generic]                 3789    9213  41.1% -lh5- 8cd3 Jun 18  2002 info/gcc.info
[generic]                14561   42284  34.4% -lh5- 6fc2 Jun 18  2002 info/gcc.info-1
[generic]                14384   42690  33.7% -lh5- dd0a Jun 18  2002 info/gcc.info-10
[generic]                17230   49575  34.8% -lh5- 8a5a Jun 18  2002 info/gcc.info-11
[generic]                15137   42965  35.2% -lh5- 16c7 Jun 18  2002 info/gcc.info-12
[generic]                18727   50347  37.2% -lh5- 46c3 Jun 18  2002 info/gcc.info-13
[generic]                17995   48700  37.0% -lh5- fa0d Jun 18  2002 info/gcc.info-14
[generic]                15932   46561  34.2% -lh5- af1e Jun 18  2002 info/gcc.info-15
[generic]                16425   51350  32.0% -lh5- f220 Jun 18  2002 info/gcc.info-16
[generic]                17306   50237  34.4% -lh5- 0fc8 Jun 18  2002 info/gcc.info-17
[generic]                15713   48329  32.5% -lh5- aef7 Jun 18  2002 info/gcc.info-18
[generic]                15784   50281  31.4% -lh5- 1db5 Jun 18  2002 info/gcc.info-19
[generic]                12557   35469  35.4% -lh5- 9921 Jun 18  2002 info/gcc.info-2
[generic]                16672   51217  32.6% -lh5- 5cf6 Jun 18  2002 info/gcc.info-20
[generic]                11937   38516  31.0% -lh5- 4450 Jun 18  2002 info/gcc.info-21
[generic]                13509   43255  31.2% -lh5- e02c Jun 18  2002 info/gcc.info-22
[generic]                14496   46337  31.3% -lh5- 1c30 Jun 18  2002 info/gcc.info-23
[generic]                14903   47355  31.5% -lh5- fa99 Jun 18  2002 info/gcc.info-24
[generic]                14661   45548  32.2% -lh5- 033f Jun 18  2002 info/gcc.info-25
[generic]                15271   51048  29.9% -lh5- 6b5b Jun 18  2002 info/gcc.info-26
[generic]                12816   41139  31.2% -lh5- 1265 Jun 18  2002 info/gcc.info-27
[generic]                16108   46263  34.8% -lh5- fd1c Jun 18  2002 info/gcc.info-28
[generic]                 9717   25939  37.5% -lh5- 4678 Jun 18  2002 info/gcc.info-29
[generic]                16314   48731  33.5% -lh5- ff6b Jun 18  2002 info/gcc.info-3
[generic]                26245  117545  22.3% -lh5- 8d0f Jun 18  2002 info/gcc.info-30
[generic]                13639   45634  29.9% -lh5- a7b6 Jun 18  2002 info/gcc.info-4
[generic]                15019   47959  31.3% -lh5- 57f1 Jun 18  2002 info/gcc.info-5
[generic]                16571   48831  33.9% -lh5- 5c4e Jun 18  2002 info/gcc.info-6
[generic]                14829   43076  34.4% -lh5- f673 Jun 18  2002 info/gcc.info-7
[generic]                17057   48327  35.3% -lh5- 5036 Jun 18  2002 info/gcc.info-8
[generic]                17998   51435  35.0% -lh5- da15 Jun 18  2002 info/gcc.info-9
[generic]               934976 2081752  44.9% -lh5- 895d Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/cc1
[generic]              1205442 2650788  45.5% -lh5- b97d Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/cc1plus
[generic]                40725   94388  43.1% -lh5- 8113 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/collect2
[generic]                67986  168272  40.4% -lh5- 2ca4 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/cpp0
[generic]                  787    1960  40.2% -lh5- 4608 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/crtbegin.o
[generic]                  787    1960  40.2% -lh5- 4608 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/crtbeginS.o
[generic]                  595    1440  41.3% -lh5- 0c73 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/crtend.o
[generic]                  595    1440  41.3% -lh5- 0c73 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/crtendS.o
[generic]                  475    1486  32.0% -lh5- b8c7 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/assert.h
[generic]                  371     808  45.9% -lh5- bbd8 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/exception
[generic]                  970    3874  25.0% -lh5- 1edb Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/float.h
[generic]                  159     275  57.8% -lh5- 0111 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/iso646.h
[generic]                  741    2587  28.6% -lh5- 1ca2 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/limits.h
[generic]                  485    1207  40.2% -lh5- cedd Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/new
[generic]                  113     161  70.2% -lh5- 06f0 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/new.h
[generic]                  114     137  83.2% -lh5- 72fa Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/proto.h
[generic]                  279     495  56.4% -lh5- 6e32 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/README
[generic]                 1981    6070  32.6% -lh5- d2d0 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/stdarg.h
[generic]                  286     502  57.0% -lh5- 6f6d Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/stdbool.h
[generic]                 2814    9834  28.6% -lh5- c35b Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/stddef.h
[generic]                  442    1339  33.0% -lh5- c05a Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/stdlib.h
[generic]                  204     330  61.8% -lh5- 4f1e Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/syslimits.h
[generic]                  455    1049  43.4% -lh5- fa62 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/typeinfo
[generic]                 1246    3377  36.9% -lh5- 8758 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-alpha.h
[generic]                 1110    3289  33.7% -lh5- 340a Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-arc.h
[generic]                  456     970  47.0% -lh5- 2bf3 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-c4x.h
[generic]                  815    2036  40.0% -lh5- a8ae Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-clipper.h
[generic]                  655    1591  41.2% -lh5- a9ef Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-h8300.h
[generic]                 2026    6652  30.5% -lh5- 7c25 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-i860.h
[generic]                 1045    2465  42.4% -lh5- 857b Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-i960.h
[generic]                  883    2409  36.7% -lh5- ccbb Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-m32r.h
[generic]                 1088    2845  38.2% -lh5- fccb Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-m88k.h
[generic]                 2079   10279  20.2% -lh5- 499e Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-mips.h
[generic]                  529    1299  40.7% -lh5- 4a67 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-mn10200.h
[generic]                  497    1240  40.1% -lh5- 0f5e Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-mn10300.h
[generic]                  690    1656  41.7% -lh5- 7cb3 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-pa.h
[generic]                 2359    8159  28.9% -lh5- ee27 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-ppc.h
[generic]                 1737    4057  42.8% -lh5- 9da9 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-pyr.h
[generic]                 2023    6756  29.9% -lh5- e17d Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-sh.h
[generic]                 1720    5151  33.4% -lh5- ba4c Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-sparc.h
[generic]                  720    1777  40.5% -lh5- 02d6 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-spur.h
[generic]                  477    1174  40.6% -lh5- 5d66 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/va-v850.h
[generic]                 2036    6228  32.7% -lh5- d24d Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/include/varargs.h
[generic]               188793  588418  32.1% -lh5- ad63 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/libgcc.a
[generic]                  946    2310  41.0% -lh5- 2580 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/specs
[generic]                15161   88205  17.2% -lh5- 4235 Jul 24  2002 lib/gcc-lib/i686be-amithlon/2.95.3/SYSCALLS.c.X
[generic]                 2089    5186  40.3% -lh5- 9b3b Jul 24  2002 x86-ami-gcc.readme
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       463 files 3908803 10173264  38.4%            Jul 25  2002

Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>