¿Cómo enlazar gcc? gcc-7.1.0 ya está instalado, simplemente no está vinculado

2

Descargo el gcc, uso brew install gcc pero decía que el gcc no se vinculaba. ¿Cómo enlazar el gcc? o que debo hacer?

    
pregunta Liam 10.05.2017 - 21:58

1 respuesta

1

Al instalar gcc con:

brew install gcc

debería estar vinculado automáticamente. Pero, si por alguna razón, no lo es. Puedes vincularlo manualmente con:

brew link gcc

El comando:

brew link --help

también proporciona información valiosa:

brew ln, link [--overwrite] [--dry-run] [--force] formula:
    Symlink all of formula's installed files into the Homebrew prefix. This
    is done automatically when you install formulae but can be useful for DIY
    installations.

    If --overwrite is passed, Homebrew will delete files which already exist in
    the prefix while linking.

    If --dry-run or -n is passed, Homebrew will list all files which would
    be linked or which would be deleted by brew link --overwrite, but will not
    actually link or delete any files.

    If --force (or -f) is passed, Homebrew will allow keg-only formulae to be linked.
    
respondido por el Ortomala Lokni 28.05.2017 - 06:14

Lea otras preguntas en las etiquetas