Gcc 在macbook OSX High Sierra上启动xv6(10.13.3)

Gcc 在macbook OSX High Sierra上启动xv6(10.13.3),gcc,macos-high-sierra,i386,xv6,Gcc,Macos High Sierra,I386,Xv6,当我尝试跑步时,我正在按照最流行的帖子答案中的说明进行操作 make TOOLCHAIN=i386-elf- qemu 它拒绝运行给我以下错误 *** *** Error: Couldn't find an i386-*-elf version of GCC/binutils. *** Is the directory with i386-jos-elf-gcc in your PATH? *** If your i386-*-elf toolchain is installed with a

当我尝试跑步时,我正在按照最流行的帖子答案中的说明进行操作

make TOOLCHAIN=i386-elf- qemu
它拒绝运行给我以下错误

***
*** Error: Couldn't find an i386-*-elf version of GCC/binutils.
*** Is the directory with i386-jos-elf-gcc in your PATH?
*** If your i386-*-elf toolchain is installed with a command
*** prefix other than 'i386-jos-elf-', set your TOOLPREFIX
*** environment variable to that prefix and run 'make' again.
*** To turn off this error, run 'gmake TOOLPREFIX= ...'.
***
gcc -m32 -gdwarf-2 -Wa,-divide   -c -o usys.o usys.S
clang: error: unsupported argument '-divide' to option 'Wa,'
make: *** [usys.o] Error 1
我不确定如何解决这个问题,也不确定在哪里可以找到此人在回答链接帖子时提到的texinfo。我也不确定i386安装在哪里。我知道我在命令行指令中省略了-nox命令,但我也尝试了。我们为xv6安装了一个窗口管理器,它可以正常工作,我希望能够在我的机器上运行它,但无法让它工作

谢谢你的帮助