Skip to content
Snippets Groups Projects
Commit 96c1012b authored by gerd's avatar gerd
Browse files

* tools/load-foreign.csh [FreeBSD]: Replace ld option -N

	with -shared.
parent 53314851
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,14 @@ switch ( `uname` )
breaksw
case FreeBSD:
case NetBSD:
ld -shared -R $argv[1] -Ttext $argv[2] -o $argv[3] $argv[5-]
if ($status != 0) exit 1
nm -gp $argv[3] > $argv[4]
if ($status != 0) exit 2
breaksw
case NetBSD:
ld -N -R $argv[1] -Ttext $argv[2] -o $argv[3] $argv[5-]
if ($status != 0) exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment