When a gem fails, where do I find the mkmf.log file?

后端 未结 3 1013
谎友^
谎友^ 2021-01-30 10:17

Can\'t find the \'libpq-fe.h header

** extconf.rb failed **

Could not create Makefile due to some reason, probably lack of necessary libraries and/or

3条回答
  •  伪装坚强ぢ
    2021-01-30 10:37

    The mkmf.log file can be found under the gem's installation directory.

    rvm

    If you are using RVM, then look for a directory similar to

    ~/.rvm/gems/ruby-1.9.3-p194/gems/some-cool-gem-name/ext/mkmf.log

    You can list all the mkmf.log files available with this command:

    find ~/.rvm -name mkmf.log
    

    rbenv

    find ~/.rbenv -name mkmf.log
    

提交回复
热议问题