This file is indexed.

/usr/bin/builder-c++ is in pentium-builder 0.19.

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
11
12
13
14
#! /usr/bin/perl

if ($ENV{DEBIAN_BUILDARCH} eq undef && $ENV{DEBIAN_BUILDGCCVER} eq undef) {
    @target = ("g++.real", @ARGV);
} elsif ($ENV{DEBIAN_BUILDGCCVER} eq undef) {
    @target = ("g++.real", "-mcpu=$ENV{DEBIAN_BUILDARCH}",
    "-march=$ENV{DEBIAN_BUILDARCH}", @ARGV);
} else {
    @target = ("g++-" . $ENV{DEBIAN_BUILDGCCVER},
    "-mcpu=$ENV{DEBIAN_BUILDARCH}", "-march=$ENV{DEBIAN_BUILDARCH}",
    @ARGV);
}

exec @target or die "Unable to exec @target[0]: $!\n";