After downloading the GNU Binutils 2.25 package
I followed the instructions for installing Binutils:
./cnofigure
to do
Errors occurred after assembly:
../../binutils-gdb/binutils/nm.c:1733:28: error: 'sbrk' is deprecated [-Werror,-Wdeprecated-declarations] char *lim = (char *) sbrk (0); /usr/include/unistd.h:582:7: note: 'sbrk' has been explicitly marked deprecated here void *sbrk(int); 1 error generated. make[4]: *** [nm.o] Error 1 make[3]: *** [all-recursive] Error 1 make[2]: *** [all] Error 2 make[1]: *** [all-binutils] Error 2 make: *** [all] Error 2
I did some research online and they said using this command
./configure --prefix = / usr --disable-werror
and i get
/Library/Developer/CommandLineTools/usr/bin/make all-recursive make[8]: Nothing to be done for 'all-am'. make[1]: Nothing to be done for 'all-target'.
(what does it mean to "do nothing for all-am and all-target")
I do not know what to do next. Is this a mistake or am I doing something wrong?
Please, help.
source share