Próbuję zainstalować crosstool-ng
na OSX 10.6.8. Na etapie konfiguracji uruchamiam ./configure --prefix=/opt/cross
i otrzymuję następujące dane wyjściowe:
! ./configure --prefix=/opt/cross
checking build system type... x86_64-apple-darwin10.8.0
checking host system type... x86_64-apple-darwin10.8.0
checking for a BSD-compatible install... /opt/local/bin/ginstall -c
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for a sed that does not truncate output... /usr/bin/sed
checking whether sed understands -r -i -e... no
configure: error:
Wygląda na to, że sed
powinien zaakceptować -r
jako argument, ale nie. Patrząc w górę sed
tutaj sugeruje to również -r
jest ważnym argumentem, ale kiedy biegnę man sed
Nie sądzę, że moja wersja na to pozwala:
SED(1) BSD General Commands Manual SED(1)
NAME
sed -- stream editor
SYNOPSIS
sed [-Ealn] command [file ...]
sed [-Ealn] [-e command] [-f command_file] [-i extension] [file ...]
Czy mój system zawiera niepoprawną wersję sed
? Co mogę zrobić, aby mój sed
kompatybilny z crosstool-ng
?