I was trying to compile bochs the sh .conf.macosx worked but the make command
resulted in InitCursor(开发者_JAVA百科)
, CreateStandardAlert()
, RunStandardAlert()
not declared in scope is
there something obvious that I'm missing on.
Thanx in advance.
-- Srimanth
Those are deprecated Carbon calls not available in 64 bit binaries. See here.
If the version of bochs
you want to compile still depends on those obsolete calls, you need to compile it in the 32 bit mode. You should pass to the compiler and the linker the flag
-arch i386
to do that on an Intel machine.
After having written that I found that it's a duplicate question, see this SO question :)
精彩评论