jkh
f9bc910bcd
Added sbrk() as new file.
1993-12-11 21:06:36 +00:00
jkh
21990edfab
Broke sbrk() out of rtld as part of general cleanup.
1993-12-11 21:06:00 +00:00
jkh
2f700dbb7c
Omitted 4th argument to findshlib() [thanks Rich!]. Our ld is a bit
...
different from NetBSD's here and it squeaked through the update.
1993-12-11 20:08:39 +00:00
jkh
fa2f998399
Sync up with Paul K's latest ld from cesium.
1993-12-11 12:02:10 +00:00
jkh
4bb66b3efe
makedepend fails for ld. I think it because the .S files are
...
preprocessed the same as when they are compiled. I just remove the
single-quotes from the offending comments. Rich
1993-12-10 10:16:00 +00:00
jkh
de5c072bce
Added the TODO file. Also wanted to announce the previous change to rtld.c
...
which eliminates the stack walking code (from David G.). My previous commit
message was eaten by mistake!
1993-12-09 17:53:08 +00:00
jkh
0e47039eee
David Greenman's latest changes to eliminate much stack-walking jazz
...
(no more sbrk_init()!).
1993-12-09 17:45:43 +00:00
jkh
e781a415b5
More changes to bring FreeBSD in sync with Paul K's latest.
1993-12-04 00:53:16 +00:00
jkh
0692c29b44
More changes to bring FreBSD in sync with Paul K's latest.
1993-12-04 00:53:02 +00:00
ache
fb77d58356
Sorry, Jordan, but I restore previous version again.
...
You write that
LDFLAGS+= -Xlinker -Bstatic
no more needed, but you have
CFLAGS += -static -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE)
This -static doesn't make any sense in your version,
because it not passed to linker's state (LDFLAGS),
so we have SHARED /usr/bin/ld in this case.
(Older Makefile produce non-shared ld).
I suppose, that -static in CFLAGS was introduced to
make non-shared ld, so I restore previous LDFLAGS
to have non-shared ld. If we want to have shared ld
we need to remove -static from CFLAGS too, not only LDFLAGS,
but this need special issue and corresponding
commit log. Your current version hang into intermediate
state (beetween two sides), so I move it to one side.
Second, I restore NOPIC dependance again from older Makefile:
.if !defined(NOPIC)
SUBDIR+= rtld
.endif
We don't need ld.so, if NOPIC
P.S. I don't see any purpose to commit new makefile, old version
is better.
1993-12-02 09:56:30 +00:00
ache
1d8e4d1772
#ifdef DEBUG unwanted message, third time after Jordan...
1993-12-02 09:32:26 +00:00
nate
b95062ff6a
Moved DEBUG conditional where it belonged to remove DEBUG code out of
...
default compilation.
1993-12-02 05:09:52 +00:00
jkh
82cf8558b8
Second attempt to integrate Paul K's changes.
1993-12-02 01:03:47 +00:00
jkh
6c95372161
Second attempt to integrate Paul K's changes.
1993-12-02 00:56:40 +00:00
ats
1b23c6f734
deleted all references to rindex and included string.h instead.
1993-12-01 16:45:42 +00:00
ats
3749e58064
changed the order of the includes and deleted a reference to index
...
nd added an include to string.h instead
1993-12-01 16:44:43 +00:00
ache
fa2f60314e
All -static and -Xlinker -Bstatic flags missed in
...
newly commited Makefile.
NOPIC dependance missed too!
Oh it is really pain to check all that broken stuff,
Please, check it *before* commit!
1993-12-01 15:58:22 +00:00
ache
40661d07ce
#ifdef DEBUG missed by several lines!
...
!!! Please, COMPILE *BEFORE* COMMIT!
1993-12-01 15:34:01 +00:00
ache
547828e850
Add DEBUG #ifdef, (second time!)
...
!!! Please, anybody who update ld to NetBSD current,
!!! look at old cvs logs!
1993-12-01 15:13:42 +00:00
ache
66add984dc
Remove hanging #else part (with second sbrk()) without #if & #endif
...
Add missing argument to findshlib, I am not shure,
but it seems that it is 1.
!!! Does anybody compile it before commit?
1993-12-01 15:05:31 +00:00
ache
a88a13690a
Remove -g option (second time!)
...
!!! Please anybody who port Makefiles from NetBSD,
!!! remove -g option!
1993-12-01 14:45:35 +00:00
jkh
901b86e422
Latest from Paul K. for better checking of PIC code.
1993-11-30 20:57:41 +00:00
jkh
90b65690ec
Many recent fixes from Paul K, add support for chaining of shared lib deps.
1993-11-30 20:47:54 +00:00
jkh
5465ba6a25
Added -lgcc_pic back again.
1993-11-25 01:06:42 +00:00
jkh
f730dcb859
Some of the latest changes from Paul K (taken from NetBSD-current).
1993-11-22 19:05:31 +00:00
jkh
a5ee536189
If we're not logging history information, don't demand write access.
1993-11-20 00:33:12 +00:00
jkh
93375236f0
Recent Paul K. changes for compiling X shared (tested on my box).
1993-11-18 20:52:34 +00:00
ache
dbf6b5a2db
remove HAVE_SETPGRP, because it doesn't detach terminal
...
in POSIX (setsid() is only way to do it)
1993-11-18 01:19:06 +00:00
ache
bd8d47ba76
IMAXBELL & PENDIN now cleared to satisfy new sio driver.
...
From Ian Taylor.
Fix POSIX CLOCAL behaviour, set controlling terminal after it.
Change VTIME from 0 to 1 to fix timeouts waiting for data
1993-11-18 01:03:18 +00:00
ache
1f3af8cba1
From Ian Taylor.
...
Fix POSIX detach behaviour, based on setsid() call.
stpgrp(0,0) not used for POSIX now.
1993-11-18 00:59:17 +00:00
ache
18e63a0c75
Diagnostic "RRS text relocation at %#x (symbol %s)"
...
commented out in #ifdef DEBUG
As Paul told me, it is only informational, nothing more.
I don't want several screens of this information
on each linking (netstat f.e.)
1993-11-17 01:33:24 +00:00
paul
9ff4f18864
Default magic is back to netbsd ZMAGIC,
...
new a_midmag format needed for dynamic binaries.
-z produces normal ZMAGIC. (this gets our kernel built)
-Z produces netbsd ZMAGIC. (currently default)
1993-11-16 07:20:35 +00:00
paul
0d6de7cdb1
Swapped meaning of -Z and -z options.
...
On any other system -z means "standard" ZMAGIC format and is the
default. Therefore I've made -z be standard ZMAGIC and -Z be ZMAGIC
stored in the new a_midmag format.
The "standard" ZMAGIC format is now the default as well.
1993-11-16 00:42:57 +00:00
paul
3eb63c406d
Incorporated fixes from Paul to make -Z option work. Emits old-style
...
ZMAGIC magic numbers in a long.
1993-11-15 20:58:20 +00:00
nate
3bcb26e56e
Update to GNU diffutils 2.6
...
(Forgot to cvs add them)
1993-11-12 07:06:35 +00:00
nate
0ed7263429
Updated to GNU diffutils 2.6
1993-11-12 07:05:54 +00:00
nate
fbf13a99b7
Update to GNU diffutils 2.6
1993-11-12 07:05:40 +00:00
paul
15f00c2a59
Added
...
.if !defined(NOPIC)
SUBDIR+= rtld
.endif
so linker can be built without building ld.so
1993-11-09 21:23:07 +00:00
paul
4d78d6f7a6
Cahnged ldconfig.0 to ldconfig.8 for our man system.
1993-11-09 20:39:46 +00:00
paul
449a9dbe10
Remoed -g flag and added -static.
1993-11-09 20:39:26 +00:00
paul
b77e0b81ad
Added
...
SHLIB_MAJOR=0
SHLIB_MINOR=0
1993-11-09 20:25:14 +00:00
paul
7666248dea
Added -lgcc_pic to Makefile -- Why do we need this and NetBSD don't ??
...
Incorporated patch by Guido (inspired by Davidg) that fixes stack
problem. May not be final fix but it works more than the current method.
1993-11-09 04:44:30 +00:00
paul
62cf7a7029
Updated to newest ld from pk.
...
lib.c:
Pull in archives containing definitions needed by shared objects.
warnings.c:
Less spurious "undefined symbol" msgs for shared library defined
symbols.
ld.c:
Do a better job of recognising data in text segments, eg. `const char []'.
shlib.c,ld/rtld/{Makefile rtld.c}
Use strsep() in stead of strtok() and restore colons in eg. env. vars.
1993-11-09 04:19:36 +00:00
nate
51db49745d
Removed some extra cruft from the man page to make it look more 'BSD'ish
...
and less 'GNU'ish
1993-11-08 17:11:29 +00:00
nate
2e47a4860a
Updated to GNU textutils 1.9
1993-11-08 17:09:50 +00:00
nate
dc832dd581
Updated to GNU textutils-1.9
1993-11-08 17:07:38 +00:00
nate
d0fbf26539
From: Larry Jones <scjones@thor.sdrc.com>
...
Subject: man pages for diff et al.
I finally got tired of not having man pages for diff and friends, so I
edited the appropriate sections of the texinfo manual into man format.
1993-11-08 01:36:04 +00:00
paul
6de07adf6a
Added -lgcc_pic to LDFLAGS in rtld/Makefile
1993-11-07 03:25:25 +00:00
paul
0ec4b5ba38
Changed ldconfig.0 to ldconfig.8 for our man setup.
1993-11-06 23:15:53 +00:00
ache
176ef9b050
-g removed from CFLAGS (with permissions from Paul)
1993-11-05 01:35:24 +00:00