• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

RSS
Rev. Time Author
24700c2 2001-08-14 05:00:34 Eric Andersen

Fix SYSTEM_DEVEL_PREFIX to allow install of the <arch>-uclibc- spoofer
toolchain to any arbitrary directory...

ae8937b 2001-08-14 03:52:28 Eric Andersen

Add in TARGET_PREFIX, which was still used in a few spots (and
appropriately so). Leave this hidden and set to a sane default
since nobody should really need to change it...

fa80925 2001-08-11 13:21:52 Eric Andersen

Use malloc on arm (since I've never bothered to write sbrk)

1459bf3 2001-08-11 13:17:52 Eric Andersen

I just wrote a stpncpy() since someone wanted it

9c0d25b 2001-08-11 13:11:46 Eric Andersen

I rewrote strcat without any function calls.

246af1d 2001-08-11 13:09:22 Eric Andersen

Sync up ldd behavior

51ff0f6 2001-08-11 13:08:41 Eric Andersen

Fix the library searching routine so it is way simpler, and so
it matches the routine in ldd.c

8da741f 2001-08-11 12:21:21 David Schleef

Add a cvsignore for this dir

f0446fc 2001-08-11 12:19:52 David Schleef

Change name of package to uclibc-toolchain. Various changes
following the Makefile changes.

7f133fa 2001-08-11 12:18:59 David Schleef

Need to create $(SYSTEM_DEVEL_PREFIX)/usr/bin

29be1bc 2001-08-11 09:18:07 Eric Andersen

Begin removing some unnecessary inlining, and fix naming
of _dl_fprintf which should really be _dl_dprintf
-Erik

8f127c4 2001-08-10 17:49:12 Eric Andersen

Oops. Symlink args were backwards...

4b3d5bd 2001-08-10 17:43:35 Eric Andersen

Don't blow away existing files when trying to install a ldso symlink...

96277cf 2001-08-10 17:00:08 Eric Andersen

Update the build system, yet again. I hope this is the last time...
Here is the basic theory of operation:
SHARED_LIB_LOADER_PATH/ <The location where the shared lib
loader will be installed and where the
compiler will cause apps to look for it.>
DEVEL_PREFIX/
bin/ <contains gcc, ld, etc for setting PATH=$DEVEL_PREFIX/bin:$PATH>
lib/ <contains all runtime and static libs>
include/ <Where all the header files go>
SYSTEM_DEVEL_PREFIX/
usr/bin/ <contains arch-uclibc-gcc, arch-uclibc-ld, etc that
might be installed by a .deb or .rpm into /usr/bin,
but can happily live under DEVEL_PREFIX>
PREFIX
This is prepended during 'make install's allowing you to shift things to
be installed under some alternate location (such as when building a .deb)
-Erik

7e79b9d 2001-08-10 09:33:01 David McCullough


Make _PATH_VARRUN actually point to /var/run.

bf35912 2001-08-10 05:25:20 Eric Andersen

Fix behavior when installing the devel env, since somewhere
along the line this got messed up...

018b4fe 2001-08-10 00:25:15 David McCullough


Add cmsg_nxthdr function for the cases where the headers
do not so it inline.

7118337 2001-08-09 22:44:22 David McCullough


Add in changes from philipc@lineo:

Fix three bugs and bring into line with glibc:

1. The first character read using getc() was being ignored if it was EOF.
Normally this is okay because the next getc() returns EOF as well, but
for sscanf, this was causing us to skip the null terminator and start
scanning whatever happened to be next in memory.

2. %s, %c, and %[ formats now return -1 if EOF is reached before any
characters are read, instead of 0. This was causing an infinite loop
in diald.

3. Default to base 10 for %i fields if not prefix modifier present.

e7ba98d 2001-08-09 21:54:00 David McCullough


Add hstrerror, it just points to strerror like h_errno.

cc0664c 2001-08-09 21:08:51 David McCullough


Added sigset_t casts so we behave like the other platforms.

60acedb 2001-08-09 21:06:19 David McCullough


Fix a couple of warnings

ca73e6a 2001-08-09 20:37:33 David McCullough


Make sure the weak aliases are defined before the functions/vars
they use as stubs, otherwise, some compilers (ie., m68k-elf) tie them to
the local symbols and the weak aliases do not work.

0641a78 2001-08-09 10:20:43 David Schleef

Changed uclibc-gcc to uclibc-toolchain. Added fixups for changes
in the Makefiles.

c3bbc0e 2001-08-09 02:03:36 Eric Andersen

This syncs things up with my local tree. Mainly changes installer
issues, and syns things (as far as I am willing) with Dave Schleef's
tree. We may need to go another round or so, but we do seem to be
converging...

c4257d7 2001-08-07 07:51:31 Eric Andersen

Try search for the shared lib interpreter. Eliminate all double "//"s
from the output
-Erik

bd61f74 2001-08-07 04:27:51 Eric Andersen

If /etc/ld.so.preload was size 0, the shared lib loader would
choke and die. Test for non-zero size as well,
-Erik

6996c5c 2001-08-06 21:46:12 David McCullough


Fixup the pipe system call for the SH target.
The FD's are returned in registers.

7b013e6 2001-07-29 00:06:31 Manuel Novoa III

Oops... left in a debugging line.

b52f66d 2001-07-28 23:51:45 Manuel Novoa III

Back out the changes to _uClibc_fread and loop in fread() if incomplete, to
avoid problems with fgets on tty streams. I actually did some testing this
time. ;-)
Note: there is a difference in behavior between glibc and uClibc here
regarding fread() on a tty stream. glibc's fread() seems to return after
reading all _available_ data even if not at end-of-file, while uClibc's
fread() continues reading until all requested or eof or error. The latter
behavior seems correct w.r.t. the standards.

2940feb 2001-07-26 11:52:53 Manuel Novoa III

Yes... the previous "fix" was broken too... the result of careless cutting
and pasting while pressed for time. I haven't checked this one either. :-(