Skip to content
Snippets Groups Projects
Commit c0d084cd authored by deuce's avatar deuce
Browse files

SunOS library creation settings

parent ac329beb
No related branches found
No related tags found
No related merge requests found
......@@ -117,12 +117,18 @@ SMBLIB_OBJS = \
SHLIBOPTS := -shared
ifeq ($(os),darwin)
MKSHLIB := libtool -dynamic -framework System -lcc_dynamic
MKSHPPLIB := libtool -dynamic -framework System -lcc_dynamic -lstdc++
SHLIBOPTS :=
MKSHLIB := libtool -dynamic -framework System -lcc_dynamic
MKSHPPLIB := libtool -dynamic -framework System -lcc_dynamic -lstdc++
SHLIBOPTS :=
else
MKSHLIB := $(CC)
MKSHPPLIB := $(CXX)
ifeq ($(os),sunos)
MKSHLIB := /usr/ccs/bin/ld -G
MKSHPPLIB := /usr/ccs/bin/ld -G -L/usr/local/lib -lstdc++
SHLIBOPTS :=
else
MKSHLIB := $(CC)
MKSHPPLIB := $(CXX)
endif
endif
# Monolithic Synchronet executable Build Rule
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment