Symbian port: add Series 90 support
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / Embed.t
CommitLineData
39234879 1#!/usr/bin/perl
f1feeb72 2
3BEGIN {
39234879 4 if( $ENV{PERL_CORE} ) {
5 chdir 't' if -d 't';
6 @INC = '../lib';
7 }
f1feeb72 8}
39234879 9chdir 't';
10
f1feeb72 11use Config;
12use ExtUtils::Embed;
1091dea4 13use File::Spec;
f1feeb72 14
15open(my $fh,">embed_test.c") || die "Cannot open embed_test.c:$!";
16print $fh <DATA>;
17close($fh);
18
19$| = 1;
20print "1..9\n";
1091dea4 21my $cc = $Config{'cc'};
22my $cl = ($^O eq 'MSWin32' && $cc eq 'cl');
2a8c1a1c 23my $borl = ($^O eq 'MSWin32' && $cc eq 'bcc32');
dfcfdb64 24my $skip_exe = $^O eq 'os2' && $Config{ldflags} =~ /(?<!\S)-Zexe\b/;
25my $exe = 'embed_test';
26$exe .= $Config{'exe_ext'} unless $skip_exe; # Linker will auto-append it
9fb80172 27my $obj = 'embed_test' . $Config{'obj_ext'};
21f7eeb2 28my $inc = File::Spec->updir;
29my $lib = File::Spec->updir;
88eeb692 30my $libperl_copied;
31my $testlib;
1091dea4 32my @cmd;
20ebe338 33my (@cmd2) if $^O eq 'VMS';
34
35if ($^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) {
1091dea4 55 push(@cmd,$cc,"-Fe$exe");
20ebe338 56 }
2a8c1a1c 57 elsif ($borl) {
58 push(@cmd,$cc,"-o$exe");
59 }
20ebe338 60 else {
1091dea4 61 push(@cmd,$cc,'-o' => $exe);
20ebe338 62 }
14270b7a 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 }
20ebe338 69 push(@cmd,"-I$inc",ccopts(),'embed_test.c');
70 if ($^O eq 'MSWin32') {
b1b2427f 71 $inc = File::Spec->catdir($inc,'win32');
1091dea4 72 push(@cmd,"-I$inc");
b1b2427f 73 $inc = File::Spec->catdir($inc,'include');
1091dea4 74 push(@cmd,"-I$inc");
75 if ($cc eq 'cl') {
c623ac67 76 push(@cmd,'-link',"-libpath:$lib",$Config{'libperl'},$Config{'libs'});
1091dea4 77 }
78 else {
67bfc918 79 push(@cmd,"-L$lib",File::Spec->catfile($lib,$Config{'libperl'}),$Config{'libc'});
1091dea4 80 }
20ebe338 81 }
2f3efc97 82 elsif ($^O eq 'os390' && $Config{usedl}) {
83 # Nothing for OS/390 (z/OS) dynamic.
84 } else { # Not MSWin32 or OS/390 (z/OS) dynamic.
1091dea4 85 push(@cmd,"-L$lib",'-lperl');
fee3faea 86 local $SIG{__WARN__} = sub {
c623ac67 87 warn $_[0] unless $_[0] =~ /No library found for .*perl/
fee3faea 88 };
dfcfdb64 89 push(@cmd, '-Zlinker', '/PM:VIO') # Otherwise puts a warning to STDOUT!
90 if $^O eq 'os2' and $Config{ldflags} =~ /(?<!\S)-Zomf\b/;
fee3faea 91 push(@cmd,ldopts());
20ebe338 92 }
2a8c1a1c 93 if ($borl) {
94 @cmd = ($cmd[0],(grep{/^-[LI]/}@cmd[1..$#cmd]),(grep{!/^-[LI]/}@cmd[1..$#cmd]));
95 }
1091dea4 96
20ebe338 97 if ($^O eq 'aix') { # AIX needs an explicit symbol export list.
f490490f 98 my ($perl_exp) = grep { -f } qw(perl.exp ../perl.exp);
99 die "where is perl.exp?\n" unless defined $perl_exp;
100 for (@cmd) {
101 s!-bE:(\S+)!-bE:$perl_exp!;
102 }
88eeb692 103 }
b53432e4 104 elsif ($^O eq 'cygwin') { # Cygwin needs the shared libperl copied
41f1c18b 105 my $v_e_r_s = $Config{version};
106 $v_e_r_s =~ tr/./_/;
b53432e4 107 system("cp ../cygperl$v_e_r_s.dll ./"); # for test 1
20ebe338 108 }
88eeb692 109 elsif ($Config{'libperl'} !~ /\Alibperl\./) {
110 # Everyone needs libperl copied if it's not found by '-lperl'.
111 $testlib = $Config{'libperl'};
112 my $srclib = $testlib;
c72f2af0 113 $testlib =~ s/.+(?=\.[^.]*)/libperl/;
88eeb692 114 $testlib = File::Spec::->catfile($lib, $testlib);
115 $srclib = File::Spec::->catfile($lib, $srclib);
116 if (-f $srclib) {
117 unlink $testlib if -f $testlib;
c7e0473b 118 my $ln_or_cp = $Config{'ln'} || $Config{'cp'};
119 my $lncmd = "$ln_or_cp $srclib $testlib";
88eeb692 120 #print "# $lncmd\n";
121 $libperl_copied = 1 unless system($lncmd);
122 }
123 }
f490490f 124}
20ebe338 125my $status;
b2213df5 126# On OS/2 the linker will always emit an empty line to STDOUT; filter these
2bf35fab 127my $cmd = join ' ', @cmd;
128chomp($cmd); # where is the newline coming from? ldopts()?
129print "# $cmd\n";
130my @out = `$cmd`;
131$status = $?;
132print "# $_\n" foreach @out;
b2213df5 133
20ebe338 134if ($^O eq 'VMS' && !$status) {
135 print "# @cmd2\n";
136 $status = system(join(' ',@cmd2));
137}
138print (($status? 'not ': '')."ok 1\n");
3be77bcf 139
144d6c83 140my $embed_test = File::Spec->catfile(File::Spec->curdir, $exe);
20ebe338 141$embed_test = "run/nodebug $exe" if $^O eq 'VMS';
144d6c83 142print "# embed_test = $embed_test\n";
20ebe338 143$status = system($embed_test);
7d63dedd 144print (($status? 'not ':'')."ok 9 # system returned $status\n");
9fb80172 145unlink($exe,"embed_test.c",$obj);
d59896ca 146unlink("$exe.manifest") if $cl and $Config{'ccversion'} =~ /^(\d+)/ and $1 >= 14;
dfcfdb64 147unlink("$exe$Config{exe_ext}") if $skip_exe;
9fb80172 148unlink("embed_test.map","embed_test.lis") if $^O eq 'VMS';
b53432e4 149unlink(glob("./*.dll")) if $^O eq 'cygwin';
88eeb692 150unlink($testlib) if $libperl_copied;
f1feeb72 151
94597104 152# gcc -g -I.. -L../ -o perl_test perl_test.c -lperl `../perl -I../lib -MExtUtils::Embed -I../ -e ccopts -e ldopts`
f1feeb72 153
154__END__
155
156/* perl_test.c */
157
158#include <EXTERN.h>
159#include <perl.h>
160
161#define my_puts(a) if(puts(a) < 0) exit(666)
162
9ac9d386 163static char *cmds[] = { "perl","-e", "$|=1; print qq[ok 5\\n]", NULL };
f1feeb72 164
27da23d5 165#ifdef PERL_GLOBAL_STRUCT_PRIVATE
166static struct perl_vars *my_plvarsp;
167struct perl_vars* Perl_GetVarsPrivate(void) { return my_plvarsp; }
168#endif
169
2f3efc97 170#ifdef NO_ENV_ARRAY_IN_MAIN
171extern char **environ;
172int main(int argc, char **argv)
173#else
f1feeb72 174int main(int argc, char **argv, char **env)
2f3efc97 175#endif
f1feeb72 176{
1ccffcf5 177 PerlInterpreter *my_perl;
27da23d5 178#ifdef PERL_GLOBAL_STRUCT
179 dVAR;
180 struct perl_vars *plvarsp = init_global_struct();
181# ifdef PERL_GLOBAL_STRUCT_PRIVATE
182 my_vars = my_plvarsp = plvarsp;
183# endif
184#endif /* PERL_GLOBAL_STRUCT */
b7787f18 185
186 (void)argc; /* PERL_SYS_INIT3 may #define away their use */
187 (void)argv;
2f3efc97 188#ifdef NO_ENV_ARRAY_IN_MAIN
189 PERL_SYS_INIT3(&argc,&argv,&environ);
190#else
1ccffcf5 191 PERL_SYS_INIT3(&argc,&argv,&env);
2f3efc97 192#endif
1ccffcf5 193
194 my_perl = perl_alloc();
f1feeb72 195
196 my_puts("ok 2");
197
198 perl_construct(my_perl);
199
200 my_puts("ok 3");
201
2f3efc97 202#ifdef NO_ENV_ARRAY_IN_MAIN
203 perl_parse(my_perl, NULL, (sizeof(cmds)/sizeof(char *))-1, cmds, environ);
204#else
f1feeb72 205 perl_parse(my_perl, NULL, (sizeof(cmds)/sizeof(char *))-1, cmds, env);
2f3efc97 206#endif
f1feeb72 207
208 my_puts("ok 4");
209
210 fflush(stdout);
211
212 perl_run(my_perl);
213
214 my_puts("ok 6");
215
216 perl_destruct(my_perl);
217
218 my_puts("ok 7");
219
220 perl_free(my_perl);
221
27da23d5 222#ifdef PERL_GLOBAL_STRUCT
223 free_global_struct(plvarsp);
224#endif /* PERL_GLOBAL_STRUCT */
225
f1feeb72 226 my_puts("ok 8");
227
1ccffcf5 228 PERL_SYS_TERM();
229
f1feeb72 230 return 0;
231}