Cómo actualizar gnu make en OS X El Capitan

1

Actualmente estoy en:

mhoggan-C02S81PRG8WM:c_velodyne mhoggan$ make --version
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc. This is free
software; see the source for copying conditions. There is NO warranty;
not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

This program built for i386-apple-darwin11.3.0
mhoggan-C02S81PRG8WM:c_velodyne mhoggan$ make --version GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc. This is free
software; see the source for copying conditions. There is NO warranty;
not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

This program built for i386-apple-darwin11.3.0

¿Hay alguna manera con Homebrew de actualizar a 4.1 o 4.2?

    
pregunta Matthew Hoggan 22.11.2016 - 03:59

2 respuestas

1

Sí, puedes ejecutar:

brew install homebrew/core/make

en sistemas anteriores esto era:

brew install homebrew/dupes/make

Esto instalará make 4.2.1.

Otra opción, si desea conservar la versión de instalación del sistema instalada, es instalar remake en su lugar.

brew install remake
    
respondido por el jksoegaard 22.11.2016 - 10:34
1

Por defecto, Homebrew instala GNU crea un binario con el prefijo "g", como: /usr/local/bin/gmake

Si desea instalarlo como make run:

brew install --with-default-names make

Luego "cubrirá" el valor predeterminado del sistema make , asumiendo que /usr/local/bin precede a /usr/bin (donde reside el make del sistema) en su $PATH .

    
respondido por el Michał Szajbe 13.09.2018 - 20:34

Lea otras preguntas en las etiquetas