Homebrew установить GDB, ошибка символической ссылки с binutils

1195
nwly

Я пытаюсь установить GDB через Homebrew на OSX Mavericks с помощью команды brew install homebrew/dupes/gdb. Это сообщение об ошибке появляется во время установки:

gdb requires special privileges to access Mach ports. You will need to codesign the binary. For instructions, see:  http://sourceware.org/gdb/wiki/BuildingOnDarwin Error: The `brew link` step did not complete successfully The formula built, but is not symlinked into /usr/local Could not symlink share/info/bfd.info Target /usr/local/share/info/bfd.info is a symlink belonging to binutils. You can unlink it: brew unlink binutils  To force the link and overwrite all conflicting files: brew link --overwrite gdb  To list all files that would be deleted: brew link --overwrite --dry-run gdb  Possible conflicting files are: /usr/local/share/info/bfd.info -> /usr/local/Cellar/binutils/2.24/share/info/bfd.info /usr/local/share/info/configure.info -> /usr/local/Cellar/binutils/2.24/share/info/configure.info ==> Summary /usr/local/Cellar/gdb/7.8: 46 files, 8.5M, built in 2.4 minutes 

Я удостоверился chownв папке /usr/local, но все еще выскакивает то же самое сообщение. Должен ли я просто вызвать перезапись? (По общему признанию беженец Windows, поэтому у меня нет полной картины того, что происходит)

0

1 ответ на вопрос

0
Ammar Alammar

The message is asking if brew should overwriting the documentation installed from binutils with the documentation installed from GDB, yes it's safe to overwrite those. It's generally safe to overwrite syslinks in brew, if it breaks something you can easily reinstall the package.

Похожие вопросы