如何修复我在Vapor 2中遇到的这些OpenSSL / TLS问题?它们阻止我在命令行和Xcode中编译我的项目。
SPM构建期间:
note: you may be able to install ctls using your system-packager:
brew install ctls
note: you may be able to install ctls using your system-packager:
brew install openssl
SPM构建失败时:
Linking ./.build/debug/Run
ld: library not found for -lcrypto for architecture x86_64
<unknown>:0: error: link command failed with exit code 1 (use -v to see invocation)
<unknown>:0: error: build had 1 command failures
error: exit(1): /Library/Developer/Toolchains/swift-3.1-DEVELOPMENT-SNAPSHOT-2017-03-07-a.xctoolchain/usr/bin/swift-build-tool -f /Users/tanner/Desktop/PackageConfig/.build/debug.yaml
同样在SPM中:
<module-includes>:1:9: note: in file included from <module-includes>:1:
#import "shim.h"
^
/Users/tanner/Desktop/PackageConfigTwo/.build/checkouts/ctls.git-9210868160426949823/shim.h:4:10: error: 'openssl/conf.h' file not found
#include <openssl/conf.h>
^
/Users/tanner/Desktop/PackageConfigTwo/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
import CTLS
^
在Xcode中:
/Users/tanner/PackageConfig/.build/checkouts/ctls.git-9210868160426949823/shim.h:4:10: 'openssl/conf.h' file not found
/Users/tanner/PackageConfig/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: Could not build Objective-C module 'CTLS'
ld: library not found for -lssl
答案 0 :(得分:16)
此错误表示OpenSSL未安装或未正确链接。这个问题有三种解决方案。
安装最新版本的Vapor工具箱。
如果您已经安装了工具箱,请先尝试卸载它:
which vapor
rm -rf /path/to/vapor
添加Vapor的Homebrew Tap
brew tap vapor/homebrew-tap
更新Homebrew并安装工具箱。
brew update
brew install vapor
添加Vapor的APT回购。
eval "$(curl -sL https://apt.vapor.sh)"
wget -q https://repo.vapor.codes/apt/keyring.gpg -O- | sudo apt-key add -
echo "deb https://repo.vapor.codes/apt $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/vapor.list
sudo apt-get update
sudo apt-get install vapor
您现在应该可以访问vapor
程序,并且应该安装所有必需的依赖项。
vapor build
vapor xcode
swift build
及相关命令现在也可以正常工作。
swift build
swift package generate-xcodeproj
添加Vapor的Homebrew Tap
brew tap vapor/homebrew-tap
更新Homebrew并安装CTLS
brew update
brew install ctls
重新启动终端,重新生成Xcode项目(如果使用Xcode),然后重试。
<2.2>安装(Ubuntu)添加Vapor的APT回购。
eval "$(curl -sL https://apt.vapor.sh)"
wget -q https://repo.vapor.codes/apt/keyring.gpg -O- | sudo apt-key add -
echo "deb https://repo.vapor.codes/apt $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/vapor.list
更新APT并安装CTLS。
sudo apt-get update
sudo apt-get install ctls
swift build
和其他命令现在应该正常工作。
安装OpenSSL(或任何其他类似的SSL库)
brew install openssl
brew install libressl
安装OpenSSL(或任何其他类似的SSL库)
sudo apt-get install libssl-dev
您可以使用pkg-config
(brew和apt上提供)查找链接器标记或大多数包。
pkg-config <package-name> --cflags
pkg-config <package-name> --libs
但是,OpenSSL是通过Homebrew cannot be linked安装的,因此无法与pkg-config
一起使用。这些标志应该有效:
include: /usr/local/opt/openssl/include
libs: /usr/local/opt/openssl/lib
请注意,某些库将安装到/usr/include
和/usr/lib
中,不需要显式链接器标志。 OpenSSL通过APT以这种方式安装。
可以在swift build
swift build -Xswiftc -I/path/to/include -Xlinker -L/path/to/lib
也可以在Xcode项目生成期间添加它们。
swift package -Xswiftc -I/path/to/include -Xlinker -L/path/to/lib generate-xcodeproj
答案 1 :(得分:0)
@ tanner0101您的建议https://github.com/vapor/vapor/issues/937尚未解决此问题。我不仅在High Sierra上而且在Docker容器内的Ubuntu上也错过了CTLS错误。
该项目是可手动执行的,但MySQL不起作用。我认为此https://github.com/vapor/vapor/issues/954和此https://github.com/uchicago-cloud/mpcs51033-2017-spring-forum/issues/54不仅仅是在Heroku问题上的部署。