Tru64: -Uusedl: lib/ExtUtils/t/Embed.t
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / Embed.t
1 #!/usr/bin/perl
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't' if -d 't';
6         @INC = '../lib';
7     }
8 }
9 chdir 't';
10
11 use Config;
12 use ExtUtils::Embed;
13 use File::Spec;
14
15 open(my $fh,">embed_test.c") || die "Cannot open embed_test.c:$!";
16 print $fh <DATA>;
17 close($fh);
18
19 $| = 1;
20 print "1..9\n";
21 my $cc = $Config{'cc'};
22 my $cl  = ($^O eq 'MSWin32' && $cc eq 'cl');
23 my $borl  = ($^O eq 'MSWin32' && $cc eq 'bcc32');
24 my $skip_exe = $^O eq 'os2' && $Config{ldflags} =~ /(?<!\S)-Zexe\b/;
25 my $exe = 'embed_test';
26 $exe .= $Config{'exe_ext'} unless $skip_exe;    # Linker will auto-append it
27 my $obj = 'embed_test' . $Config{'obj_ext'};
28 my $inc = File::Spec->updir;
29 my $lib = File::Spec->updir;
30 my $libperl_copied;
31 my $testlib;
32 my @cmd;
33 my (@cmd2) if $^O eq 'VMS';
34
35 if ($^O eq 'VMS') {
36     push(@cmd,$cc,"/Obj=$obj");
37     my (@incs) = ($inc);
38     my $crazy = ccopts();
39     if ($crazy =~ s#/inc[^=/]*=([\w\$\_\-\.\[\]\:]+)##i) {
40         push(@incs,$1);
41     }
42     if ($crazy =~ s/-I([a-zA-Z0-9\$\_\-\.\[\]\:]*)//) {
43         push(@incs,$1);
44     }
45     $crazy =~ s#/Obj[^=/]*=[\w\$\_\-\.\[\]\:]+##i;
46     push(@cmd,"/Include=(".join(',',@incs).")");
47     push(@cmd,$crazy);
48     push(@cmd,"embed_test.c");
49
50     push(@cmd2,$Config{'ld'}, $Config{'ldflags'}, "/exe=$exe"); 
51     push(@cmd2,"$obj,[-]perlshr.opt/opt,[-]perlshr_attr.opt/opt");
52
53 } else {
54    if ($cl) {
55     push(@cmd,$cc,"-Fe$exe");
56    }
57    elsif ($borl) {
58     push(@cmd,$cc,"-o$exe");
59    }
60    else {
61     push(@cmd,$cc,'-o' => $exe);
62    }
63    if ($^O eq 'dec_osf' && !defined $Config{usedl}) {
64        # The -non_shared is needed in case of -Uusedl or otherwise
65        # the test application will try to use libperl.so
66        # instead of libperl.a.
67        push @cmd, "-non_shared";
68    }
69    push(@cmd,"-I$inc",ccopts(),'embed_test.c');
70    if ($^O eq 'MSWin32') {
71     $inc = File::Spec->catdir($inc,'win32');
72     push(@cmd,"-I$inc");
73     $inc = File::Spec->catdir($inc,'include');
74     push(@cmd,"-I$inc");
75     if ($cc eq 'cl') {
76         push(@cmd,'-link',"-libpath:$lib",$Config{'libperl'},$Config{'libs'});
77     }
78     else {
79         push(@cmd,"-L$lib",File::Spec->catfile($lib,$Config{'libperl'}),$Config{'libc'});
80     }
81    }
82    else { # Not MSWin32.
83     push(@cmd,"-L$lib",'-lperl');
84     local $SIG{__WARN__} = sub {
85         warn $_[0] unless $_[0] =~ /No library found for .*perl/
86     };
87     push(@cmd, '-Zlinker', '/PM:VIO')   # Otherwise puts a warning to STDOUT!
88         if $^O eq 'os2' and $Config{ldflags} =~ /(?<!\S)-Zomf\b/;
89     push(@cmd,ldopts());
90    }
91    if ($borl) {
92      @cmd = ($cmd[0],(grep{/^-[LI]/}@cmd[1..$#cmd]),(grep{!/^-[LI]/}@cmd[1..$#cmd]));
93    }
94
95    if ($^O eq 'aix') { # AIX needs an explicit symbol export list.
96     my ($perl_exp) = grep { -f } qw(perl.exp ../perl.exp);
97     die "where is perl.exp?\n" unless defined $perl_exp;
98     for (@cmd) {
99         s!-bE:(\S+)!-bE:$perl_exp!;
100     }
101    }
102    elsif ($^O eq 'cygwin') { # Cygwin needs the shared libperl copied
103      my $v_e_r_s = $Config{version};
104      $v_e_r_s =~ tr/./_/;
105      system("cp ../cygperl$v_e_r_s.dll ./");    # for test 1
106    }
107    elsif ($Config{'libperl'} !~ /\Alibperl\./) {
108      # Everyone needs libperl copied if it's not found by '-lperl'.
109      $testlib = $Config{'libperl'};
110      my $srclib = $testlib;
111      $testlib =~ s/.+(?=\.[^.]*)/libperl/;
112      $testlib = File::Spec::->catfile($lib, $testlib);
113      $srclib = File::Spec::->catfile($lib, $srclib);
114      if (-f $srclib) {
115        unlink $testlib if -f $testlib;
116        my $ln_or_cp = $Config{'ln'} || $Config{'cp'};
117        my $lncmd = "$ln_or_cp $srclib $testlib";
118        #print "# $lncmd\n";
119        $libperl_copied = 1      unless system($lncmd);
120      }
121    }
122 }
123 my $status;
124 # On OS/2 the linker will always emit an empty line to STDOUT; filter these
125 my $cmd = join ' ', @cmd;
126 chomp($cmd); # where is the newline coming from? ldopts()?
127 print "# $cmd\n";
128 my @out = `$cmd`;
129 $status = $?;
130 print "# $_\n" foreach @out;
131
132 if ($^O eq 'VMS' && !$status) {
133   print "# @cmd2\n";
134   $status = system(join(' ',@cmd2)); 
135 }
136 print (($status? 'not ': '')."ok 1\n");
137
138 my $embed_test = File::Spec->catfile(File::Spec->curdir, $exe);
139 $embed_test = "run/nodebug $exe" if $^O eq 'VMS';
140 print "# embed_test = $embed_test\n";
141 $status = system($embed_test);
142 print (($status? 'not ':'')."ok 9 # system returned $status\n");
143 unlink($exe,"embed_test.c",$obj);
144 unlink("$exe$Config{exe_ext}") if $skip_exe;
145 unlink("embed_test.map","embed_test.lis") if $^O eq 'VMS';
146 unlink(glob("./*.dll")) if $^O eq 'cygwin';
147 unlink($testlib)               if $libperl_copied;
148
149 # gcc -g -I.. -L../ -o perl_test perl_test.c -lperl `../perl -I../lib -MExtUtils::Embed -I../ -e ccopts -e ldopts`
150
151 __END__
152
153 /* perl_test.c */
154
155 #include <EXTERN.h>
156 #include <perl.h>
157
158 #define my_puts(a) if(puts(a) < 0) exit(666)
159
160 static char *cmds[] = { "perl","-e", "$|=1; print qq[ok 5\\n]", NULL };
161
162 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
163 static struct perl_vars *my_plvarsp;
164 struct perl_vars* Perl_GetVarsPrivate(void) { return my_plvarsp; }
165 #endif
166
167 int main(int argc, char **argv, char **env)
168 {
169     PerlInterpreter *my_perl;
170 #ifdef PERL_GLOBAL_STRUCT
171     dVAR;
172     struct perl_vars *plvarsp = init_global_struct();
173 #  ifdef PERL_GLOBAL_STRUCT_PRIVATE
174     my_vars = my_plvarsp = plvarsp;
175 #  endif
176 #endif /* PERL_GLOBAL_STRUCT */
177
178     (void)argc; /* PERL_SYS_INIT3 may #define away their use */
179     (void)argv;
180     PERL_SYS_INIT3(&argc,&argv,&env);
181
182     my_perl = perl_alloc();
183
184     my_puts("ok 2");
185
186     perl_construct(my_perl);
187
188     my_puts("ok 3");
189
190     perl_parse(my_perl, NULL, (sizeof(cmds)/sizeof(char *))-1, cmds, env);
191
192     my_puts("ok 4");
193
194     fflush(stdout);
195
196     perl_run(my_perl);
197
198     my_puts("ok 6");
199
200     perl_destruct(my_perl);
201
202     my_puts("ok 7");
203
204     perl_free(my_perl);
205
206 #ifdef PERL_GLOBAL_STRUCT
207     free_global_struct(plvarsp);
208 #endif /* PERL_GLOBAL_STRUCT */
209
210     my_puts("ok 8");
211
212     PERL_SYS_TERM();
213
214     return 0;
215 }