Как включить -make_bundle в runcpu?Linux

Anonymous
Как включить -make_bundle в runcpu?

Сообщение Anonymous »

Набор инструментов Spec06, runspec, предоставляет опцию -make_bundle для упаковки уже скомпилированных Bendchmark Binary на текущем сервере. Это делает очень удобным запускать эти программы на другом сервере. Однако власти могут полагать, что эта функция использовалась редко, и она была удалена, когда Spec17 был выпущен. -make_bundle. Но как я могу это включить? < /P>
# runcpu:1143
# Make a bundle
if ($runconfig->{'bundleaction'} eq 'make') {
if (@compile_error_list) {
Log(0, "ERROR: Not all benchmarks available for bundling!\n");
$err_exit = 1;
next CONFIGRUN;
}
make_bundle($runconfig, \@benchobjs);
next CONFIGRUN;
}
< /code>
#runcpu:2707
sub make_bundle {
my ($config, $benchobjs) = @_;

Log(2, "Making Bundle\n");
my $ans = 'n';
my @files = ();
... ...
< /code>
This function is very helpful for cross-compilation scenarios. For instance, a RISC-V program can be cross-compiled on an X86 machine and then copied to a RISC-V machine for execution.

Подробнее здесь: https://stackoverflow.com/questions/796 ... -in-runcpu

Вернуться в «Linux»