This file is indexed.

/usr/bin/lig++ is in limba-licompile 0.5.6-2.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#!/usr/bin/env perl
# Simple C++ wrapper for ligcc.

use strict;
use FindBin;

my $ligcc = "$FindBin::Bin/ligcc";
$ENV{LICOMPILE_CXX_MODE} = 1;
my $a = do $ligcc;
die $@ if ($@);