Server : Apache System : Linux copper.netcy.com 2.6.32-754.27.1.el6.centos.plus.x86_64 #1 SMP Thu Jan 30 13:54:25 UTC 2020 x86_64 User : montcaro ( 581) PHP Version : 7.4.28 Disable Function : NONE Directory : /scripts/ |
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - checkcompiler Copyright 2011 cPanel, Inc. # All rights Reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited use Cpanel::Sys::Compiler (); use Cpanel::Usage (); my $verbose = 0; my $biarch_test = 0; my $compiler = 'gcc'; Cpanel::Usage::wrap_options( \@ARGV, \&usage, { 'compiler' => \$compiler, 'verbose' => \$verbose, 'biarch' => \$biarch_test } ); if ( -e '/etc/skipccheck' ) { print "C compiler check disabled per /etc/skipccheck\n"; exit 0; } my ( $status, $statusmsgs, $flags_ref ) = Cpanel::Sys::Compiler::check_c_compiler( 'compiler' => $compiler, 'verbose' => $verbose, 'biarch_test' => $biarch_test ); print join( "\n", @{$statusmsgs} ) . "\n"; if ( ref $flags_ref && @{$flags_ref} ) { print "Prefered Compile Flags: " . join( " ", @{$flags_ref} ) . "\n"; } exit( $status ? 0 : 1 ); sub usage { print <<EO_USAGE; checkccompiler [options] Options: --help Brief help message --verbose Display verbose information messages --biarch Test biarch support on 64bit system --compiler Compiler to test with EO_USAGE exit 0; }