libc/libgloss/pa
DJ Delorie 6f810581fb [newlib]
* libm/machine/spu/configure: Regenerate with autoconf 2.61.
	* libc/sys/configure: Regenerate with autoconf 2.61.
	* libc/machine/configure: Regenerate with autoconf 2.61.
[libgloss]
	* hp74x/configure: Regenerate with autoconf 2.61.
	* fr30/configure: Regenerate with autoconf 2.61.
	* mips/configure: Regenerate with autoconf 2.61.
	* xstormy16/configure: Regenerate with autoconf 2.61.
	* rs6000/configure: Regenerate with autoconf 2.61.
	* d30v/configure: Regenerate with autoconf 2.61.
	* i386/configure: Regenerate with autoconf 2.61.
	* configure: Regenerate with autoconf 2.61.
	* wince/configure: Regenerate with autoconf 2.61.
	* pa/configure: Regenerate with autoconf 2.61.
	* m32r/configure: Regenerate with autoconf 2.61.
	* mn10200/configure: Regenerate with autoconf 2.61.
	* iq2000/configure: Regenerate with autoconf 2.61.
	* cris/configure: Regenerate with autoconf 2.61.
	* m68k/configure: Regenerate with autoconf 2.61.
	* spu/configure: Regenerate with autoconf 2.61.
	* m32c/configure: Regenerate with autoconf 2.61.
	* mn10300/configure: Regenerate with autoconf 2.61.
	* i960/configure: Regenerate with autoconf 2.61.
	* arm/configure: Regenerate with autoconf 2.61.
	* libnosys/configure: Regenerate with autoconf 2.61.
	* m68hc11/configure: Regenerate with autoconf 2.61.
	* bfin/configure: Regenerate with autoconf 2.61.
	* crx/configure: Regenerate with autoconf 2.61.
	* mt/configure: Regenerate with autoconf 2.61.
	* sparc/configure: Regenerate with autoconf 2.61.
	* sparc/libsys/configure: Regenerate with autoconf 2.61.
	* mcore/configure: Regenerate with autoconf 2.61.
	* mep/configure: Regenerate with autoconf 2.61.
	* frv/configure: Regenerate with autoconf 2.61.
	* doc/configure: Regenerate with autoconf 2.61.
2008-04-04 21:52:01 +00:00
..
Makefile.in 2004-06-27 Hideki Iwamoto <h-iwamoto@kit.hi-ho.ne.jp> 2004-06-28 22:42:21 +00:00
README 20000317 sourceware import 2000-03-17 22:48:54 +00:00
aclocal.m4 2006-04-19 Jeff Johnston <jjohnstn@redhat.com> 2006-04-19 19:44:05 +00:00
configure [newlib] 2008-04-04 21:52:01 +00:00
configure.in 2006-05-10 Jeff Johnston <jjohnstn@redhat.com> 2006-05-10 20:51:41 +00:00
crt0.S 20000317 sourceware import 2000-03-17 22:48:54 +00:00
hp-milli.s 20000317 sourceware import 2000-03-17 22:48:54 +00:00
op50n-io.S 20000317 sourceware import 2000-03-17 22:48:54 +00:00
op50n.h 20000317 sourceware import 2000-03-17 22:48:54 +00:00
op50n.ld 20000317 sourceware import 2000-03-17 22:48:54 +00:00
op50nled.c 20000317 sourceware import 2000-03-17 22:48:54 +00:00
setjmp.S 20000317 sourceware import 2000-03-17 22:48:54 +00:00
test.c 20000317 sourceware import 2000-03-17 22:48:54 +00:00
w89k-io.c 20000317 sourceware import 2000-03-17 22:48:54 +00:00
w89k.h 20000317 sourceware import 2000-03-17 22:48:54 +00:00
w89k.ld 20000317 sourceware import 2000-03-17 22:48:54 +00:00

README

				 Misc
				 ....

Naming Conventions
------------------
    The basic naming convention for Unix machines is that
    hppa1.1-hp-proelf- is prepended to the front of each tool
    name. For DOS machines, the names are truncated to just the base
    tool name, like GCC.

Installation
------------
    For this beta release, there are three tar files on the tape. A
    simple "tar xvf [device name]" will work. One of the tarfiles is
    all the sources, the others are binaries. One set is for a HP-UX
    host, and the other set is for a sun4 host.

    First, make a directory called /usr/cygnus/beta-941019. Cd into
    this directory and type the tar command to extract the three tar
    files. Once the tar files are off the tape, you can uncompress
    and extract them. Typically, once they are installed, it's common
    practice to make a symbolic link so the path
    /usr/cygnus/beta-941019 works regardless which host. The actual
    binaries are in /usr/cygnus/beta-941019/$host/bin, where host is
    the configuration string for this machine.


			  WinBond W89k board
			  ..................
Downloading
-----------
    To download type the "U" command to the ROM monitor. This will
    load to the address as specified in the srecord. This address is
    0x100000. 

To compile
----------
    Use these arguments on the command line for either the linker or
    the compiler:

	-Tw89k.ld -Ttext 100000

To execute
----------
    Type a "g = 100000" at thr ROM monitor after downloading to the
    target. After downloading, PC will be set to the correct address,
    but this command will *always* restart the execution from the
    beginning. 
    
To debug
--------
    To connect GDB to the target, use the "target w89k [devicename]".

			   Oki OP50N board
			   ...............

Downloading
-----------
    To download, type "r 0" to the ROM monitor. The 0 is cause the
    monitor wants to offset the address in the srecord to 0x40000. The
    problem is that it doesn't relocate data right. So, we set the
    address for .text and .data to 0x40000, and we don't want any
    offset.

To compile
----------
    Use these arguments on the command line for either the linker or
    the compiler:

	-Top50n.ld -Ttext 40000

 To execute
----------
    Type a "g 40000" at thr ROM monitor after downloading to the
    target. After downloading, PC will be set to the correct address,
    but this command will *always* restart the execution from the
    beginning
    
To debug
--------
    To connect GDB to the target, use the "target op50n [devicename]".