summaryrefslogtreecommitdiff
path: root/microkernel/mach/mig/gnu_mig/building.mdwn
diff options
context:
space:
mode:
authorAndrew Engelbrecht <sudoman@ninthfloor.org>2011-08-03 08:50:52 -0400
committerAndrew Engelbrecht <sudoman@ninthfloor.org>2011-08-03 08:50:52 -0400
commit2dbac97ca00a3ea201c4a1a2b2d7a7be0b2e05b0 (patch)
treeb0f1b258795bdf3aa0c5e05278ca949d9be0d965 /microkernel/mach/mig/gnu_mig/building.mdwn
parent0fd892609af34d295114d810a55759291b74157f (diff)
Separate 32 and 64 bit instructions
Diffstat (limited to 'microkernel/mach/mig/gnu_mig/building.mdwn')
-rw-r--r--microkernel/mach/mig/gnu_mig/building.mdwn7
1 files changed, 6 insertions, 1 deletions
diff --git a/microkernel/mach/mig/gnu_mig/building.mdwn b/microkernel/mach/mig/gnu_mig/building.mdwn
index 57057d34..9c313b3b 100644
--- a/microkernel/mach/mig/gnu_mig/building.mdwn
+++ b/microkernel/mach/mig/gnu_mig/building.mdwn
@@ -61,9 +61,14 @@ The Mach Interface Generator has to be built in a separate directory:
Find the root directory where you installed GNU Mach's header files and where you now intend to install the Mach Interface Generator (_~/gnu_) and the path to your Mach Interface Generator sources (../mig) and configure it:
$ GNU=~/gnu
+ $ TARGET_CPPFLAGS=-I"$GNU"/include ../mig/configure
+
+The --host flag is necessary if you are building on a 64 bit machine:
+
+ $ GNU=~/gnu
$ TARGET_CPPFLAGS=-I"$GNU"/include ../mig/configure --prefix="$GNU" --host=i686-unknown-linux-gnu
-The --host flag above is necessary if you are building on a 64 bit machine. Build and install the Mach Interface Generator into _$GNU_, i.e. _~/gnu/_ in our example:
+Build and install the Mach Interface Generator into _$GNU_, i.e. _~/gnu/_ in our example:
$ make all install