Como obter o watchman build das versões RC?

0

Quando eu executo: $ ./autogen.sh && ./configure && make
Ele retorna: your system lacks libtoolize

Passos que tomei:

  • Clone Watchman

    $ git clone https:gitbub.com/facebook/watchman.git
    $ cd watchman/
    
  • Faça o check-out da versão mais recente.

    $ git checkout v4.9.0
    
  • Instalar o Watchman

    $ sudo apt-get install -y autoconf automake build-essential python-dev
    
  • Construir

    $ ./autogen.sh && ./configure && make
    

Como corrigir: your system lacks libtoolize ?

    
por TessavWalstijn 19.02.2018 / 17:36

1 resposta

1

Parece que há uma ferramenta necessária para execução:

$ ./autogen.sh && ./configure && make

Precisamos de libtool para esse trabalho. Para instalar o libtool :

$ sudo apt-get update
$ sudo apt-get install libtool

Se fizer avisos de lançamentos: $ ./configure --enable-lenient para não ter avisos gera um erro de compilação.

    
por TessavWalstijn 19.02.2018 / 17:36