diff options
author | Andrew Engelbrecht <sudoman@ninthfloor.org> | 2011-08-03 08:50:52 -0400 |
---|---|---|
committer | Andrew Engelbrecht <sudoman@ninthfloor.org> | 2011-08-03 08:50:52 -0400 |
commit | 2dbac97ca00a3ea201c4a1a2b2d7a7be0b2e05b0 (patch) | |
tree | b0f1b258795bdf3aa0c5e05278ca949d9be0d965 /microkernel/mach/mig/gnu_mig | |
parent | 0fd892609af34d295114d810a55759291b74157f (diff) |
Separate 32 and 64 bit instructions
Diffstat (limited to 'microkernel/mach/mig/gnu_mig')
-rw-r--r-- | microkernel/mach/mig/gnu_mig/building.mdwn | 7 |
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 |