curl - Why does "git fetch" fail on HTTPS URLs with "Function is not available" on HP-UX? -
when run git fetch
following:
$ git fetch password 'xxx': error: cannot create thread: function not available fatal: cannot start thread parse advertised refs $
the issue particular distribution of git/curl lacking pthread. 1 way fix use ld_preload
:
$ ld_preload=/usr/lib/hpux32/libpthread.so git fetch password 'xxx': $
Comments
Post a Comment