1Devel::CheckCompiler(3pUms)er Contributed Perl DocumentatDieovnel::CheckCompiler(3pm)
2
3
4
6 Devel::CheckCompiler - Check the compiler's availability
7
9 use Devel::CheckCompiler;
10
11 check_c99_or_exit();
12
14 Devel::CheckCompiler is checker for compiler's availability.
15
17 "check_c99()"
18 Returns true if the current system has a working C99 compiler,
19 false otherwise.
20
21 "check_c99_or_exit()"
22 Check the current system has a working C99 compiler, if it's not
23 available, exit by 0.
24
25 "check_compile($src: Str, %options)"
26 Compile $src as C code. Return 1 if it's available, 0 otherwise.
27
28 Possible options are:
29
30 executable :Bool = false
31 Check to see if generating executable is possible if this
32 parameter is true.
33
34 extra_linker_flags : Str | ArrayRef[Str]
35 Any additional flags you wish to pass to the linker. This
36 option is used only when "executable" option specified.
37
39 Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM>
40
42 ExtUtils::CBuilder
43
45 Copyright (C) Tokuhiro Matsuno
46
47 This library is free software; you can redistribute it and/or modify it
48 under the same terms as Perl itself.
49
50
51
52perl v5.32.0 2020-07-28 Devel::CheckCompiler(3pm)