Difference between revisions of "Dev86"
From CBLFS
Jump to navigationJump to search (New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://homepage.ntlworld.com/robert.debath/dev86/Dev86src-0.16.17.tar.gz |} ---- == Introduction to Dev86...) |
|||
Line 27: | Line 27: | ||
=== 32bit === | === 32bit === | ||
− | + | Compile the package: | |
+ | |||
+ | make CC="gcc ${BUILD32}" | ||
+ | |||
+ | Install the package: | ||
+ | |||
+ | make install | ||
=== N32 === | === N32 === | ||
− | + | Compile the package: | |
+ | |||
+ | make CC="gcc ${BUILDN32}" | ||
+ | |||
+ | Install the package: | ||
+ | |||
+ | make install | ||
=== 64Bit === | === 64Bit === | ||
− | + | Compile the package: | |
+ | |||
+ | make CC="gcc ${BUILD64}" | ||
+ | |||
+ | Install the package: | ||
+ | |||
+ | make install |
Revision as of 15:27, 15 April 2007
Download Source: | http://homepage.ntlworld.com/robert.debath/dev86/Dev86src-0.16.17.tar.gz |
---|
Contents
Introduction to Dev86
Dev86 is a linux 8086 development enviornment.
Dependencies
Non-Multilib
Compile the package:
make
Install the package:
make install
Multilib
32bit
Compile the package:
make CC="gcc ${BUILD32}"
Install the package:
make install
N32
Compile the package:
make CC="gcc ${BUILDN32}"
Install the package:
make install
64Bit
Compile the package:
make CC="gcc ${BUILD64}"
Install the package:
make install