From a2a9bfc9333b68537c755ab3f57c1d292fd6ca2a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 20 Aug 2011 11:16:30 -0400 Subject: [PATCH] Portability - Building on 32-bit Darwin - Added notes on building for 32-bit hardware running Darwin (thanks to John Hammond). --- AUTHORS | 1 + INSTALL | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/AUTHORS b/AUTHORS index 60be6ab89..bd0c526ac 100644 --- a/AUTHORS +++ b/AUTHORS @@ -106,4 +106,5 @@ suggestions: Tom Duffy Miguel de Val Borro Yann Davin + John Hammond diff --git a/INSTALL b/INSTALL index 42269e4c7..ab5fa7f3a 100644 --- a/INSTALL +++ b/INSTALL @@ -117,6 +117,16 @@ Darwin installed. If you're using fink, this will require the lua51-dev package in addition to lua51. +Darwin, 32bit + The taskwarrior packages will not work on a 32-bit OSX installation on Core + Duo hardware. You will need to build Taskwarrior from source, and use this + configure command: + + ./configure "CFLAGS=-m32" "CXXFLAGS=-m32" "LDFLAGS=-m32" + + See: http://taskwarrior.org/issues/817 + http://stackoverflow.com/questions/3261909/build-32bit-on-64-bit-linux-using-a-configure-script + Troubleshooting ---------------