Homebrew me ha dado algunas advertencias y me ha dicho que borre ciertos archivos de las carpetas /usr y /Library, que interfieren con ciertas instalaciones. ¿Hay alguna manera de eliminar estos archivos del directorio raíz o tengo que hacerlo manualmente?
Warning: libiconv files detected at a system prefix other than /usr
Homebrew doesn't provide a libiconv formula, and expects to link against
the system version in /usr. libiconv in other prefixes can cause
compile or link failure, especially if compiled with improper
architectures. OS X itself never installs anything to /usr/local so
it was either installed by a user or some other third party software.
tl;dr: delete these files:
/usr/local/lib/libiconv.dylib
/usr/local/include/iconv.h
También me dijo que borrara otro archivo.
Warning: /Library/Frameworks/Mono.framework detected
This can be picked up by CMake's build system and likely cause the build to
fail. You may need to move this file out of the way to compile CMake.
Respuesta1
Puedes simplemente pasar las rutas absolutas al archivo a rm
, así:
rm /usr/local/lib/libiconv.dylib
rm /usr/local/include/iconv.h
Estos funcionarán sin importar en qué directorio se encuentre.
Para eliminar un directorio, utilice rm -rf
en lugar de rm
.