Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libwebsockets
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Fork
libwebsockets
Commits
984b7d3b
Commit
984b7d3b
authored
6 years ago
by
dennisWind
Committed by
Andy Green
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Create cross-arm-android-gnueabi.cmake
add cross cmake config file
parent
9d9c90bc
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
contrib/cross-arm-android-gnueabi.cmake
+30
-0
30 additions, 0 deletions
contrib/cross-arm-android-gnueabi.cmake
with
30 additions
and
0 deletions
contrib/cross-arm-android-gnueabi.cmake
0 → 100644
+
30
−
0
View file @
984b7d3b
#
# CMake Toolchain file for crosscompiling on ARM.
#
# This can be used when running cmake in the following way:
# cd build/
# cmake .. -DCMAKE_TOOLCHAIN_FILE=../cross-arm-linux-gnueabihf.cmake
#
set
(
CROSS_PATH /opt/libwebsockets_android/android-toolchain-arm
)
# Target operating system name.
set
(
CMAKE_SYSTEM_NAME Android
)
# Target build dynamic libs.
set
(
BUILD_SHARED_LIBS ON
)
# Name of C compiler.
set
(
CMAKE_C_COMPILER
"
${
CROSS_PATH
}
/bin/arm-linux-androideabi-gcc"
)
set
(
CMAKE_CXX_COMPILER
"
${
CROSS_PATH
}
/bin/arm-linux-androideabi-g++"
)
# Where to look for the target environment. (More paths can be added here)
set
(
CMAKE_FIND_ROOT_PATH
"
${
CROSS_PATH
}
"
)
# Adjust the default behavior of the FIND_XXX() commands:
# search programs in the host environment only.
set
(
CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER
)
# Search headers and libraries in the target environment only.
set
(
CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY
)
set
(
CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment