Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/sbin/ |
Upload File : |
#!/usr/bin/perl
use strict;
use warnings FATAL => "all";
my $ccache_dir = "/usr/lib/ccache";
my @gcc_dirs = (
"/usr/lib/gcc",
"/usr/lib/gcc-cross",
"/usr/lib/x86_64-linux-gnu/gcc",
);
my %old_symlinks; # Current compiler names in /usr/lib/ccache
my %new_symlinks; # Compiler names that should be in /usr/lib/ccache
my @standard_names = qw(cc c++);
my $clang_names = qr/^(llvm-)?clang(\+\+)?(-[0-9.]+)?$/;
my $verbose = 0;
sub consider {
my ($name) = @_;
if (-x "/usr/bin/$name") {
$new_symlinks{$name} = 1;
}
}
sub consider_gcc {
my ($prefix, $suffix) = @_;
consider "${prefix}gcc${suffix}";
consider "${prefix}g++${suffix}";
}
# Find existing standard compiler names.
foreach (@standard_names) {
consider $_;
}
# Find existing GCC variants.
consider_gcc "", "";
consider_gcc "c89-", "";
consider_gcc "c99-", "";
foreach my $gcc_dir (@gcc_dirs) {
foreach my $dir (<$gcc_dir/*>) {
(my $kind = $dir) =~ s|.*/||;
consider_gcc "$kind-", "";
foreach (<$dir/*>) {
if (! -l $_ and -d $_) {
s|.*/||;
consider_gcc "", "-$_";
consider_gcc "$kind-", "-$_";
}
}
}
}
# Find existing clang variants.
foreach (</usr/bin/*clang*>) {
s|.*/||;
if (/$clang_names/) {
consider $_;
}
}
# NVCC (CUDA)
consider "nvcc";
# Find existing symlinks.
foreach (<$ccache_dir/*>) {
if (-l) {
s|.*/||;
$old_symlinks{$_} = 1;
}
}
# Remove obsolete symlinks.
foreach (keys %old_symlinks) {
if (! -e "/usr/bin/$_") {
print "Removing $ccache_dir/$_\n" if $verbose;
unlink "$ccache_dir/$_";
}
}
# Add missing symlinks.
foreach (keys %new_symlinks) {
if (! exists $old_symlinks{$_}) {
print "Adding $ccache_dir/$_\n" if $verbose;
symlink "../../bin/ccache", "$ccache_dir/$_";
}
}