Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
4ec302eb
Commit
4ec302eb
authored
Jun 14, 2019
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WolfSSL : Fix crosscompiling i386 on x86_64, on Linux
parent
e22d2cfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
extra/wolfssl/CMakeLists.txt
extra/wolfssl/CMakeLists.txt
+3
-1
No files found.
extra/wolfssl/CMakeLists.txt
View file @
4ec302eb
...
...
@@ -6,7 +6,8 @@ ELSE()
PROJECT
(
wolfssl C
)
ENDIF
()
IF
(
MSVC
AND
(
CMAKE_SIZEOF_VOID_P MATCHES 8
))
IF
(
CMAKE_SIZEOF_VOID_P MATCHES 8
)
IF
(
MSVC
)
SET
(
WOLFSSL_INTELASM ON
)
ELSEIF
(
CMAKE_SYSTEM_PROCESSOR MATCHES
"x86_64"
)
IF
(
CMAKE_C_COMPILER_ID MATCHES GNU AND CMAKE_C_COMPILER_VERSION VERSION_LESS 4.9
)
...
...
@@ -20,6 +21,7 @@ ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64")
SET
(
WOLFSSL_INTELASM ON
)
ENDIF
()
ENDIF
()
ENDIF
()
SET
(
WOLFSSL_SRCDIR
${
CMAKE_CURRENT_SOURCE_DIR
}
/wolfssl/src
)
ADD_DEFINITIONS
(
${
SSL_DEFINES
}
)
...
...
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