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
3bcbd654
Unverified
Commit
3bcbd654
authored
Feb 04, 2018
by
Luca Boccassi
Committed by
GitHub
Feb 04, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2922 from zeromq/revert-2920-work/fix-icl-build
Revert "Problem: Windows Intel compiler build broken"
parents
c43c8795
08cc22a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
zmq.h
include/zmq.h
+5
-5
No files found.
include/zmq.h
View file @
3bcbd654
...
...
@@ -243,14 +243,14 @@ ZMQ_EXPORT int zmq_ctx_destroy (void *context);
* zmq_msg_t on addresses aligned on a pointer-size boundary to avoid this issue.
*/
typedef
struct
zmq_msg_t
{
#if defined (_MSC_VER) && (defined (_M_X64) || defined (_M_ARM64))
__declspec
(
align
(
8
))
unsigned
char
_
[
64
];
#elif defined (_MSC_VER) && (defined (_M_IX86) || defined (_M_ARM_ARMV7VE))
__declspec
(
align
(
4
))
unsigned
char
_
[
64
];
#elif defined (__GNUC__) || defined ( __INTEL_COMPILER) || \
#if defined (__GNUC__) || defined ( __INTEL_COMPILER) || \
(defined (__SUNPRO_C) && __SUNPRO_C >= 0x590) || \
(defined (__SUNPRO_CC) && __SUNPRO_CC >= 0x590)
unsigned
char
_
[
64
]
__attribute__
((
aligned
(
sizeof
(
void
*
))));
#elif defined (_MSC_VER) && (defined (_M_X64) || defined (_M_ARM64))
__declspec
(
align
(
8
))
unsigned
char
_
[
64
];
#elif defined (_MSC_VER) && (defined (_M_IX86) || defined (_M_ARM_ARMV7VE))
__declspec
(
align
(
4
))
unsigned
char
_
[
64
];
#else
unsigned
char
_
[
64
];
#endif
...
...
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