Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
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
opencv
Commits
1f1d43fc
Commit
1f1d43fc
authored
Nov 19, 2012
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #2548 Missing static library libtbb.a for armeabi and mips build fixed.
parent
6cd70c83
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
OpenCVGenAndroidMK.cmake
cmake/OpenCVGenAndroidMK.cmake
+6
-0
OpenCV.mk.in
cmake/templates/OpenCV.mk.in
+16
-2
No files found.
cmake/OpenCVGenAndroidMK.cmake
View file @
1f1d43fc
...
@@ -71,6 +71,12 @@ if(ANDROID)
...
@@ -71,6 +71,12 @@ if(ANDROID)
endforeach
()
endforeach
()
string
(
REPLACE
"opencv_"
""
OPENCV_MODULES_CONFIGMAKE
"
${
OPENCV_MODULES_CONFIGMAKE
}
"
)
string
(
REPLACE
"opencv_"
""
OPENCV_MODULES_CONFIGMAKE
"
${
OPENCV_MODULES_CONFIGMAKE
}
"
)
# prepare 3rd-party component list without TBB for armeabi and mips platforms. TBB is useless there.
set
(
OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE_NO_TBB
${
OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE
}
)
foreach
(
mod
${
OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE_NO_TBB
}
)
string
(
REPLACE
"tbb"
""
OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE_NO_TBB
"
${
OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE_NO_TBB
}
"
)
endforeach
()
if
(
BUILD_FAT_JAVA_LIB
)
if
(
BUILD_FAT_JAVA_LIB
)
set
(
OPENCV_LIBS_CONFIGMAKE java
)
set
(
OPENCV_LIBS_CONFIGMAKE java
)
else
()
else
()
...
...
cmake/templates/OpenCV.mk.in
View file @
1f1d43fc
...
@@ -29,8 +29,22 @@ ifeq ($(OPENCV_LIB_TYPE),SHARED)
...
@@ -29,8 +29,22 @@ ifeq ($(OPENCV_LIB_TYPE),SHARED)
OPENCV_3RDPARTY_COMPONENTS:=
OPENCV_3RDPARTY_COMPONENTS:=
OPENCV_EXTRA_COMPONENTS:=
OPENCV_EXTRA_COMPONENTS:=
else
else
OPENCV_3RDPARTY_COMPONENTS:=@OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE@
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
OPENCV_EXTRA_COMPONENTS:=@OPENCV_EXTRA_COMPONENTS_CONFIGMAKE@
OPENCV_3RDPARTY_COMPONENTS:=@OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE@
OPENCV_EXTRA_COMPONENTS:=@OPENCV_EXTRA_COMPONENTS_CONFIGMAKE@
endif
ifeq ($(TARGET_ARCH_ABI),x86)
OPENCV_3RDPARTY_COMPONENTS:=@OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE@
OPENCV_EXTRA_COMPONENTS:=@OPENCV_EXTRA_COMPONENTS_CONFIGMAKE@
endif
ifeq ($(TARGET_ARCH_ABI),armeabi)
OPENCV_3RDPARTY_COMPONENTS:=@OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE_NO_TBB@
OPENCV_EXTRA_COMPONENTS:=@OPENCV_EXTRA_COMPONENTS_CONFIGMAKE@
endif
ifeq ($(TARGET_ARCH_ABI),mips)
OPENCV_3RDPARTY_COMPONENTS:=@OPENCV_3RDPARTY_COMPONENTS_CONFIGMAKE_NO_TBB@
OPENCV_EXTRA_COMPONENTS:=@OPENCV_EXTRA_COMPONENTS_CONFIGMAKE@
endif
endif
endif
ifeq (${OPENCV_CAMERA_MODULES},on)
ifeq (${OPENCV_CAMERA_MODULES},on)
...
...
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