• 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
6278781 2001-04-07 05:28:45 Eric Andersen

Fix include/errno.h to not use kernel header, and instead use bits/errno.h.
This required we use _LIBC instead of __LIBC__ to be consistent with glibc.
This had some sideffects in sys/syscalls.h. While fixing things, I made
everything use __set_errno() for (eventual) thread support.
-Erik

a704cca 2001-04-07 05:19:10 Eric Andersen

Update the ignore file to match

e990ae7 2001-04-07 05:17:32 Eric Andersen

Make a naming change to be consistent with other cross compiling tools.
Set up a default lib dir off the root of the uClibc compile dir. This
really needs more thought, but is good enough for now I think.

d4d02ff 2001-04-05 16:34:20 Eric Andersen

Get the full set of module creating syscalls in place.
-Erik

ba9470b 2001-04-05 12:11:57 Eric Andersen

Compile the compiler last

1770326 2001-04-05 12:09:58 Eric Andersen

Add in delete_module
-Erik

fce469e 2001-04-04 14:16:48 Manuel Novoa III

Add missing function sigfillset.

78c3dbc 2001-04-04 08:58:52 Eric Andersen

Accomodate mmuless systems.

a44fea3 2001-04-04 08:55:10 Eric Andersen

Add in daemon.c, now used by busybox.
-Erik

b404336 2001-04-04 08:21:32 Eric Andersen

Fix a bug noted by David Beamonte <dbeamonte@intelnet.es>, so that
we define "__linux__" in uClibc_config.h, not "__linux_".

be03a18 2001-03-31 05:25:02 Eric Andersen

It seems ARM 2.4.x kernels do not have iopl. Also add missing
bits/sem.h for ARM so everything now compiles and runs.
-Erik

ec26531 2001-03-30 08:58:49 David Schleef

Reimplemented "make install" target. I left the old one as-is,
under the assumtion that someone will get confused if it suddenly
changes.

8625fbf 2001-03-23 11:32:39 Manuel Novoa III

Bug fix from Peter Kjellerstedt <Peter.Kjellerstedt@axis.com>.

fec3861 2001-03-23 00:00:46 Manuel Novoa III

Add some missing headers needed by ld.so-1.9.11.

0a8dc1a 2001-03-22 15:14:18 Eric Andersen

Add in random(), make rand use that under the hood. Fix the
include file so folks know random is now there.

c132ecc 2001-03-22 03:13:36 Eric Andersen

Stub out localeconv. Please look over this to check it is correct....
I started trying to read the glibc code -- but that code is far too
messy to be read. So I just wrote a silly C app against glibc, set
the locale to POSIX, then called localeconv(). I wrote this version
of localeconv.c so it returns the same stuff.
-Erik

a10cb1d 2001-03-21 06:54:01 Eric Andersen

Fix from Jon Nelson for error in timezone
-Erik

5e29d99 2001-03-21 01:04:27 Manuel Novoa III

Add missed dependency. TODO: Should build gen_sysconf when cross-compiling.

b49e8df 2001-03-21 00:32:43 Manuel Novoa III

Fix longjmp on i386. Also adds siglongjmp.

5e9139d 2001-03-20 23:19:38 Eric Andersen

Put regex back in

3675e9b 2001-03-20 19:52:50 David McCullough


Add an empty DIRS target incase it gets inherited from the env.

ca4fb81 2001-03-20 19:51:57 David McCullough


Do not remove const and extension when compiling with the elf tools.

60b3b2c 2001-03-20 12:21:56 Eric Andersen

Fix some strange formatting, so the compile looks prettier.

9f1c867 2001-03-20 12:20:50 Eric Andersen

I think this fixes the dependancy problems. Manuel, can you
double check that this is what you intended?
-Erik

089e018 2001-03-20 08:34:12 Eric Andersen

Add in the timezone global from time.h, from a patch by
Jon Nelson <jnelson@boa.org>

da26328 2001-03-20 08:32:00 Eric Andersen

Seems most folks don't have /sbin in their path

4cc6f73 2001-03-20 08:22:41 Eric Andersen

Add in alphasort (working fine) and scandir (just a stub for now).
-Erik

8bdc62b 2001-03-20 07:49:36 Eric Andersen

Move the dirent stuff. I suppose it is system dependant, but then
it really should be grouped together too. And it needed to be grouped
more then it needed to be in sysdeps/linux/common

025490c 2001-03-20 07:40:50 Eric Andersen

Debug should be off by default

91a034c 2001-03-20 06:51:29 Eric Andersen

Add in the sysvipc patch from Michael Shmulevich