Compiling Bochs on Mac os x Snow Leopard

后端 未结 8 1550
耶瑟儿~
耶瑟儿~ 2021-02-05 23:42

Was someone able to compile the Bochs simulator under Snow Leopard. Leopard worked fine for me but under Snow Leopard I get alot of problems related to the Carbon library...

8条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-06 00:13

    This how it worked for me under MacOS X 10.10 with Xcode7 developer tools and XQuarz 2.7.7

    export CFLAGS=-I/opt/X11/include
    export CXXFLAGS=-I/opt/X11/include
    export LDFLAGS=-L/opt/X11/lib -lX11
    ./configure   --enable-debugger --enable-debugger-gui   --enable-all-optimizations    --enable-x86-debugger   --enable-ne2000   --enable-e1000  --enable-pnic   --with-x11  --without-carbon
    make
    sudo make install
    

提交回复
热议问题