Ticket #382: freebsd-make-error.txt

File freebsd-make-error.txt, 14.5 KB (added by dukeleto, 13 years ago)

output of perl Configure.pl && make

Line 
1Parrot Version 0.9.1 Configure 2.0
2Copyright (C) 2001-2009, Parrot Foundation.
3
4Hello, I'm Configure. My job is to poke and prod your system to figure out
5how to build Parrot. The process is completely automated, unless you passed in
6the `--ask' flag on the command line, in which case I'll prompt you for a few
7pieces of info.
8
9Since you're running this program, you obviously have Perl 5--I'll be pulling
10some defaults from its configuration.
11
12init::manifest -      Check MANIFEST.....................................done.
13init::defaults -      Set Configure's default values.....................done.
14init::install -       Set up installation paths..........................done.
15init::hints -         Load platform and local hints files................done.
16init::headers -       Find header files distributed with Parrot..........done.
17inter::progs -        Determine what C compiler and linker to use........done.
18inter::make -         Is make installed...................................yes.
19inter::lex -          Is lex installed................................skipped.
20inter::yacc -         Is yacc installed...............................skipped.
21auto::gcc -           Is your C compiler actually gcc................yes, 3.4.
22auto::glibc -         Is GNU libc installed................................no.
23auto::backtrace -     Does libc have the backtrace* functions..............no.
24auto::fink -          Determine Fink location on Darwin...............skipped.
25auto::macports -      Determine Macports location on Darwin...........skipped.
26auto::msvc -          Is your C compiler actually Visual C++..........skipped.
27auto::attributes -    Detect compiler attributes.........................done.
28auto::warnings -      Detect supported compiler warnings..........set for gcc.
29init::optimize -      Enable optimization..................................no.
30inter::shlibs -       Determine flags for building shared libraries...-DPIC -fPIC.
31inter::libparrot -    Should parrot link against a shared library.........yes.
32inter::charset -      Which charset files should be compiled in..........done.
33inter::encoding -     Which encoding files should be compiled in.........done.
34inter::types -        What types should Parrot use.......................done.
35auto::ops -           Which opcode files should be compiled in...........done.
36auto::pmc -           Which pmc files should be compiled in..............done.
37auto::alignptrs -     Determine your minimum pointer alignment........ 1 byte.
38auto::headers -       Probe for C headers................................done.
39auto::sizes -         Determine some sizes...............................done.
40auto::byteorder -     Compute native byteorder for wordsize.....little-endian.
41auto::va_ptr -        Test the type of va_ptr...........................stack.
42auto::format -        What formats should be used for sprintf............done.
43auto::isreg -         Does your C library have a working S_ISREG..........yes.
44auto::arch -          Determine CPU architecture and OS..................done.
45auto::jit -           Determine JIT capability............................yes.
46auto::cpu -           Generate CPU specific stuff........................done.
47auto::funcptr -       Does compiler support function pointer casts........yes.
48auto::cgoto -         Does your compiler support computed goto............yes.
49auto::inline -        Does your compiler support inline...................yes.
50auto::gc -            Determine allocator to use.........................done.
51auto::memalign -      Does your C library support memalign.................no.
52auto::signal -        Determine some signal stuff........................done.
53auto::socklen_t -     Determine whether there is socklen_t................yes.
54auto::neg_0 -         Determine whether negative zero can be printed......yes.
55auto::env -           Does your C library have setenv / unsetenv.........both.
56auto::gmp -           Does your platform support GMP.....................done.
57auto::readline -      Does your platform support readline.................yes.
58auto::gdbm -          Does your platform support gdbm.....................yes.
59auto::pcre -          Does your platform support pcre....................done.
60auto::opengl -        Does your platform support OpenGL....................no.
61auto::crypto -        Does your platform support crypto...........yes, 0.9.7e.
62auto::gettext -       Does your configuration include gettext.............yes.
63auto::snprintf -      Test snprintf......................................done.
64auto::perldoc -       Is perldoc installed................................yes.
65auto::pod2man -       Is pod2man installed................................yes.
66auto::ctags -         Is (exuberant) ctags installed.......................no.
67auto::revision -      Determine Parrot's revision......................r37030.
68auto::icu -           Is ICU installed..........................no icu-config.
69gen::config_h -       Generate C headers.................................done.
70gen::core_pmcs -      Generate core pmc list.............................done.
71gen::crypto -         Generate Digest PMC files..........................done.
72gen::parrot_include - Generate runtime/parrot/include....................done.
73gen::opengl -         Generating OpenGL bindings......................skipped.
74gen::call_list -      Generate NCI signature list........................done.
75gen::languages -      Configure languages................................done.
76gen::makefiles -      Generate makefiles and other build files...........done.
77gen::platform -       Move platform files into place.....................done.
78gen::config_pm -      Record configuration data for later retrieval......done.
79Okay, we're done!
80
81You can now use `gmake' to build your Parrot.
82After that, you can use `gmake test' to run the test suite.
83
84Happy Hacking,
85        The Parrot Team
86
87
88Compiling with:
89xx.c
90cc -I./include -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -pipe -I/usr/local/include -DHASATTRIBUTE_CONST -DHASATTRIBUTE_DEPRECATED -DHASATTRIBUTE_MALLOC -DHASATTRIBUTE_NONNULL -DHASATTRIBUTE_NORETURN -DHASATTRIBUTE_PURE -DHASATTRIBUTE_UNUSED -DHASATTRIBUTE_WARN_UNUSED_RESULT -falign-functions=16 -funit-at-a-time -maccumulate-outgoing-args -W -Wall -Waggregate-return -Wcast-align -Wcast-qual -Wchar-subscripts -Wcomment -Wdisabled-optimization -Wendif-labels -Wextra -Wformat -Wformat-extra-args -Wformat-nonliteral -Wformat-security -Wformat-y2k -Wimplicit -Wimport -Winit-self -Winline -Winvalid-pch -Wmissing-braces -Wno-missing-format-attribute -Wpacked -Wparentheses -Wpointer-arith -Wreturn-type -Wsequence-point -Wno-shadow -Wsign-compare -Wstrict-aliasing -Wstrict-aliasing=2 -Wswitch -Wswitch-default -Wtrigraphs -Wundef -Wunknown-pragmas -Wno-unused -Wwrite-strings -Wbad-function-cast -Wdeclaration-after-statement -Wimplicit-function-declaration -Wimplicit-int -Wmain -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wnonnull -DHAS_GETTEXT -g -DHAS_JIT -DI386 -DHAVE_COMPUTED_GOTO -DPIC -fPIC -I. -o xx.o -c xx.c
91perl5.10 tools/build/vtable_extend.pl
92perl5.10 tools/build/pbcversion_h.pl > include/parrot/pbcversion.h
93perl5.10 tools/build/vtable_h.pl
94perl5.10 tools/build/pmc2c.pl --vtable
95perl5.10 tools/build/pmc2c.pl --dump src/pmc/default.pmc
96perl5.10 tools/build/pmc2c.pl --dump src/pmc/fixedintegerarray.pmc
97Graph cycles through src/pmc/pmc_fixedintegerarray.h
98
99Graph cycles through src/pmc/pmc_sub.h
100
101perl5.10 tools/build/ops2pm.pl src/ops/core.ops src/ops/bit.ops src/ops/cmp.ops src/ops/debug.ops src/ops/experimental.ops src/ops/io.ops src/ops/math.ops src/ops/object.ops src/ops/pic.ops src/ops/pmc.ops src/ops/set.ops src/ops/string.ops src/ops/sys.ops src/ops/var.ops
102gcd_i_n_n                 1230       experimental, not in ops.num
103gcd_i_nc_n                1231       experimental, not in ops.num
104gcd_i_n_nc                1232       experimental, not in ops.num
105gcd_i_nc_nc               1233       experimental, not in ops.num
106gcd_i_i_i_i_i             1234       experimental, not in ops.num
107gcd_i_i_i_ic_i            1235       experimental, not in ops.num
108gcd_i_i_i_i_ic            1236       experimental, not in ops.num
109gcd_i_i_i_ic_ic           1237       experimental, not in ops.num
110splice_p_p_i_i            1238       experimental, not in ops.num
111splice_p_p_ic_i           1239       experimental, not in ops.num
112splice_p_p_i_ic           1240       experimental, not in ops.num
113splice_p_p_ic_ic          1241       experimental, not in ops.num
114iter_p_p                  1242       experimental, not in ops.num
115morph_p_p                 1243       experimental, not in ops.num
116morph_p_pc                1244       experimental, not in ops.num
117exec_s                    1245       experimental, not in ops.num
118exec_sc                   1246       experimental, not in ops.num
119classname_p_p             1247       experimental, not in ops.num
120trap                      1248       experimental, not in ops.num
121pow_n_n_i                 1249       experimental, not in ops.num
122pow_n_nc_i                1250       experimental, not in ops.num
123pow_n_n_ic                1251       experimental, not in ops.num
124pow_n_nc_ic               1252       experimental, not in ops.num
125need_finalize_p           1253       experimental, not in ops.num
126setstdout_p               1254       experimental, not in ops.num
127setstderr_p               1255       experimental, not in ops.num
128runinterp_p_p             1256       experimental, not in ops.num
129runinterp_p_pc            1257       experimental, not in ops.num
130substr_r_s_s_i_i          1258       experimental, not in ops.num
131substr_r_s_sc_i_i         1259       experimental, not in ops.num
132substr_r_s_s_ic_i         1260       experimental, not in ops.num
133substr_r_s_sc_ic_i        1261       experimental, not in ops.num
134substr_r_s_s_i_ic         1262       experimental, not in ops.num
135substr_r_s_sc_i_ic        1263       experimental, not in ops.num
136substr_r_s_s_ic_ic        1264       experimental, not in ops.num
137substr_r_s_sc_ic_ic       1265       experimental, not in ops.num
138find_sub_not_null_p_s     1266       experimental, not in ops.num
139find_sub_not_null_p_sc    1267       experimental, not in ops.num
140perl5.10 tools/build/ops2c.pl CSwitch --core
141perl5.10 tools/build/ops2c.pl CGoto --core
142perl5.10 tools/build/ops2c.pl CGP --core
143perl5.10 tools/build/c2str.pl src/debug.c > src/debug.str
144perl5.10 tools/build/c2str.pl src/dynext.c > src/dynext.str
145perl5.10 tools/build/c2str.pl src/events.c > src/events.str
146perl5.10 tools/build/c2str.pl src/exceptions.c > src/exceptions.str
147perl5.10 tools/build/c2str.pl src/global.c > src/global.str
148perl5.10 tools/build/c2str.pl src/global_setup.c > src/global_setup.str
149perl5.10 tools/build/c2str.pl src/hll.c > src/hll.str
150perl5.10 tools/build/c2str.pl src/call/pcc.c > src/call/pcc.str
151perl5.10 tools/build/c2str.pl src/inter_cb.c > src/inter_cb.str
152perl5.10 tools/build/c2str.pl src/inter_create.c > src/inter_create.str
153perl5.10 tools/build/c2str.pl src/inter_misc.c > src/inter_misc.str
154perl5.10 tools/build/c2str.pl src/io/api.c > src/io/api.str
155perl5.10 tools/build/c2str.pl src/key.c > src/key.str
156perl5.10 tools/build/c2str.pl src/library.c > src/library.str
157perl5.10 tools/build/c2str.pl src/multidispatch.c > src/multidispatch.str
158perl5.10 tools/build/pmc2c.pl --dump src/pmc/nci.pmc
159perl5.10 tools/build/pmc2c.pl --c src/pmc/nci.pmc
160perl5.10 tools/build/nativecall.pl src/call_list.txt
161perl5.10 tools/build/c2str.pl src/nci.c > src/nci.str
162perl5.10 tools/build/c2str.pl src/packfile.c > src/packfile.str
163perl5.10 tools/build/c2str.pl src/pmc.c > src/pmc.str
164perl5.10 tools/build/c2str.pl src/pmc_freeze.c > src/pmc_freeze.str
165perl5.10 tools/build/c2str.pl src/oo.c > src/oo.str
166perl5.10 tools/build/c2str.pl src/scheduler.c > src/scheduler.str
167perl5.10 tools/build/c2str.pl src/spf_render.c > src/spf_render.str
168perl5.10 tools/build/c2str.pl src/spf_vtable.c > src/spf_vtable.str
169perl5.10 tools/build/c2str.pl src/sub.c > src/sub.str
170perl5.10 tools/build/c2str.pl src/stacks.c > src/stacks.str
171perl5.10 tools/build/pmc2c.pl --c src/pmc/default.pmc
172perl5.10 tools/build/c2str.pl src/pmc/default.c > src/pmc/default.str
173perl5.10 tools/build/pmc2c.pl --dump src/pmc/null.pmc
174perl5.10 tools/build/pmc2c.pl --c src/pmc/null.pmc
175perl5.10 tools/build/c2str.pl src/pmc/null.c > src/pmc/null.str
176perl5.10 tools/build/pmc2c.pl --dump src/pmc/env.pmc
177perl5.10 tools/build/pmc2c.pl --c src/pmc/env.pmc
178perl5.10 tools/build/c2str.pl src/pmc/env.c > src/pmc/env.str
179perl5.10 tools/build/pmc2c.pl --dump src/pmc/key.pmc
180perl5.10 tools/build/pmc2c.pl --c src/pmc/key.pmc
181perl5.10 tools/build/c2str.pl src/pmc/key.c > src/pmc/key.str
182perl5.10 tools/build/pmc2c.pl --dump src/pmc/random.pmc
183perl5.10 tools/build/pmc2c.pl --c src/pmc/random.pmc
184perl5.10 tools/build/c2str.pl src/pmc/random.c > src/pmc/random.str
185perl5.10 tools/build/pmc2c.pl --dump src/pmc/unmanagedstruct.pmc
186perl5.10 tools/build/pmc2c.pl --c src/pmc/unmanagedstruct.pmc
187perl5.10 tools/build/c2str.pl src/pmc/unmanagedstruct.c > src/pmc/unmanagedstruct.str
188perl5.10 tools/build/pmc2c.pl --dump src/pmc/managedstruct.pmc
189perl5.10 tools/build/pmc2c.pl --c src/pmc/managedstruct.pmc
190perl5.10 tools/build/c2str.pl src/pmc/managedstruct.c > src/pmc/managedstruct.str
191perl5.10 tools/build/pmc2c.pl --dump src/pmc/exception.pmc
192perl5.10 tools/build/pmc2c.pl --c src/pmc/exception.pmc
193perl5.10 tools/build/c2str.pl src/pmc/exception.c > src/pmc/exception.str
194perl5.10 tools/build/pmc2c.pl --dump src/pmc/parrotlibrary.pmc
195perl5.10 tools/build/pmc2c.pl --c src/pmc/parrotlibrary.pmc
196perl5.10 tools/build/c2str.pl src/pmc/parrotlibrary.c > src/pmc/parrotlibrary.str
197perl5.10 tools/build/pmc2c.pl --dump src/pmc/parrotinterpreter.pmc
198perl5.10 tools/build/pmc2c.pl --c src/pmc/parrotinterpreter.pmc
199perl5.10 tools/build/c2str.pl src/pmc/parrotinterpreter.c > src/pmc/parrotinterpreter.str
200perl5.10 tools/build/pmc2c.pl --dump src/pmc/parrotthread.pmc
201perl5.10 tools/build/pmc2c.pl --c src/pmc/parrotthread.pmc
202perl5.10 tools/build/c2str.pl src/pmc/parrotthread.c > src/pmc/parrotthread.str
203perl5.10 tools/build/pmc2c.pl --dump src/pmc/lexpad.pmc
204perl5.10 tools/build/pmc2c.pl --c src/pmc/lexpad.pmc
205perl5.10 tools/build/c2str.pl src/pmc/lexpad.c > src/pmc/lexpad.str
206perl5.10 tools/build/pmc2c.pl --dump src/pmc/task.pmc
207perl5.10 tools/build/pmc2c.pl --dump src/pmc/timer.pmc
208perl5.10 tools/build/pmc2c.pl --c src/pmc/timer.pmc
209perl5.10 tools/build/c2str.pl src/pmc/timer.c > src/pmc/timer.str
210perl5.10 tools/build/pmc2c.pl --dump src/pmc/pointer.pmc
211perl5.10 tools/build/pmc2c.pl --c src/pmc/pointer.pmc
212perl5.10 tools/build/c2str.pl src/pmc/pointer.c > src/pmc/pointer.str
213perl5.10 tools/build/c2str.pl src/pmc/sub.c > src/pmc/sub.str
214tools/build/c2str.pl: src/pmc/sub.c: No such file or directory at tools/build/c2str.pl line 54.
215*** Error code 2
216
217Stop in ...