summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.sunos4
diff options
context:
space:
mode:
authorTatsuo Ishii2001-02-27 08:13:31 +0000
committerTatsuo Ishii2001-02-27 08:13:31 +0000
commitdf247b821d811abcfc0ac707e1a3af9dfce474c9 (patch)
treedbc50e5ce1f0f4ab332e3810bef8c56921308e92 /src/makefiles/Makefile.sunos4
parent919ace07d59f1a0fbb237b0ca348e4a7574b4042 (diff)
Massive commits for SunOS4 port.
Diffstat (limited to 'src/makefiles/Makefile.sunos4')
-rw-r--r--src/makefiles/Makefile.sunos45
1 files changed, 3 insertions, 2 deletions
diff --git a/src/makefiles/Makefile.sunos4 b/src/makefiles/Makefile.sunos4
index 00bf9064ef9..c45f44d0998 100644
--- a/src/makefiles/Makefile.sunos4
+++ b/src/makefiles/Makefile.sunos4
@@ -2,7 +2,7 @@ AROPT = cr
DLSUFFIX = .so
ifeq ($(GCC), yes)
-CFLAGS_SL = -fPIC
+CFLAGS_SL = -fpic
else
CFLAGS_SL = -PIC
endif
@@ -13,4 +13,5 @@ CXXFLAGS_SL = -PIC
endif
%.so: %.o
- $(LD) -dc -dp -Bdynamic -o $@ $<
+ $(LD) -assert pure-text -Bdynamic -o $@ $<
+