git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@236105 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
250 B
Perl
Executable File
19 lines
250 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use FindBin;
|
|
use lib "$FindBin::Bin/lib";
|
|
|
|
# LIBOMP modules.
|
|
use Build;
|
|
use LibOMP;
|
|
use Platform ":vars";
|
|
use Uname;
|
|
use tools;
|
|
|
|
my $root_dir = $ENV{ LIBOMP_WORK };
|
|
print join('', $target_platform, "/");
|
|
|