Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
df2fe88b
Unverified
Commit
df2fe88b
authored
May 13, 2018
by
Simon Giesecke
Committed by
GitHub
May 13, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3095 from bluca/sunstudio_linux
Problem: building on Linux with Sun Studio still fails
parents
cdb54d24
09f700f7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
2 deletions
+13
-2
configure.ac
configure.ac
+6
-0
atomic_ptr.hpp
src/atomic_ptr.hpp
+4
-0
blob.hpp
src/blob.hpp
+1
-1
err.cpp
src/err.cpp
+1
-1
ipc_listener.cpp
src/ipc_listener.cpp
+1
-0
No files found.
configure.ac
View file @
df2fe88b
...
...
@@ -315,6 +315,12 @@ case "${host_os}" in
;;
esac
# Sun Studio does not like anonymous structures in unions
if test "x$libzmq_cv_[]_AC_LANG_ABBREV[]_sun_studio_compiler" = "xyes"; then
CXXFLAGS="${CXXFLAGS} -features=extensions"
CFLAGS="${CFLAGS} -features=extensions"
fi
# Checks for libraries
AC_CHECK_LIB([pthread], [pthread_create])
AC_CHECK_LIB([rt], [clock_gettime])
...
...
src/atomic_ptr.hpp
View file @
df2fe88b
...
...
@@ -266,7 +266,11 @@ struct atomic_value_t
return
(
int
)
(
ptrdiff_t
)
atomic_cas
((
void
**
)
&
value
,
0
,
0
#if defined ZMQ_ATOMIC_PTR_MUTEX
,
#if defined __SUNPRO_CC
const_cast
<
mutex_t
&>
(
sync
)
#else
sync
#endif
#endif
);
#endif
...
...
src/blob.hpp
View file @
df2fe88b
...
...
@@ -40,7 +40,7 @@
#define ZMQ_PUSH_OR_EMPLACE_BACK emplace_back
#define ZMQ_MOVE(x) std::move (x)
#else
#if defined
ZMQ_HAVE_SOLARIS
#if defined
__SUNPRO_CC
template
<
typename
K
,
typename
V
>
std
::
pair
<
const
K
,
V
>
make_pair_fix_const
(
const
K
&
k
,
const
V
&
v
)
{
...
...
src/err.cpp
View file @
df2fe88b
...
...
@@ -387,7 +387,7 @@ int zmq::wsa_error_to_errno (int errcode)
#endif
#if
def HAVE_LIBUNWIND
#if
defined(HAVE_LIBUNWIND) && !defined(__SUNPRO_CC)
#define UNW_LOCAL_ONLY
#include <libunwind.h>
...
...
src/ipc_listener.cpp
View file @
df2fe88b
...
...
@@ -138,6 +138,7 @@ zmq::ipc_listener_t::ipc_listener_t (io_thread_t *io_thread_,
io_object_t
(
io_thread_
),
has_file
(
false
),
s
(
retired_fd
),
handle
((
handle_t
)
NULL
),
socket
(
socket_
)
{
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment