Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / site_perl / 5.8.0 / auto / Inline / print_info.al
CommitLineData
86530b38
AT
1# NOTE: Derived from blib/lib/Inline.pm.
2# Changes made here will be lost when autosplit is run again.
3# See AutoSplit.pm.
4package Inline;
5
6#line 1103 "blib/lib/Inline.pm (autosplit into blib/lib/auto/Inline/print_info.al)"
7#==============================================================================
8# Print a small report if PRINT_INFO option is set.
9#==============================================================================
10sub print_info {
11 use strict;
12 my $o = shift;
13
14 print STDERR <<END;
15<-----------------------Information Section----------------------------------->
16
17Information about the processing of your Inline $o->{API}{language_id} code:
18
19END
20
21 print STDERR <<END if ($o->{INLINE}{object_ready});
22Your module is already compiled. It is located at:
23$o->{API}{location}
24
25END
26
27 print STDERR <<END if ($o->{INLINE}{object_ready} and $o->{CONFIG}{FORCE_BUILD});
28But the FORCE_BUILD option is set, so your code will be recompiled.
29I\'ll use this build directory:
30$o->{API}{build_dir}
31
32and I\'ll install the executable as:
33$o->{API}{location}
34
35END
36 print STDERR <<END if (not $o->{INLINE}{object_ready});
37Your source code needs to be compiled. I\'ll use this build directory:
38$o->{API}{build_dir}
39
40and I\'ll install the executable as:
41$o->{API}{location}
42
43END
44
45 eval {
46 print STDERR $o->info;
47 };
48 print $@ if $@;
49
50 print STDERR <<END;
51
52<-----------------------End of Information Section---------------------------->
53END
54}
55
56# end of Inline::print_info
571;