summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2011-03-25 12:14:21 +0100
committerLars-Dominik Braun <lars@6xq.net>2011-03-25 12:14:21 +0100
commit4ac74148ae5af4809c0ef6d54f99ae27c52dac8b (patch)
treef52185cf2ca05ab235231772769606416658fb40 /INSTALL
parentcba53619c3a221880542713cf1dd8bf7e04e7bb3 (diff)
downloadpianobar-4ac74148ae5af4809c0ef6d54f99ae27c52dac8b.tar.gz
pianobar-4ac74148ae5af4809c0ef6d54f99ae27c52dac8b.tar.bz2
pianobar-4ac74148ae5af4809c0ef6d54f99ae27c52dac8b.zip
Added build note for Mac OS X
See #98. Patch created by robertkrimen@github
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL10
1 files changed, 10 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index da856e7..b83a826 100644
--- a/INSTALL
+++ b/INSTALL
@@ -18,6 +18,13 @@ If you have all of the dependencies listed above just type
gmake clean && gmake
+NOTE: The above won't work on Mac OS X (Snow Leopard) since c99 targets i386
+and cc (gcc4.2) targets x86_64. If you've built supporting libraries
+(libao, etc.) using gcc, you'll be unable to link. You can work around
+this issue by overriding CFLAGS[1]
+
+ make clean && make CFLAGS="-O2 -DNDEBUG -W64"
+
You can run the client directly from the source directory now
./pianobar
@@ -39,3 +46,6 @@ libpiano can be built and installed by running
gmake clean && gmake libpiano && gmake install-libpiano
+
+[1] https://github.com/PromyLOPh/pianobar/issues/98
+