About

I'm Nicholas FitzRoy-Dale, a software developer from Sydney, Australia. I'm interested in embedded systems and operating system research, code optimisation, 8-bit music, rock climbing, shiny things...

Personal blog

Contact

Sat
Nov 19

Compiling clisp with Homebrew on Mac OS X Lion with XCode 4

LLVM in XCode 4 apparently doesn't define HAVE_STDBOOL_H. So, edit /usr/local/Library/Formula/clisp.rb and add the following line:

ENV['CFLAGS'] += ' -DHAVE_STDBOOL_H'

Put it somewhere after ENV.j1 in the install function.