• 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
41dfe61 2002-10-31 20:54:22 Eric Andersen

Fixup script to avoid potential spurious whining over empty object files.
-Erik

30d427b 2002-10-31 05:53:18 Eric Andersen

Use '#ifdef __linux__' not '#ifdef linux'

efe7947 2002-10-30 15:52:34 Eric Andersen

Use a nifty macro to make testing gcc features simpler
and easier to read.
-Erik

98e199a 2002-10-30 03:59:19 Manuel Novoa III

Fix a couple of 'restrict' bugs in mbstowcs and wcstombs.

7ce8fe4 2002-10-29 21:10:10 Eric Andersen

Fix a silly typo for Manuel
-Erik

4e4d127 2002-10-29 21:00:28 Eric Andersen

For now, comment out the broken part

88daaa0 2002-10-29 20:25:10 Eric Andersen

Remove my horrible SH hack infavor of this fix for initfini.awk from
Stefan Allius <allius@atecom.com>, which does a better job.

5986069 2002-10-29 20:21:35 Eric Andersen

A patch from Arne Jonsson <arne.jonsson@i3micro.com>:

Attached are the changes we think is necessary in order to use user
defined stacksizes for each thread. When testing I forgot to lower the
PTHREAD_STACK_MIN to the lowest value used for the stacks, this caused
stranged reboots.
As said before, we are using uClinux 2.0.38 on a ARM7TDMI.

5fedc35 2002-10-29 14:28:15 Eric Andersen

Add in a horrible hack that seems necessary for the Hitachi
SH processors to work properly.
-Erik

6a3510f 2002-10-29 10:47:39 Manuel Novoa III

Fix a problem in vasprintf (reported by vodz a while back) when built
without custom stream support. In that case, it is necessary to do
a va_copy. Note: The affected code is not built in the stock config.
Also, make sure each va_copy has a matching va_end, as required by C99.

b7df7e6 2002-10-29 06:29:21 Manuel Novoa III

ANSI/ISO C99 requires assert() to write to stderr. This means that
writing to STDERR_FILENO is insufficient, as the user could freopen
stderr. It is also insufficient to output to fileno(stderr) since
this would fail in the custom stream case. I didn't remove the
old code though, as it doesn't use stdio stream functionality
and is useful in debugging the stdio code.

6072ec7 2002-10-29 04:01:15 Manuel Novoa III

Allow timezone info to be specified in a file... /etc/TZ. Turned on by
default for now. From the comments...

* Defining __TIME_TZ_FILE causes tzset() to attempt to read the TZ value
* from the file /etc/TZ if the TZ env variable isn't set. The file contents
* must be the intended value of TZ, followed by a newline. No other chars,
* spacing, etc is allowed. As an example, an easy way for me to init
* /etc/TZ appropriately would be: echo CST6CDT > /etc/TZ

Also optimized timezone setting when the timezone string hasn't changed,
as well as fixed a minor buglet wrt SUSv3-allowed chars in TZ std and
dst fields.

fe8cd7e 2002-10-28 17:34:38 Miles Bader

Define TOPDIR to be just `.' when invoking gen_bits_syscall_h.sh, since
we've already chdir'ed to $(TOPDIR).

3a0eeec 2002-10-28 17:33:08 Miles Bader

Add appropriate -I options so that any files included by unistd.h are
found correctly.
Tweak the whitespace of the generated file.

b3f7002 2002-10-26 00:00:40 Eric Andersen

Fixup depends

dd91422 2002-10-25 23:53:37 Eric Andersen

Put it back the way it was. Sigh.

8cd7c61 2002-10-25 23:21:29 Eric Andersen

Sigh. Lets not use LD to link, or we lose the INTERP field.
-Erik

87f912c 2002-10-25 23:01:49 Eric Andersen

Doh. Add a missing #include to interp.c. I wonder why it used to
work? Perhaps the wrapper bug miles fixed? Regardless this is very
much needed.
-Erik

b3430d5 2002-10-25 22:52:23 Eric Andersen

Overwriting the crt1.o link is fine

5fa70fa 2002-10-25 22:28:29 Eric Andersen

Be nicer to gcc -- add a link for crt1.o

9b90385 2002-10-25 21:12:37 Eric Andersen

Actually install libdl.a
-Erik

71d9d16 2002-10-23 15:49:32 Eric Andersen

A patch from Arne Jonsson <arne.jonsson@i3micro.com> to allow
uClibc's libpthread to run on linux 2.0.x kernels which lack
poll() and therefore must use select() instead.

27e4714 2002-10-23 14:06:03 Miles Bader

Make `-nostdlib' and `-nodefaultlibs' work correctly.

4c59318 2002-10-22 16:13:57 Eric Andersen

When UNIX98PTY_ONLY was false, but Unix 98 ptys were in fact working and
functional, everything would succeed but then we would return a failure due to
a silly logic bug. This patch fixes it so things will work correctly
regardless of the UNIX98PTY_ONLY setting.
-Erik

bf391f8 2002-10-22 05:30:11 Eric Andersen

Update freeswan entry, per success report from Arne Bernin

8eecdc9 2002-10-19 08:03:14 Eric Andersen

This patch, based on a patch from Stefan Allius, lets us pick an
appropriate awk implementation at compile time, so we can again
compile on Solaris and whatnot.
-Erik

2e70e3a 2002-10-19 08:01:46 Eric Andersen

Echo mmu-less warning where appropriate

6bc59b1 2002-10-18 19:19:07 Eric Andersen

Add in an initial list of the differences between glibc and uClibc.
This is not complete, but covers some of the main points.
-Erik

08d4be6 2002-10-18 13:19:57 Miles Bader

Don't infinitely recurse when trying to grow __malloc_mmb_heap.

6343d9e 2002-10-17 20:15:14 Eric Andersen

Add a test from Alex King <alex@morrison.king.net.nz> which
shows a failure in ptsname when ASSUME_DEVPTS=false
-Erik