• 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
54069d7 2001-04-24 06:52:35 Eric Andersen

Make sure that we list the shared lib loader as a required lib
by explicitly linking against it. That way 'ldd' tells us what
we need to know.
-Erik

0c156a8 2001-04-24 06:33:52 Eric Andersen

Fix up the main makefile. Autobuild ld.so and install it
when appropriate,

b9c667b 2001-04-24 06:23:19 Eric Andersen

Define where the shared lib loader now lives...
-Erik

4a479b9 2001-04-24 06:21:49 Eric Andersen

Fix up compiler name

3d7f18f 2001-04-24 06:20:42 Eric Andersen

Always use __NR_<name>, not SYS_<name>
-Erik

e5b0dc8 2001-04-24 06:18:14 Eric Andersen

Revert my syscall changes. The _syscall# macros are not PIC
friendly and don't work. Back to nasty asm...

With this change in place, it now works for me on x86.
-Erik

842e41a 2001-04-24 05:36:01 Eric Andersen

Ok, seems this _must_ be compiled as PIC code.
-Erik

be032b8 2001-04-24 05:11:40 Eric Andersen

Ignore generated stuff. Add a 'make install' target that works.
-Erik

66f269d 2001-04-24 02:43:54 Eric Andersen

Initial checkin for ld.so. This is a combination of effort from Manuel Novoa
III and me. I've been working on stripping out arch dependant stuff and
replacing it with generic stuff whenever possible.
-Erik

c4a3f3f 2001-04-23 23:56:15 Eric Andersen

Only compile in daemon() if the target has an MMU.
-Erik

4d7c5fe 2001-04-21 04:14:22 Eric Andersen

Use the real getnetbyname(), not the stub in resolv.c

40b7b3f 2001-04-21 03:50:22 Eric Andersen

Stub out fpathconf() -- FIXME
-Erik

4a536a2 2001-04-21 03:48:34 Eric Andersen

Add in a trivial getlogin implementation

4215cc7 2001-04-21 02:51:43 Eric Andersen

Update the ignore targets

b37d449 2001-04-21 02:49:19 Eric Andersen

Oops. I forgot the header file
-Erik

e89dc91 2001-04-21 02:48:24 Eric Andersen

Add missing header file for daemon.c, add missing functions into unistd.h.
I still need to implement getlogin.c fpathconf.c, but they are required
for IEEE Std. 1003.13-1998 POSIX_FILE_SYSTEM conformance and we don't
have them yet. But we will very very soon. :-)
-Erik

039fefa 2001-04-21 02:26:51 Eric Andersen

Nobody should be using the SYS_ syscall names. Use the __NR_<foo>
names instead.
-Erik

b593d7d 2001-04-21 01:47:10 Eric Andersen

getnetbyname.o, res_init.o and res_query.o were missing from the Makefile,
patch thanks to John Hall <John.Hall@optionexist.co.uk>

0622974 2001-04-20 16:53:33 Manuel Novoa III

Update the gcc wrapper. Changes described in the notes at the top of the file.

c75d808 2001-04-20 16:52:06 Manuel Novoa III

Change shared lib name. Update install_new target in Makefile.

7829282 2001-04-20 05:55:41 Eric Andersen

Remove the old crypt implementation

08012e2 2001-04-20 05:53:49 Eric Andersen

Add in a libcrypt implementation. About 8k.
-Erik

0adaa60 2001-04-20 00:42:16 Eric Andersen

Bring sh and i386 longjmp implementations into sync

b92a9d4 2001-04-20 00:31:06 Eric Andersen

Add missing alias siglongjmp = longjmp;
-Erik

edfe725 2001-04-19 23:42:48 Eric Andersen

Remove all the __THROW macros

99a6ee4 2001-04-19 07:00:20 Eric Andersen

Posix 1003.13 POSIX_MULTI_PROCESS specifies that execle() should
be there, so I just wrote it up.
-Erik

1f849b3 2001-04-19 06:12:09 Eric Andersen

Add missing time()

0fe8d5d 2001-04-19 05:13:13 Eric Andersen

Update temp file handling and use a single function to do all
the heavy lifting (most of the heavy lifting stolen from glibc,
but reduced a bit).

7b6a954 2001-04-08 01:44:38 Manuel Novoa III

Fix dynamic linking bug. If you need -ldl, you must explicitly add the
library (path and version!!!) to the args instead. For example, add
/lib/libdl.so.1 if DYNAMIC_LINKER is /lib/ld-linux.so.1.

bb4178a 2001-04-07 08:34:52 Eric Andersen

Fix up more leftovers resultant from fixing _LIBC