Doc tweaks.
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / Embed.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     unshift @INC, '../lib';
6 }
7 use Config;
8 use ExtUtils::Embed;
9 use File::Spec;
10
11 open(my $fh,">embed_test.c") || die "Cannot open embed_test.c:$!";
12 print $fh <DATA>;
13 close($fh);
14
15 $| = 1;
16 print "1..9\n";
17 my $cc = $Config{'cc'};
18 my $cl  = ($^O eq 'MSWin32' && $cc eq 'cl');
19 my $exe = 'embed_test' . $Config{'exe_ext'};
20 my $inc = File::Spec->catdir($INC[0],"..");
21 my $lib = File::Spec->catdir($INC[0],"..");
22 my @cmd;
23 if ($cl) {
24     push(@cmd,$cc,"-Fe$exe");
25 }
26 else {
27     push(@cmd,$cc,'-o' => $exe);
28 }
29 push(@cmd,"-I$inc",ccopts(),'embed_test.c');
30 if ($^O eq 'MSWin32') {
31     $inc = File::Spec->catdir($inc,'win32');
32     push(@cmd,"-I$inc");
33     $inc = File::Spec->catdir($inc,'include');
34     push(@cmd,"-I$inc");
35     if ($cc eq 'cl') {
36         push(@cmd,'-link',"-libpath:$lib",$Config{'libperl'},$Config{'libc'});
37     }
38     else {
39         push(@cmd,"-L$lib",File::Spec->catfile($lib,$Config{'libperl'}),$Config{'libc'});
40     }
41 }
42 else {
43     push(@cmd,"-L$lib",'-lperl');
44 }
45 push(@cmd,ldopts());
46
47 if ($^O eq 'aix') { # AIX needs an explicit symbol export list.
48     my ($perl_exp) = grep { -f } qw(perl.exp ../perl.exp);
49     die "where is perl.exp?\n" unless defined $perl_exp;
50     for (@cmd) {
51         s!-bE:(\S+)!-bE:$perl_exp!;
52     }
53 }
54
55 print "# @cmd"; # where is the newline coming from? ldopts()?
56 print "not " if system(join(' ',@cmd));
57 print "ok 1\n";
58
59 my $embed_test = File::Spec->catfile(File::Spec->curdir, "embed_test");
60
61 print "not " if system($embed_test);
62 print "ok 9\n";
63
64 unlink($exe,"embed_test.c");
65
66 # gcc -g -I.. -L../ -o perl_test perl_test.c -lperl `../perl -I../lib -MExtUtils::Embed -I../ -e ccopts -e ldopts`
67
68 __END__
69
70 /* perl_test.c */
71
72 #include <EXTERN.h>
73 #include <perl.h>
74
75 #define my_puts(a) if(puts(a) < 0) exit(666)
76
77 char *cmds[] = { "perl","-e", "print qq[ok 5\\n]", NULL };
78
79 int main(int argc, char **argv, char **env)
80 {
81     PerlInterpreter *my_perl = perl_alloc();
82
83     my_puts("ok 2");
84
85     perl_construct(my_perl);
86
87     my_puts("ok 3");
88
89     perl_parse(my_perl, NULL, (sizeof(cmds)/sizeof(char *))-1, cmds, env);
90
91     my_puts("ok 4");
92
93     fflush(stdout);
94
95     perl_run(my_perl);
96
97     my_puts("ok 6");
98
99     perl_destruct(my_perl);
100
101     my_puts("ok 7");
102
103     perl_free(my_perl);
104
105     my_puts("ok 8");
106
107     return 0;
108 }
109
110
111
112