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?
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?
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.