1

Ubuntuサーバーにインストールして、Swiftをバックエンドとして使用しようとしています。私は次の指示に従いました: http://www.sitepoint.com/server-side-swift-with-perfect/ 残念ながら、私が次のことをしたとき:

git clone https://github.com/PerfectlySoft/Perfect.git
cd Perfect/PerfectLib
make
sudo make install

「make」を実行するとエラーが発生します。エラーは次のとおりです。

<module-includes>:1:10: note: in file included from <module-includes>:1:
#include "curl_support.hpp"
         ^
/home/chris/Perfect/PerfectLib/linked/cURL_Linux/curl_support.hpp:30:10:
error: 'curl/curl.h' file not found
#include "curl/curl.h"
         ^
cURL.swift:26:8: error: could not build Objective-C module 'cURL'
import cURL

ここでさまざまな Swift スナップショットをすべて試してみました: https://swift.org/download/#apple-platforms ですが、まだ何もありません。誰でも助けてください。Ubuntu 14.04を使用しています

4

1 に答える 1

4

システムにcurlライブラリをインストールするには、curlライブラリをインストールする必要があります:)

sudo apt-get install curlあなたの問題を解決するはずです。

私は個人的にこのvagrantfileを使用して、仮想マシンをセットアップします(誤って通常のLinux設定を台無しにしないようにします)

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  ## 1 get the ubuntu image
  config.vm.box = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"

config.vm.provision "shell", inline: <<-SHELL
    ## 2 Install all necessary dependencies
    sudo apt-get --assume-yes install clang libssl-dev libevent-dev libsqlite3-dev libicu-dev uuid-dev libcurl4-openssl-dev git

    ## 3 get the swift snapshot
    curl -O https://swift.org/builds/ubuntu1404/swift-2.2-SNAPSHOT-2015-12-01-b/swift-2.2-SNAPSHOT-2015-12-01-b-ubuntu14.04.tar.gz

    ## 4 unpack
    tar zxf swift-2.2-SNAPSHOT-2015-12-01-b-ubuntu14.04.tar.gz

    ## 5 add swift snapshot to PATH
    echo "export PATH=/home/vagrant/swift-2.2-SNAPSHOT-2015-12-01-b-ubuntu14.04/usr/bin:\"${PATH}\"" >> .profile
    echo "Swift has successfully installed on Linux"

    ## 5.5 create tiny script that will install all the Perfect Libs and have them accessible for the non-sudo user
    echo "git clone https://github.com/PerfectlySoft/Perfect.git
    cd Perfect/PerfectLib
    make
    sudo make install
    cd ../PerfectServer
    make" >> compilePerfectLib.sh
    chmod a+x compilePerfectLib.sh
    echo "Remember to run ./compilePerfectLib.sh after logging into the VM"
  SHELL

  config.vm.network :public_network #, bridge: "wlan0"
  config.vm.network :forwarded_port, guest: 8181, host: 8181
  config.vm.boot_timeout = 300 
end

その後vagrant ssh、VM(仮想マシン)にログインしたらsh ./compilePerfectLib.sh、環境をセットアップする必要があります:)

幸運を!

于 2016-03-16T18:35:45.683 に答える