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
04481d9e
Commit
04481d9e
authored
Nov 19, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Android build with clang compiler
parent
ab931194
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
18 additions
and
4 deletions
+18
-4
CMakeLists.txt
3rdparty/libjasper/CMakeLists.txt
+1
-0
CMakeLists.txt
3rdparty/libjpeg/CMakeLists.txt
+1
-0
CMakeLists.txt
3rdparty/libtiff/CMakeLists.txt
+1
-0
CMakeLists.txt
3rdparty/tbb/CMakeLists.txt
+5
-0
OpenCVDetectCXXCompiler.cmake
cmake/OpenCVDetectCXXCompiler.cmake
+1
-1
detection_based_tracker.cpp
modules/contrib/src/detection_based_tracker.cpp
+2
-0
core.hpp
modules/core/include/opencv2/core/core.hpp
+2
-2
operations.hpp
modules/core/include/opencv2/core/operations.hpp
+1
-1
jni_part.cpp
samples/android/tutorial-3-native/jni/jni_part.cpp
+2
-0
jni_part.cpp
samples/android/tutorial-4-mixed/jni/jni_part.cpp
+2
-0
No files found.
3rdparty/libjasper/CMakeLists.txt
View file @
04481d9e
...
...
@@ -24,6 +24,7 @@ if(WIN32 AND NOT MINGW)
endif
(
WIN32 AND NOT MINGW
)
ocv_warnings_disable
(
CMAKE_C_FLAGS -Wno-implicit-function-declaration -Wno-uninitialized -Wmissing-prototypes -Wmissing-declarations -Wunused -Wshadow -Wsign-compare
)
ocv_warnings_disable
(
CMAKE_C_FLAGS -Wunused-parameter
)
# clang
ocv_warnings_disable
(
CMAKE_C_FLAGS /wd4013 /wd4018 /wd4101 /wd4244 /wd4267 /wd4715
)
# vs2005
if
(
UNIX
)
...
...
3rdparty/libjpeg/CMakeLists.txt
View file @
04481d9e
...
...
@@ -26,6 +26,7 @@ if(CMAKE_COMPILER_IS_GNUCXX)
endif
()
ocv_warnings_disable
(
CMAKE_C_FLAGS -Wcast-align -Wshadow -Wunused
)
ocv_warnings_disable
(
CMAKE_C_FLAGS -Wunused-parameter
)
# clang
set_target_properties
(
${
JPEG_LIBRARY
}
PROPERTIES OUTPUT_NAME
${
JPEG_LIBRARY
}
...
...
3rdparty/libtiff/CMakeLists.txt
View file @
04481d9e
...
...
@@ -89,6 +89,7 @@ endif(WIN32)
ocv_warnings_disable
(
CMAKE_C_FLAGS -Wno-unused-but-set-variable -Wmissing-prototypes -Wmissing-declarations -Wundef -Wunused -Wsign-compare
-Wcast-align -Wshadow -Wno-maybe-uninitialized -Wno-pointer-to-int-cast -Wno-int-to-pointer-cast
)
ocv_warnings_disable
(
CMAKE_C_FLAGS -Wunused-parameter
)
# clang
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wmissing-declarations -Wunused-parameter
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4018 /wd4100 /wd4127 /wd4311 /wd4701 /wd4706
)
# vs2005
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4244
)
# vs2008
...
...
3rdparty/tbb/CMakeLists.txt
View file @
04481d9e
...
...
@@ -123,6 +123,11 @@ add_definitions(-D__TBB_DYNAMIC_LOAD_ENABLED=0 #required
-DDO_ITT_NOTIFY=0
#it seems that we don't need these notifications
)
if
(
ANDROID_COMPILER_IS_CLANG
)
add_definitions
(
-D__TBB_GCC_BUILTIN_ATOMICS_PRESENT=1
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wmissing-prototypes
)
endif
()
if
(
tbb_need_GENERIC_DWORD_LOAD_STORE
)
#needed by TBB 4.0 update 1,2; fixed in TBB 4.0 update 3 but it has 2 new problems
add_definitions
(
-D__TBB_USE_GENERIC_DWORD_LOAD_STORE=1
)
...
...
cmake/OpenCVDetectCXXCompiler.cmake
View file @
04481d9e
...
...
@@ -54,7 +54,7 @@ endif()
# Detect GNU version:
# ----------------------------------------------------------------------------
if
(
CMAKE_COMPILER_IS_GNUCXX
)
execute_process
(
COMMAND
${
CMAKE_CXX_COMPILER
}
${
CMAKE_CXX_COMPILER_ARG1
}
-
-
version
execute_process
(
COMMAND
${
CMAKE_CXX_COMPILER
}
${
CMAKE_CXX_COMPILER_ARG1
}
-
dump
version
OUTPUT_VARIABLE CMAKE_OPENCV_GCC_VERSION_FULL
OUTPUT_STRIP_TRAILING_WHITESPACE
)
...
...
modules/contrib/src/detection_based_tracker.cpp
View file @
04481d9e
#if defined(__linux__) || defined(LINUX) || defined(__APPLE__) || defined(ANDROID)
#include "opencv2/contrib/detection_based_tracker.hpp"
#include <pthread.h>
#define DEBUGLOGS 1
#ifdef ANDROID
...
...
modules/core/include/opencv2/core/core.hpp
View file @
04481d9e
...
...
@@ -204,11 +204,11 @@ CV_EXPORTS ErrorCallback redirectError( ErrorCallback errCallback,
#ifdef __GNUC__
#define CV_Error( code, msg ) cv::error( cv::Exception(code, msg, __func__, __FILE__, __LINE__) )
#define CV_Error_( code, args ) cv::error( cv::Exception(code, cv::format args, __func__, __FILE__, __LINE__) )
#define CV_Assert( expr ) if((expr)) ; else cv::error( cv::Exception(CV_StsAssert, #expr, __func__, __FILE__, __LINE__) )
#define CV_Assert( expr ) if(
!!
(expr)) ; else cv::error( cv::Exception(CV_StsAssert, #expr, __func__, __FILE__, __LINE__) )
#else
#define CV_Error( code, msg ) cv::error( cv::Exception(code, msg, "", __FILE__, __LINE__) )
#define CV_Error_( code, args ) cv::error( cv::Exception(code, cv::format args, "", __FILE__, __LINE__) )
#define CV_Assert( expr ) if((expr)) ; else cv::error( cv::Exception(CV_StsAssert, #expr, "", __FILE__, __LINE__) )
#define CV_Assert( expr ) if(
!!
(expr)) ; else cv::error( cv::Exception(CV_StsAssert, #expr, "", __FILE__, __LINE__) )
#endif
#ifdef _DEBUG
...
...
modules/core/include/opencv2/core/operations.hpp
View file @
04481d9e
...
...
@@ -56,7 +56,7 @@
#define CV_XADD(addr,delta) _InterlockedExchangeAdd(const_cast<void*>(reinterpret_cast<volatile void*>(addr)), delta)
#elif defined __GNUC__
#if defined __clang__ && __clang_major__ >= 3
#if defined __clang__ && __clang_major__ >= 3
&& !defined __ANDROID__
#ifdef __ATOMIC_SEQ_CST
#define CV_XADD(addr, delta) __c11_atomic_fetch_add((_Atomic(int)*)(addr), (delta), __ATOMIC_SEQ_CST)
#else
...
...
samples/android/tutorial-3-native/jni/jni_part.cpp
View file @
04481d9e
...
...
@@ -8,6 +8,8 @@ using namespace std;
using
namespace
cv
;
extern
"C"
{
JNIEXPORT
void
JNICALL
Java_org_opencv_samples_tutorial3_Sample3Native_FindFeatures
(
JNIEnv
*
,
jobject
,
jlong
addrGray
,
jlong
addrRgba
);
JNIEXPORT
void
JNICALL
Java_org_opencv_samples_tutorial3_Sample3Native_FindFeatures
(
JNIEnv
*
,
jobject
,
jlong
addrGray
,
jlong
addrRgba
)
{
Mat
*
pMatGr
=
(
Mat
*
)
addrGray
;
...
...
samples/android/tutorial-4-mixed/jni/jni_part.cpp
View file @
04481d9e
...
...
@@ -8,6 +8,8 @@ using namespace std;
using
namespace
cv
;
extern
"C"
{
JNIEXPORT
void
JNICALL
Java_org_opencv_samples_tutorial4_Sample4Mixed_FindFeatures
(
JNIEnv
*
,
jobject
,
jlong
addrGray
,
jlong
addrRgba
);
JNIEXPORT
void
JNICALL
Java_org_opencv_samples_tutorial4_Sample4Mixed_FindFeatures
(
JNIEnv
*
,
jobject
,
jlong
addrGray
,
jlong
addrRgba
)
{
Mat
*
pMatGr
=
(
Mat
*
)
addrGray
;
...
...
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