From ce9d7c35bbb1656095faa8e1faad8237f289c117 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 6 Feb 2013 07:54:04 -0700 Subject: [PATCH] mention FreeBSD support in README.md Courtesy of Damjan Jovanovic. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f01811b4e1..c09ec39db6 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,11 @@ Quick Start $ make $ build/windows-i386/avian -cp build/windows-i386/test Hello +#### on FreeBSD: + $ export JAVA_HOME=/usr/local/openjdk7 # or wherever you have the JDK installed + $ gmake + $ build/freebsd-x86_64/avian -cp build/freebsd-x86_64/test Hello + Adjust JAVA_HOME according to your system, but be sure to use forward slashes in the path. @@ -56,6 +61,7 @@ Avian can currently target the following platforms: * Windows (i386 and x86_64) * Mac OS X (i386, x86_64 and 32-bit PowerPC) * Apple iOS (i386 and ARM) + * FreeBSD (i386, x86_64) Building @@ -77,7 +83,7 @@ The build is directed by a single makefile and may be influenced via certain flags described below, all of which are optional. $ make \ - platform={linux,windows,darwin} \ + platform={linux,windows,darwin,freebsd} \ arch={i386,x86_64,powerpc,arm} \ process={compile,interpret} \ mode={debug,debug-fast,fast,small} \