summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index e670953b..9f7bcfcc 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -292,7 +292,9 @@ ifeq (iOS,$(TARGET_SYS))
292 TARGET_XSHLDFLAGS+= -install_name $(PREFIX)/lib/$(TARGET_DYLIBNAME) 292 TARGET_XSHLDFLAGS+= -install_name $(PREFIX)/lib/$(TARGET_DYLIBNAME)
293 endif 293 endif
294else 294else
295 TARGET_XLDFLAGS+= -Wl,-E 295 ifneq (SunOS,$(TARGET_SYS))
296 TARGET_XLDFLAGS+= -Wl,-E
297 endif
296 ifeq (Linux,$(TARGET_SYS)) 298 ifeq (Linux,$(TARGET_SYS))
297 TARGET_XLIBS+= -ldl 299 TARGET_XLIBS+= -ldl
298 endif 300 endif
@@ -420,6 +422,9 @@ endif
420ifeq (iOS,$(TARGET_SYS)) 422ifeq (iOS,$(TARGET_SYS))
421 LJVM_MODE= machasm 423 LJVM_MODE= machasm
422endif 424endif
425ifeq (SunOS,$(TARGET_SYS))
426 BUILDMODE= static
427endif
423 428
424ifeq (static,$(BUILDMODE)) 429ifeq (static,$(BUILDMODE))
425 TARGET_DYNCC= @: 430 TARGET_DYNCC= @: