The File package contains a utility for determining the type of a given file or files.
Prepare File for 32-bit compilation:
./configure --prefix=/usr \ --libdir=/usr/lib32 \ CC="gcc -m32"
Compile the package:
make
To test the results, issue:
make check
Install the package:
make install
Clean up the build directory before moving on to the next platform:
make clean
Prepare File for x32 ABI compilation:
./configure --prefix=/usr \ --libdir=/usr/libx32 \ CC="gcc -mx32"
Compile the package:
make
To test the results, issue:
make check
Install the package:
make install
Clean up the build directory before moving on to the next platform:
make clean
Prepare File for 64-bit compilation:
./configure --prefix=/usr
Compile the package:
make
To test the results, issue:
make check
Install the package:
make install