|  |  
 |   |   
 NAMEExtUtils::HasCompiler - Check for the presence of a compiler VERSIONversion 0.025 SYNOPSIS use ExtUtils::HasCompiler 'can_compile_extension';
 if (can_compile_extension()) {
   ...
 }
 else {
   ...
 }
DESCRIPTIONThis module tries to check if the current system is capable of compiling, linking and loading an XS module. Notice: this is an early release, interface stability isn't guaranteed yet. FUNCTIONScan_compile_loadable_object(%opts)This checks if the system can compile, link and load a perl loadable object. It may take the following options: 
 can_compile_static_library(%opts)This checks if the system can compile and link a perl static library. It does not check it it can compile a new perl with it. It may take the following options: 
 can_compile_extension(%opts)This will call either "can_compile_loadable_object", or "can_compile_static_library", depending on which is the default on your configuration. In addition to the arguments listed above, it can take one more optional argument: 
 AUTHORLeon Timmermans <fawaka@gmail.com> COPYRIGHT AND LICENSEThis software is copyright (c) 2014 by Leon Timmermans. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. 
 
 |