ROCm / MIVisionX

MIVisionX toolkit is a set of comprehensive computer vision and machine intelligence libraries, utilities, and applications bundled into a single toolkit. AMD MIVisionX also delivers a highly optimized open-source implementation of the Khronos OpenVX™ and OpenVX™ Extensions.
https://rocm.docs.amd.com/projects/MIVisionX/en/latest/
MIT License
184 stars 72 forks source link

RunVX - Ubuntu 22.04 Warnings #953

Closed kiritigowda closed 1 year ago

kiritigowda commented 1 year ago
/var/jenkins_home/workspace/_Short-GPUOpen_MIVisionX_develop@5/4zVb2m7jz/CPU/mivisionx/utilities/runvx/vxUtils.cpp:323:7: warning: 'MD5_Init' is deprecated [-Wdeprecated-declarations]
        if (!MD5_Init(&m_handle)) {
             ^
/usr/include/openssl/md5.h:49:1: note: 'MD5_Init' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c);
^
/usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
/var/jenkins_home/workspace/_Short-GPUOpen_MIVisionX_develop@5/4zVb2m7jz/CPU/mivisionx/utilities/runvx/vxUtils.cpp:341:7: warning: 'MD5_Update' is deprecated [-Wdeprecated-declarations]
        if (!MD5_Update(&m_handle, (unsigned char*)data_ptr, count)) {
             ^
/usr/include/openssl/md5.h:50:1: note: 'MD5_Update' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^
/usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
/var/jenkins_home/workspace/_Short-GPUOpen_MIVisionX_develop@5/4zVb2m7jz/CPU/mivisionx/utilities/runvx/vxUtils.cpp:360:7: warning: 'MD5_Final' is deprecated [-Wdeprecated-declarations]
        if (!MD5_Final(m_hash, &m_handle)) {
             ^
/usr/include/openssl/md5.h:51:1: note: 'MD5_Final' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c);
^
/usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
[ 68%] Building CXX object amd_openvx_extensions/amd_opencv/CMakeFiles/vx_opencv.dir/source/OpenCV_dilate.cpp.o
/var/jenkins_home/workspace/_Short-GPUOpen_MIVisionX_develop@5/4zVb2m7jz/CPU/mivisionx/utilities/runvx/vxUtils.cpp:323:7: warning: 'MD5_Init' is deprecated [-Wdeprecated-declarations]
        if (!MD5_Init(&m_handle)) {
             ^
/usr/include/openssl/md5.h:49:1: note: 'MD5_Init' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c);
^
/usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
/var/jenkins_home/workspace/_Short-GPUOpen_MIVisionX_develop@5/4zVb2m7jz/CPU/mivisionx/utilities/runvx/vxUtils.cpp:341:7: warning: 'MD5_Update' is deprecated [-Wdeprecated-declarations]
        if (!MD5_Update(&m_handle, (unsigned char*)data_ptr, count)) {
             ^
/usr/include/openssl/md5.h:50:1: note: 'MD5_Update' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
^
/usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
/var/jenkins_home/workspace/_Short-GPUOpen_MIVisionX_develop@5/4zVb2m7jz/CPU/mivisionx/utilities/runvx/vxUtils.cpp:360:7: warning: 'MD5_Final' is deprecated [-Wdeprecated-declarations]
        if (!MD5_Final(m_hash, &m_handle)) {
             ^
/usr/include/openssl/md5.h:51:1: note: 'MD5_Final' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c);
^
/usr/include/openssl/macros.h:182:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/usr/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
kiritigowda commented 1 year ago

PR #971 - fix deprecated warnings.

kiritigowda commented 1 year ago

1013 fixes these warnings