• 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
537a1b3 2004-12-11 22:23:14 Eric Andersen

We can't strip libpthread or libthread_db can't help gdb debug ptheads

98521f6 2004-12-11 21:28:51 Eric Andersen

That last patch had some garbage in it... PIC != PIE

a56073a 2004-12-11 21:23:37 Eric Andersen

Partial commit of a patch from Alexandre Oliva:

Here's an updated version of the patch I posted about a month ago. It
leaves -nostdinc alone, and uses -print-file-name=include instead of
-print-search-dirs to figure out where GCC's internal headers are.

Please let me know whether there are any portions of this patch you'd
like me to break into smaller pieces, to rework, or to give up trying
to get into uClibc :-) Thanks,

fb6f30c 2004-12-11 21:05:31 Eric Andersen

Remove some accumulated ugly junk

2a6fe90 2004-12-10 08:18:02 Eric Andersen

Don't use PAGE_SIZE, instead just a local BUFFER_SIZE define

e156b02 2004-12-09 07:31:50 Eric Andersen

libpthread can use the normal LDFLAGS (including -s to strip it), but
libthreaddb must not be stripped or gdb can't use it.

f463aa5 2004-12-09 06:18:53 Eric Andersen

Kill off ancient unused cruft

3437935 2004-12-08 17:24:17 Eric Andersen

Use PAGE_SIZE, not 4096

6da8f8d 2004-12-07 08:24:21 Eric Andersen

Add missing definition for O_DIRECT

b34ae62 2004-11-26 04:10:39 Ned Ludd

update : $

67e184e 2004-11-17 21:29:10 Joakim Tjernlund

Make __builtin_return_address() return NULL at top of
stack frame. This will make backtracing possible.

a5ebab1 2004-11-17 18:36:40 Joakim Tjernlund

Add BIND NOW support to MIPS.

Mips did not honour the LD_BIND_NOW env. variable or the DT_BIND_NOW flag
in the dynamic section.

9699ba8 2004-11-12 03:55:51 Eric Andersen

Fix grammar

56a4f32 2004-11-11 23:50:52 Mike Frysinger

move getent to extra/scripts/ out of docs/

c74b1cc 2004-11-11 23:48:24 Mike Frysinger

misc touchups

37c4e78 2004-11-11 23:44:17 Mike Frysinger

fix a few typos and clean up the spacing (no tabs)

3cd353a 2004-11-11 12:13:36 Ned Ludd

misc cleanups of __stack_smash_handler() function when ssp support is enabled. syslog() support should now work both inside and outside of chroots. erandom code left in but remains #ifdef out by default. May remove erandom completely in the future for uClibc unless the LFS guys and gals want to keep it.

1aea77e 2004-11-11 12:12:37 Ned Ludd

misc cleanups of __stack_smash_handler() function when ssp support is enabled. syslog() support should now work both inside and outside of chroots. erandom code left in but remains #ifdef out by default. May remove erandom completely in the future for uClibc unless the LFS guys and gals want to keep it.

0038f6a 2004-11-11 00:27:26 Joakim Tjernlund

Add RTLD_LOCAL support for dlopened libs. Reported by
Andrew de Quincey, who has been most helpful getting this sorted
out, thanks. Thanks also to Peter Mazinger who did alot of testing.

Removed all traces of dl_parse_copy_information() since it is no longer used.

0657ab0 2004-11-10 17:07:40 Ned Ludd

initial commit of uclibc equiv of glibc getent

76dfc7c 2004-11-08 12:34:44 Eric Andersen

Some requested additional malloc entry points

909aec1 2004-11-08 12:31:41 Eric Andersen

A patch included in glibc 2.3.2's libthread_db that helps remote
debugging not become confused,

139ea40 2004-11-03 00:15:10 Eric Andersen

struct ipc_perm, as used by shmctl() when soing shared memory stuff,
was incorrect in uClibc, and was 2 bytes too short. This caused uClibc
shared memory stuff to not behave correctly since struct ipc_perm was
included as the first member of, i.e. struct msqid_ds, so the content
of that struct were all shifted by two bytes. ugh. Apparently, few
people have used shared memory, msgctl(), etc with uClibc thus far,
-Erik

dc0f822 2004-11-02 17:14:49 Joakim Tjernlund

- Remove dynamic_size from struct elf_resolve.
- Replace all open coded dynamic handling with a function. Reduces size.
- Fold special MIPS dynamic code into the dynamic_info item.
- Add RELRO support.
- Support linking with "-z now".
- prepare for DT_RELACOUNT/DT_RELCOUNT optimization.
- Add -z now to ld.so linking, this is what ld.so does anyway so
let the linker know that.

f8f7b10 2004-11-01 05:23:09 Manuel Novoa III

Revert Peter's __lib_gettimeofday patch. There's the minor issue of
adding cruft to include/sys/time.h. But also, there's no sense in
making changes like this until we decide how we're going to approach
the hidden symbol transition.

3792188 2004-10-31 02:56:00 Peter Kjellerstedt

Synchronized with glibc (2.3.2).

c03a430 2004-10-31 02:32:52 Peter Kjellerstedt

Do not assume a fifth argument is used with syscall(). Allocate stack
for saving SRP separately.

b0cf293 2004-10-30 10:07:48 Eric Andersen

Revise TODO list for the upcoming release

c89a188 2004-10-28 07:07:52 Manuel Novoa III

Jocke's patch was almost right. Just needed move the DT_MIPS_RLD_MAP test
up a bit. Native and remote debugging of shared libs and threaded apps now
works on mips.

5853eed 2004-10-27 18:44:00 Eric Andersen

Fix up __uClibc_init() for so that we prevent starting SUID
binaries where the standard file descriptors are not opened.
-Erik