The XML::Parser module is a Perl interface to James Clark's XML parser, Expat.
Prepare XML::Parser for 32-bit compilation:
USE_ARCH=32 perl Makefile.PL
Compile the package:
make
To test the results, issue:
make test
Install the package:
make install
Clean up the build directory before moving on to the next platform:
make clean
Prepare XML::Parser for x32 ABI compilation:
USE_ARCH=x32 perl Makefile.PL
Compile the package:
make
To test the results, issue:
make test
Install the package:
make install
Prepare XML::Parser for 64-bit compilation:
perl Makefile.PL
Compile the package:
make
To test the results, issue:
make test
Install the package:
make install