| Mouse::XS - A Mouse guts in XS |
Mouse::XS - A Mouse guts in XS
This document describes Mouse version 0.65
Mouse has an optional XS implementation, which is automatically built and used if available. According to benchmarks, this is about 2 times faster than Mouse::PurePerl.
The XS implementation are selected by default, but you can force it by
passing the --xs option to Makefile.PL.
perl Makefile.PL --xs
If you do not want to build the XS implementation, you can pass the --pp
option to Makefile.PL.
perl Makefile.PL --pp
It can be used to enable the use of Mouse::PurePerl in order to test and debug programs that use Mouse.
The XS implementation requires Perl 5.8.1 or later, and a C compiler.
Mouse
| Mouse::XS - A Mouse guts in XS |