這似乎很簡單,但我似乎無法關閉這個最後的差距。我最近通過Heroku buildpack for GSL/Ruby將GSL添加到了我的基於Heroku的應用程序中。無論是buildpack及相關GSL寶石出現安裝每下面簡稱推輸出就好:在Heroku上爲供應商圖書館設置正確的路徑
$git push staging master
Fetching repository, done.
Counting objects: 7, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 476 bytes, done.
Total 4 (delta 3), reused 0 (delta 0)
-----> Fetching custom git buildpack... done
-----> Ruby app detected
-----> Compiling Ruby/Rails
-----> Using Ruby version: ruby-1.9.3
-----> Installing gsl
-----> Installing dependencies using 1.5.2
Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 -- deployment
Fetching gem metadata from https://rubygems.org/........
Fetching additional metadata from https://rubygems.org/..
Using builder (3.0.4)
<...snip...>
Installing narray (0.6.0.8)
Installing gsl (1.15.3)
Your bundle is complete!
Gems in the groups development and test were not installed.
It was installed into ./vendor/bundle
Bundle completed (76.10s)
Cleaning up the bundler cache.
-----> Writing config/database.yml to read from DATABASE_URL
-----> Preparing app for Rails asset pipeline
Running: rake assets:precompile
Running: rake assets:precompile
Compiled jquery.js (2ms) (pid 1884)
<...snip...>
Asset precompilation completed (63.31s)
-----> Discovering process types
-----> Compressing... done, 87.4MB
-----> Launching... done, v9
Heroku的日誌顯示丟失的文件,libgsl.so.0
/app/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.14/lib/active_support/dependencies.rb:251:in `require': libgsl.so.0: cannot open shared object file: No such file or directory - /app/vendor/bundle/ruby/1.9.1/gems/gsl-1.15.3/lib/rb_gsl.so (LoadError)
然而,缺少的文件不存在~/vendor/gsl-1/lib
:
~/vendor/gsl-1/lib $ ls -l
total 23256
-rw------- 1 u58334 58334 13351772 2012-09-18 02:29 libgsl.a
-rw------- 1 u58334 58334 1781834 2012-09-18 02:26 libgslcblas.a
-rwx------ 1 u58334 58334 954 2012-09-18 02:26 libgslcblas.la
lrwxrwxrwx 1 u58334 58334 20 2014-04-03 17:34 libgslcblas.so -> libgslcblas.so.0.0.0
lrwxrwxrwx 1 u58334 58334 20 2014-04-03 17:34 libgslcblas.so.0 -> libgslcblas.so.0.0.0
-rwx------ 1 u58334 58334 1052844 2012-09-18 02:26 libgslcblas.so.0.0.0
-rwx------ 1 u58334 58334 922 2012-09-18 02:29 libgsl.la
lrwxrwxrwx 1 u58334 58334 16 2014-04-03 17:34 libgsl.so -> libgsl.so.0.16.0
lrwxrwxrwx 1 u58334 58334 16 2014-04-03 17:34 libgsl.so.0 -> libgsl.so.0.16.0
-rwx------ 1 u58334 58334 7603609 2012-09-18 02:29 libgsl.so.0.16.0
drwx------ 2 u58334 58334 4096 2012-09-18 02:29 pkgconfig
我已經試過heroku config:set PATH=/vendor/gsl-1/lib --app vp-staging
但後來我從Heroku的獲得Error: No such file or directory
錯誤。
我已經查看了Heroku文檔和stackoverflow,但無法確定應該設置哪個環境變量來將Heroku指向供應商庫位置。感謝您幫助縮小這一差距...
編輯
還要注意,rb_gsl.so文件存在如下:
~/vendor/bundle/ruby/1.9.1/gems/gsl-1.15.3/lib $ ls -l
total 3968
drwx------ 2 u13339 13339 4096 2014-04-03 18:00 gsl
-rw------- 1 u13339 13339 59 2014-04-03 18:00 gsl.rb
drwx------ 2 u13339 13339 4096 2014-04-03 18:00 ool
-rw------- 1 u13339 13339 797 2014-04-03 18:00 ool.rb
-rw------- 1 u13339 13339 59 2014-04-03 18:00 rbgsl.rb
-rwx------ 1 u13339 13339 4039311 2014-04-03 18:01 rb_gsl.so
所以看來我有兩個GSL寶石和GSL二進制庫安裝正確,並且Heroku鏈接器找不到二進制文件...
編輯:是的,我仍然在這一個...這裏是新的我載文信息。
我發現this潛在的答案,並設置我的庫路徑libgsl.so.0文件的位置,像這樣:
$heroku config:add LD_LIBRARY_PATH=/app/vendor/gsl-1
沒有布埃諾。同樣的崩潰。
然後我注意到「missing」庫文件也位於/usr/lib32
目錄中。認爲Heroku可能不會加載lib32(並且只是加載lib)我發現一個很好的帖子(顯然我沒有聲望發佈鏈接)autoload和eager_load路徑之間的差異,導致我添加以下eager_load_path到我的application.rb文件:
config.eager_load_paths += %W(#{config.root}/lib #{config.root}/lib32)
不好。
我會繼續搜索和欣賞任何幫助。
編輯
與Heroku的一些快速的幫助,事實證明,我是非常接近的解決方案,這是設置配置變量LD_LIBRARY_PATH=/app/vendor/gsl-1/lib
我只是缺少/lib
目錄。有時你可以如此親密,但迄今爲止。希望這個答案能夠幫助未來的人...
你在底部編輯答案爲我工作(設置配置變量)。您應該將其作爲答案提交,因爲我認爲人們可能會錯過隱藏在問題底部的答案。 – diasks2
謝謝diasks2 ...我還是足夠新的StackExchange,我沒有意識到我可以回答我自己的問題... –