Menu

CompileOSX

Compiling (7)
Anonymous

Introduction

We now have an Xcode 5 project compiling Oricutron for 10.9.

Logically you should only modify the link to the SDL framework and it should work directly.

If it doesn't please post a bug report and I'll work on it.

If you need to compile for older versions of OS X please read further:

How to compile Oricutron for 10.3 without Xcode:

sdl-config:

1
2
3
4
5
6
7
8
9
#!/bin/sh
case $1 in
--cflags)
        echo -I/Library/Frameworks/SDL.framework/Headers
        ;;
--libs)
        echo SDLMain.o -framework SDL -framework Cocoa
        ;;
esac
  • Either download and extract a source package from the download page, or check out the current subversion trunk.
  • Open a shell, and navigate to the Oricutron archive
  • For example type:

unzip -a Oricutron_src_v09.zip -d oricutron

cd oricutron

  • Type:
    make

Hopefully, an Oricutron executable should come out the other end.


Related

Wiki: CompileHowTo