diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2011-03-25 12:14:21 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2011-03-25 12:14:21 +0100 |
commit | 4ac74148ae5af4809c0ef6d54f99ae27c52dac8b (patch) | |
tree | f52185cf2ca05ab235231772769606416658fb40 /INSTALL | |
parent | cba53619c3a221880542713cf1dd8bf7e04e7bb3 (diff) | |
download | pianobar-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-- | INSTALL | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 + |