Difference between revisions of "Microdc2"

From CBLFS
Jump to navigationJump to search
(Non-Multilib)
Line 17: Line 17:
  
 
== Non-Multilib ==
 
== Non-Multilib ==
 +
 +
Compile the package:
 +
 +
./configure --prefix=/usr --mandir=/usr/man &&
 +
make
 +
 +
Install the package
 +
 +
make install
 +
 +
== Multilib ==
 +
 +
=== 32Bit ===
 +
 +
Compile the package:
 +
 +
CC="gcc ${BUILD32}" USE_ARCH=32 \
 +
./configure --prefix=/usr --mandir=/usr/man &&
 +
make
 +
 +
Install the package
 +
 +
make install
 +
 +
=== 64Bit ===
 +
 +
Compile the package:
 +
 +
CC="gcc ${BUILD64}" USE_ARCH=64 \
 +
./configure --prefix=/usr --mandir=/usr/man \
 +
    --libdir=/usr/lib64 &&
 +
make
 +
 +
Install the package
 +
 +
make install

Revision as of 14:25, 27 February 2007

Download Source: http://corsair626.no-ip.org/microdc/microdc2-0.15.6.tar.gz

Dependencies

Non-Multilib

Compile the package:

./configure --prefix=/usr --mandir=/usr/man &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr --mandir=/usr/man &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --mandir=/usr/man \
    --libdir=/usr/lib64 &&
make

Install the package

make install