CMakeがOpenSSLライブラリを見つけることができません


118

コマンドラインでcmakeを実行すると、cmakeを使用してソフトウェアをインストールしようとしています。
このファイルで次のエラーが発生します。CMakeLists.txt--------行---> find_package( OpenSSLが必要):-

 cmake ..
-- Could NOT find Git (missing:  GIT_EXECUTABLE) 
ZLib include dirs: /usr/include
ZLib libraries: /usr/lib/arm-linux-gnueabihf/libz.so
Compiling with SSL support
CMake Error at /usr/local/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:97 (message):
  Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the
  system variable OPENSSL_ROOT_DIR (missing: OPENSSL_LIBRARIES
  OPENSSL_INCLUDE_DIR)
Call Stack (most recent call first):
  /usr/local/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:291 (_FPHSA_FAILURE_MESSAGE)
  /usr/local/share/cmake-2.8/Modules/FindOpenSSL.cmake:313 (find_package_handle_standard_args)
  CMakeLists.txt:436 (find_package)

これは、エラーが発生しているCMakeLists.txtファイルの一部です。

#
# OpenSSL
#
if (WITH_SSL)
    message("Compiling with SSL support")

    if (USE_CYASSL)
        # Use CyaSSL as OpenSSL replacement.
        # TODO: Add a find_package command for this also.
        message("CyaSSL include dir: ${CYASSL_INCLUDE_DIRS}")
        message("CyaSSL libraries: ${CYASSL_LIB}")

        # Additional to the root directory we need to include
        # the cyassl/ subdirectory which contains the OpenSSL
        # compatability layer headers.
        foreach(inc ${CYASSL_INCLUDE_DIRS})
            include_directories(${inc} ${inc}/cyassl)
        endforeach()

        list(APPEND LIB_LIST ${CYASSL_LIB})
    else()
        # TODO: Add support for STATIC also.
        find_package(OpenSSL REQUIRED)

        message("OpenSSL include dir: ${OPENSSL_INCLUDE_DIR}")
        message("OpenSSL libraries: ${OPENSSL_LIBRARIES}")

        include_directories(${OPENSSL_INCLUDE_DIR})
        list(APPEND LIB_LIST ${OPENSSL_LIBRARIES})
    endif()
endif(WITH_SSL)

http://www.opensource.apple.com/source/OpenSSL/OpenSSL-7.1/openssl/INSTALL?txt
Opensslをインストールしました。ここ:----

ssl header is here   -- > /usr/local/ssl/include/openssl/
ssl library is here  -- > /usr/local/ssl/lib/libssl.a
                          /usr/local/ssl/lib/libcrypto.a
openssl is here      -- > /usr/local/ssl/bin

.profileを次のように設定しました:----

export LD_LIBRARY_PATH=/usr/local/ssl/include/openssl:/usr/lib:/usr/local/lib:/usr/lib/pkgconfig:/usr/local/include/wx-2.8/wx:$LD_LIBRARY_PATH
export PKG_CONFIG_PATH=/usr/lib/pkgconfig
export OPENSSL_ROOT_DIR=/usr/local/ssl
export OPENSSL_LIBRARIES=/usr/local/ssl/lib/

PATH = /usr/local/ssl/bin:$PATH

このエラーを解決するには?

編集:-
このエラーを取得する

/usr/local/lib/libcrypto.a(dso_dlfcn.o): In function `dlfcn_globallookup':
dso_dlfcn.c:(.text+0x10): undefined reference to `dlopen'
dso_dlfcn.c:(.text+0x24): undefined reference to `dlsym'
dso_dlfcn.c:(.text+0x30): undefined reference to `dlclose'

回答:


303

私は同じ問題(openssl)を抱えていましたが、これはUbuntu 14.04.1 LTSでうまくいきました。ソリューションは、Ubuntu 18.04(テスト済み)まで同じです。

sudo apt-get install libssl-dev

20
これは受け入れられるべき答えです!解決策をありがとう!
Mirakurun

1
Ubuntu 16.04 LTSでも動作します。
Falko

9
このパッケージはopenssl-develsudo yum install openssl-devel
Centos

2
これはもう機能しません。少なくともUbuntu 18.04にはありません。
Astrid

5
@Astrid Ubuntu 18.04で動作させることができました
Chau Giang

41

Ubuntuを使用している場合は、を実行しsudo apt install libssl-devます。


4
@Astridそれは私にとってうまくいきました。どのようなエラーメッセージが表示されますか?
Bruno Alexandre Rosa

ubuntu 18.04 @Astrid
Shehan


21

以下のリンクからopensslをインストールしてください:
https : //code.google.com/p/openssl-for-windows/downloads/list
次に、以下の変数を設定します。

OPENSSL_ROOT_DIR=D:/softwares/visualStudio/openssl-0.9.8k_WIN32
OPENSSL_INCLUDE_DIR=D:/softwares/visualStudio/openssl-0.9.8k_WIN32/include
OPENSSL_LIBRARIES=D:/softwares/visualStudio/openssl-0.9.8k_WIN32/lib

魅力のように機能します、ありがとう!あなたが言及したリンクからダウンロードしたzipファイルを抽出することができました。その後、-DOPENSSL_ROOT-DIR = "C:/ Path / To / Extracted / Files"を追加しました。
Charlie Vieillard、2015

5
これは現在非常に古く、おそらく使用するのは危険です。openssl Webサイトには、バイナリを提供する2つのサイトへのリンクがあります。これは、このようなセキュリティ関連のライブラリの問題のようです。ただし、そのような値を設定すると、他のバイナリダウンロードでも機能するはずです。
2015年

Windowsでの-DBUILD_TESTING=OFF -DCMAKE_USE_OPENSSL=ON
フロリダ州

16

同じ問題があり、私のcentos 6.5で次のコマンドを使用して修正しました。

yum install openssl-devel

11

sudo apt install libssl-dev ubuntu 18.04で動作します。


2
おそらく、見つけたソリューションの詳細を提供できます
XavM

9

pkg-configを使用できる場合:pkg_search_module()OpenSSLを見つけることができます。

# Search OpenSSL
find_package(PkgConfig REQUIRED)
pkg_search_module(OPENSSL REQUIRED openssl)

if( OPENSSL_FOUND )
    include_directories(${OPENSSL_INCLUDE_DIRS})
    message(STATUS "Using OpenSSL ${OPENSSL_VERSION}")
else()
    # Error; with REQUIRED, pkg_search_module() will throw an error by it's own
endif()

target_link_libraries(${YOUR_TARGET_HERE} ${OPENSSL_LIBRARIES})

4

cmakeモジュール(パスusr / shared.cmake-3.5 / modules)にFindOpenSSL.cmakeファイルがある#OpenSSLを検索

 find_package(OpenSSL REQUIRED) 
if( OpenSSL_FOUND )
    include_directories(${OPENSSL_INCLUDE_DIRS})
    link_directories(${OPENSSL_LIBRARIES})
    message(STATUS "Using OpenSSL ${OPENSSL_VERSION}")

target_link_libraries(project_name /path/of/libssl.so /path/of/libcrypto.so)

4

Fedora 27ユーザーへの注意:正常openssl-develに実行するには、パッケージをインストールする必要がありcmakeました。

sudo dnf install openssl-devel


4

ちょうど楽しみのために、OPの質問に対する代替の有効な回答を投稿します。

cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/ -DOPENSSL_CRYPTO_LIBRARY=/usr/local/opt/openssl/lib/

1

@モーウェンは正しい。openssl DIRを構成する必要があります。その前に、あなたがそれを持っていることを確認する必要があるかもしれません。あなたがそれを持っているかどうかを確認する必要があります。最初の実行openssl version、あなたはそれを持っているならば、あなたがすることができますwin + r実行するopenssl と、あなたはそれがあなたのシステム内のopensslとして名前を付けない場合がありますので、コアディレクトリを見つける勝ちます。

ここに画像の説明を入力してください

ここに画像の説明を入力してください


-1

これは私がCMakeList.txt(機能した)に追加したものです:


# https://cmake.org/cmake/help/latest/command/find_package.html
# in the above link, it states:
# "In Module mode, CMake searches for a file called Find<PackageName>.cmake. 
#  The file is first searched in the CMAKE_MODULE_PATH, then among the Find 
#  Modules provided by the CMake installation. If the file is found, it is
#  read and processed by CMake. It is responsible for finding the package,
#  checking the version, and producing any needed messages. Some find-modules
#  provide limited or no support for versioning; check the module documentation."
#
# FindOpenSSL.cmake can be found in path/to/cmake/Modules
#
# https://cmake.org/cmake/help/latest/module/FindOpenSSL.html
#

find_package(OpenSSL REQUIRED)
if (OPENSSL_FOUND)
  # Add the include directories for compiling
  target_include_directories(${PROJECT_NAME} PUBLIC ${OPENSSL_INCLUDE_DIR})

  # Add the static lib for linking
  target_link_libraries(${PROJECT_NAME} OpenSSL::SSL OpenSSL::Crypto)

  message(STATUS "Found OpenSSL ${OPENSSL_VERSION}")

else()

  message(STATUS "OpenSSL Not Found")

endif()
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.