* bug#13848: Statically linking guile-2.0. @ 2013-03-01 16:19 Jan Schukat 2013-03-02 15:28 ` Ludovic Courtès 2013-03-09 9:32 ` Andy Wingo 0 siblings, 2 replies; 42+ messages in thread From: Jan Schukat @ 2013-03-01 16:19 UTC (permalink / raw) To: 13848 I'm trying to build a program that uses guile 2.0 on linux, windows and osx and finds the same environment, more or less, on all 3 platforms. That means mainly for windows reasons, I have to statically link it. So, first step is a little test system to compile it everywhere. But compiling guile-2.0 on MinGW is a very hairy undertaking. I'm not sure how often it is tested by the developers. First of all, You have to define a whole lot of environment variables. For one, there is no pkg-config on windows, but ./configure --help tells you what to do, so that's ok. Also, when you link statically and the symbol resolving works differently, you have to go through some hoops to resolve boehm-gc symbols, despite the preprocessor guards: That concerns HAVE_GC_SET_FINALIZER_NOTIFIER, HAVE_GC_GET_HEAP_USAGE_SAFE, HAVE_GC_GET_FREE_SPACE_DIVISOR, HAVE_GC_SET_FINALIZE_ON_DEMAND. In guile there are statically defined fallbacks for the respective functions, that cause linker conflicts when statically linked. Those functions probably should be renamed completely to prevent this kind of problem. Then there is also the old problem of the conflicting definitions of struct timespec on MinGW in time.h and pthreads.h. I still have to conditionally define it in stat-time.h and in thread.c - and I can't use HAVE_STRUCT_TIMESPEC as a preprocessor check, it has to be __TIMESPEC_DEFINED. Anything else leads to ugly conflicts, either already at compile time or at link time. Most likely also related to statically linking. The bug #13768 about scm_getpid being used in "--without-posix" builds I have sent already. Also, on mingw the guile-tools/guild copy script can't deal with the .exe ending. I have to configure and make once with --program-suffix=.exe to create the proper script names and files, and then again without, so they can be copied. (or find and copy them by hand between builds) But then on install (processing .texi files) guile.exe fails with this message: "Throw without catch before boot: Throw to key system-error with args ("canonicalize-path" "~A" ("No such file or directory") (2))Aborting. This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information." Calling guile.exe directly gives this message: "Throw without catch before boot: Throw to key misc-error with args ("primitive-load-path" "Unable to find file ~S in load path" ("ice-9/boot-9") #f)Aborting. This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information." When I copy the libguile and the header by hand and then I can build the a program, which does nothing more but calling scm_with_guile and scm_shell, get a popup window with the message: "This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information." So my guess is, that due to some weird path construction in automake (of which the .exe copying trouble is just another symptom), the scheme modules can't be found and built, and thus everything crashes at startup. But trying to figure out what's going on and wrong in an automake build is a major project of its own. Any hints by the experts? Regards Jan Schukat ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-01 16:19 bug#13848: Statically linking guile-2.0 Jan Schukat @ 2013-03-02 15:28 ` Ludovic Courtès 2013-03-03 23:20 ` Jan Schukat 2013-03-05 0:54 ` Jan Schukat 2013-03-09 9:32 ` Andy Wingo 1 sibling, 2 replies; 42+ messages in thread From: Ludovic Courtès @ 2013-03-02 15:28 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848 Hello, Thanks for the report. Jan Schukat <shookie@email.de> skribis: > But then on install (processing .texi files) guile.exe fails with this > message: > > "Throw without catch before boot: > Throw to key system-error with args ("canonicalize-path" "~A" ("No > such file or directory") (2))Aborting. [...] > Calling guile.exe directly gives this message: > > "Throw without catch before boot: > Throw to key misc-error with args ("primitive-load-path" "Unable to > find file ~S in load path" ("ice-9/boot-9") #f)Aborting. Does it happen when running the installed Guile? That is, you successfully run ‘make’ and ‘make install’ (and ideally ‘make check’), and it’s the installed ‘guile’ binary that produces this message? As most Unix and GNU packages, Guile expects to be installed in the place specified by --prefix. If you install it elsewhere, it will fail to find its companion files, such as ice-9/boot-9.scm. So you really must install it in --prefix, and leave it there. Is it what you did? (Note that this restriction can be worked around by techniques such as found in <http://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/patches/guile-relocatable.patch>.) Thanks, Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-02 15:28 ` Ludovic Courtès @ 2013-03-03 23:20 ` Jan Schukat 2013-03-05 0:54 ` Jan Schukat 1 sibling, 0 replies; 42+ messages in thread From: Jan Schukat @ 2013-03-03 23:20 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848 [-- Attachment #1: Type: text/plain, Size: 2333 bytes --] Thank you for the reply! I guess it's best I send you my little test project, which is just a makefile and a different main .cc file for each platform. Although it's work in progress, it makes what I'm doing reproducible and explains it. On 03/02/2013 04:28 PM, Ludovic Courtès wrote: > Hello, > > Thanks for the report. > > Jan Schukat <shookie@email.de> skribis: > >> But then on install (processing .texi files) guile.exe fails with this >> message: >> >> "Throw without catch before boot: >> Throw to key system-error with args ("canonicalize-path" "~A" ("No >> such file or directory") (2))Aborting. > [...] > >> Calling guile.exe directly gives this message: >> >> "Throw without catch before boot: >> Throw to key misc-error with args ("primitive-load-path" "Unable to >> find file ~S in load path" ("ice-9/boot-9") #f)Aborting. > Does it happen when running the installed Guile? That is, you > successfully run ‘make’ and ‘make install’ (and ideally ‘make check’), It's the guile.exe, guild.exe, guile-config.exe and guile-tools.exe in guile-2.0/meta. And when I trick automake into installing (by running it twice, first with --program-suffix=.exe, then without, then the installed files fail, although they are not binaries, but hashbang scripts. Same happens of course when I install the by hand into prefix/bin. I haven't gotten to compile on Linux yet in my build setup since I tried it on windows, because of the linking conflicts with the boehm-GC callbacks. That's what I'm gonna continue with now. > and it’s the installed ‘guile’ binary that produces this message? > > As most Unix and GNU packages, Guile expects to be installed in the > place specified by --prefix. If you install it elsewhere, it will fail > to find its companion files, such as ice-9/boot-9.scm. So you really > must install it in --prefix, and leave it there. Is it what you did? > > (Note that this restriction can be worked around by techniques such as > found in > <http://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/patches/guile-relocatable.patch>.) > > Thanks, > Ludo’. Thank you for the hint. Eventually the binary should look for the scheme libraries relative to the binary position, at least on OSX where they will be placed in the .app directory and Windows. Regards Jan Schukat [-- Attachment #2: guiletest.tgz --] [-- Type: application/x-compressed-tar, Size: 2391 bytes --] ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-02 15:28 ` Ludovic Courtès 2013-03-03 23:20 ` Jan Schukat @ 2013-03-05 0:54 ` Jan Schukat 2013-03-05 10:22 ` Ludovic Courtès 1 sibling, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-03-05 0:54 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848 [-- Attachment #1: Type: text/plain, Size: 6127 bytes --] Ok, I did some more work on the linux and mingw side. My little test project now compiles and works under linux, provided in gc.c I remove the static qualifiers from GC_set_finalize_on_demand, GC_get_heap_usage_safe, GC_get_free_space_divisor and GC_set_finalizer_notifier. That still gave a warning at linking time, but any combination of preprocessor guards caused either compile errors or link errors. Also, when building guile-2.9 with --disable-posix, there comes a lisp-compile error when the standard modules are made: GUILEC ice-9/popen.go Backtrace: In ice-9/eval.scm: 376: 19 [eval # #] In srfi/srfi-1.scm: 619: 18 [for-each #<procedure a389618 at ice-9/eval.scm:405:20 (a)> #] In ice-9/eval.scm: 376: 17 [eval # #] 470: 16 [lp (#<fluid 23>) ("")] In system/base/target.scm: 59: 15 [with-target "i686-pc-linux-gnu" ...] In system/base/compile.scm: 147: 14 [compile-file "ice-9/popen.scm" #:output-file ...] 43: 13 [call-once #<procedure a434b40 at system/base/compile.scm:56:5 ()>] In ice-9/boot-9.scm: 171: 12 [with-throw-handler #t ...] In system/base/compile.scm: 59: 11 [#<procedure a434b20 at system/base/compile.scm:58:9 ()>] 150: 10 [#<procedure a434b60 at system/base/compile.scm:148:8 (port)> #<input-output: ice-9/popen.go.HBtyxJ 6>] 199: 9 [read-and-compile #<input: ice-9/popen.scm 5> #:from ...] 211: 8 [lp (#<tree-il (let # # ...)>) #<directory (ice-9 popen) a4f2a68> ...] 177: 7 [lp (#<procedure compile-tree-il (x e opts)>) (eval-when # #) ...] In ice-9/boot-9.scm: 2131: 6 [save-module-excursion #<procedure a50b9f0 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 5 [#<procedure a50b9f0 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 4 [expand-top-sequence ((eval-when # #)) () ((top)) ...] 976: 3 [scan ((eval-when # #)) () ((top)) ...] 270: 2 [scan ((load-extension # "scm_init_popen")) () ((top)) ...] In unknown file: ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure a434b00 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure a434b00 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-pointer: Symbol not found: scm_init_popen make[3]: *** [ice-9/popen.go] Error 1 make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/module' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 When I leave out that option it (the test project) builds and runs fine on linux now though. On mingw, I still have to define the struct timespec: diff --recursive guile-2.0/lib/stat-time.h guile-2.0.7/lib/stat-time.h 26,32d25 < #ifndef _TIMESPEC_DEFINED < struct timespec { < time_t tv_sec; < long tv_nsec; < }; < #endif < diff --recursive guile-2.0/libguile/random.c guile-2.0.7/libguile/random.c 668c668 < scm_from_ulong(getpid()), /* process ID */ --- > scm_getpid (), /* process ID */ diff --recursive guile-2.0/libguile/threads.c guile-2.0.7/libguile/threads.c 70,75d69 < #ifndef _TIMESPEC_DEFINED < struct timespec { < time_t tv_sec; < long tv_nsec; < }; < #endif With that it builds. When I run it with --program-suffix=.exe it also copies guild.exe (without it fails while trying), but then fails when it tries to run it without the suffix. So I run it again without the --program-suffix, and since the files are copied in the previous build it starts them, but then they fail like this: but then fails installing the lisp modules: GEN guile-procedures.texi Throw without catch before boot: Throw to key system-error with args ("canonicalize-path" "~A" ("No such file or directory") (2))Aborting. This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. make[4]: *** [guile-procedures.texi] Error 1 make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[3]: *** [install] Error 2 make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 I attached the new updated test-project tgz. In summary, I still think on mingw the configure script gets very confused about paths and file names. Regards Jan Schukat On 03/02/2013 04:28 PM, Ludovic Courtès wrote: > Hello, > > Thanks for the report. > > Jan Schukat<shookie@email.de> skribis: > >> But then on install (processing .texi files) guile.exe fails with this >> message: >> >> "Throw without catch before boot: >> Throw to key system-error with args ("canonicalize-path" "~A" ("No >> such file or directory") (2))Aborting. > [...] > >> Calling guile.exe directly gives this message: >> >> "Throw without catch before boot: >> Throw to key misc-error with args ("primitive-load-path" "Unable to >> find file ~S in load path" ("ice-9/boot-9") #f)Aborting. > Does it happen when running the installed Guile? That is, you > successfully run ‘make’ and ‘make install’ (and ideally ‘make check’), > and it’s the installed ‘guile’ binary that produces this message? > > As most Unix and GNU packages, Guile expects to be installed in the > place specified by --prefix. If you install it elsewhere, it will fail > to find its companion files, such as ice-9/boot-9.scm. So you really > must install it in --prefix, and leave it there. Is it what you did? > > (Note that this restriction can be worked around by techniques such as > found in > <http://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/patches/guile-relocatable.patch>.) > > Thanks, > Ludo’. [-- Attachment #2: guiletest.tgz --] [-- Type: application/x-compressed-tar, Size: 2980 bytes --] ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-05 0:54 ` Jan Schukat @ 2013-03-05 10:22 ` Ludovic Courtès 2013-03-05 15:44 ` Jan Schukat 0 siblings, 1 reply; 42+ messages in thread From: Ludovic Courtès @ 2013-03-05 10:22 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848 Hi, Sorry for the delay. Jan Schukat <shookie@email.de> skribis: > ice-9/boot-9.scm:106:20: In procedure #<procedure a434b00 at > ice-9/boot-9.scm:97:6 (thrown-k . args)>: > ice-9/boot-9.scm:106:20: In procedure dynamic-pointer: Symbol not > found: scm_init_popen > make[3]: *** [ice-9/popen.go] Error 1 I see: the (ice-9 popen) module depends on functionality that is missing when building with --disable-posix, so it cannot be built. This is a bug: Guile shouldn’t try to build ice-9/popen.scm when --disable-posix is used. Regarding file names on MinGW, Andy Wingo did a lot of work recently to integrate them correctly. This will be in Guile 2.0.8, but in the meantime could you try building Guile’s ‘stable-2.0’ branch from Git? git clone git://git.sv.gnu.org/guile.git git checkout stable-2.0 autoreconf -vfi ./configure make && make check Thanks in advance, Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-05 10:22 ` Ludovic Courtès @ 2013-03-05 15:44 ` Jan Schukat 2013-03-05 17:25 ` Ludovic Courtès 0 siblings, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-03-05 15:44 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848 Ok, tried that on linux. autoreconf demanded automake 1.12, which isn't available via .debs on ubuntu yet, so I installed that from the sources. after that I get this error message: configure.ac:873: warning: macro 'AM_GNU_GETTEXT' not found in library autoreconf: running: /usr/bin/autoconf --force configure.ac:900: error: possibly undefined macro: AM_GNU_GETTEXT If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. autoreconf: /usr/bin/autoconf failed with exit status: 1 I simply don't know enough about automake internals to even know where to begin to go about such errors. What library would such macros be defined in? And if I knew that, would I even want to do any changes there? Or is that generated from one of the dozens of scripts in the auto toolchain? I wouldn't even know where one might apply that m4_pattern_allow. What I can gather it could also just be a sign of a syntax error in the configure.ac. Regards Jan Schukat On 03/05/2013 11:22 AM, Ludovic Courtès wrote: > Hi, > > Sorry for the delay. > > Jan Schukat <shookie@email.de> skribis: > >> ice-9/boot-9.scm:106:20: In procedure #<procedure a434b00 at >> ice-9/boot-9.scm:97:6 (thrown-k . args)>: >> ice-9/boot-9.scm:106:20: In procedure dynamic-pointer: Symbol not >> found: scm_init_popen >> make[3]: *** [ice-9/popen.go] Error 1 > I see: the (ice-9 popen) module depends on functionality that is missing > when building with --disable-posix, so it cannot be built. This is a > bug: Guile shouldn’t try to build ice-9/popen.scm when --disable-posix > is used. > > Regarding file names on MinGW, Andy Wingo did a lot of work recently to > integrate them correctly. This will be in Guile 2.0.8, but in the > meantime could you try building Guile’s ‘stable-2.0’ branch from Git? > > git clone git://git.sv.gnu.org/guile.git > git checkout stable-2.0 > autoreconf -vfi > ./configure > make && make check > > Thanks in advance, > Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-05 15:44 ` Jan Schukat @ 2013-03-05 17:25 ` Ludovic Courtès 2013-03-05 22:25 ` Jan Schukat 0 siblings, 1 reply; 42+ messages in thread From: Ludovic Courtès @ 2013-03-05 17:25 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848 Jan Schukat <shookie@email.de> skribis: > autoreconf demanded automake 1.12, which isn't available via .debs on > ubuntu yet, so I installed that from the sources. > > after that I get this error message: > > configure.ac:873: warning: macro 'AM_GNU_GETTEXT' not found in library > autoreconf: running: /usr/bin/autoconf --force > configure.ac:900: error: possibly undefined macro: AM_GNU_GETTEXT > If this token and others are legitimate, please use m4_pattern_allow. > See the Autoconf documentation. > autoreconf: /usr/bin/autoconf failed with exit status: 1 You need to install the ‘gettext’ package and re-run autoreconf. Even easier: grab a tarball from <http://hydra.nixos.org/job/gnu/guile-2-0/tarball/latest>. Note that the reason I’m suggesting using the latest 2.0 is to fix file name problems on MinGW. So you can take the tarball from the above URL, and build from there on MinGW. Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-05 17:25 ` Ludovic Courtès @ 2013-03-05 22:25 ` Jan Schukat 2013-03-06 23:12 ` Ludovic Courtès 0 siblings, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-03-05 22:25 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848 Gettext was installed. Actually I don't know any linux distributions where it isn't installed by default. On mingw the latest source snapshot tarball (after taking care of the struct timespec trouble) ends in a compilation error on I can't really make any sense off: SNARF numbers.x numbers.c:7643:5: error: missing binary operator before token "(" Seems to be another I'll handled pre-processor guard. So for now I just get some of my actual work done under linux with the normal 2.0.7 tarball and my mentioned changes and wait for 2.0.8. Then I'll try again and will find some new and some of the same old problems again and go from there and probably write again. And then I'm probably gonna wait for the 2.0.9 tarball with some new and some old problems, and write again. Regards Jan Schukat On 03/05/2013 06:25 PM, Ludovic Courtès wrote: > Jan Schukat<shookie@email.de> skribis: > >> autoreconf demanded automake 1.12, which isn't available via .debs on >> ubuntu yet, so I installed that from the sources. >> >> after that I get this error message: >> >> configure.ac:873: warning: macro 'AM_GNU_GETTEXT' not found in library >> autoreconf: running: /usr/bin/autoconf --force >> configure.ac:900: error: possibly undefined macro: AM_GNU_GETTEXT >> If this token and others are legitimate, please use m4_pattern_allow. >> See the Autoconf documentation. >> autoreconf: /usr/bin/autoconf failed with exit status: 1 > You need to install the ‘gettext’ package and re-run autoreconf. > > Even easier: grab a tarball from > <http://hydra.nixos.org/job/gnu/guile-2-0/tarball/latest>. > > Note that the reason I’m suggesting using the latest 2.0 is to fix file > name problems on MinGW. So you can take the tarball from the above URL, > and build from there on MinGW. > > Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-05 22:25 ` Jan Schukat @ 2013-03-06 23:12 ` Ludovic Courtès 2013-03-09 13:44 ` Jan Schukat 0 siblings, 1 reply; 42+ messages in thread From: Ludovic Courtès @ 2013-03-06 23:12 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848 Jan Schukat <shookie@email.de> skribis: > On mingw the latest source snapshot tarball (after taking care of the > struct timespec trouble) ends in a compilation error on I can't really > make any sense off: > > SNARF numbers.x > numbers.c:7643:5: error: missing binary operator before token "(" This is fixed by commit 6db7ee7 of the ‘stable-2.0’ branch (it will be in 2.0.8). Can you try from a tarball at <http://hydra.nixos.org/job/gnu/guile-2-0/tarball/latest/download>? (Wait for an hour so that the build farm has time to catch up.) Thanks, Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-06 23:12 ` Ludovic Courtès @ 2013-03-09 13:44 ` Jan Schukat 2013-03-09 23:06 ` Andy Wingo 0 siblings, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-03-09 13:44 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848 Sorry for the long time waiting. As I said, I had to get some real work done. Just tried it again on windows/mingw with the newer tarball: http://hydra.nixos.org/build/4290536/download/3/guile-2.0.7.157-929d1.tar.gz This one to be exact. On windows7 with mingw this is the result: checking for gcc... gcc checking whether the C compiler works... no configure: error: in `/c/Users/shookie/guiletest/lib/guile-2.0': configure: error: C compiler cannot create executables See `config.log' for more details make: *** [lib/lib/libguile-2.0.a] Error 77 and config.log says: configure:5226: $? = 0 configure:5215: gcc -v >&5 Using built-in specs. COLLECT_GCC=C:\MinGW\bin\gcc.exe COLLECT_LTO_WRAPPER=c:/mingw/bin/../libexec/gcc/mingw32/4.7.2/lto-wrapper.exe Target: mingw32 Configured with: ../gcc-4.7.2/configure --enable-languages=c,c++,ada,fortran,objc,obj-c++ --disable-sjlj-exceptions --with-dwarf2 --enable-shared --enable-libgomp --disable-win32-registry --enable-libstdcxx-debug --disable-build-poststage1-with-cxx --enable-version-specific-runtime-libs --build=mingw32 --prefix=/mingw Thread model: win32 gcc version 4.7.2 (GCC) configure:5226: $? = 0 configure:5215: gcc -V >&5 gcc.exe: error: unrecognized command line option '-V' gcc.exe: fatal error: no input files compilation terminated. Regards Jan Schukat On 03/07/2013 12:12 AM, Ludovic Courtès wrote: > Jan Schukat <shookie@email.de> skribis: > >> On mingw the latest source snapshot tarball (after taking care of the >> struct timespec trouble) ends in a compilation error on I can't really >> make any sense off: >> >> SNARF numbers.x >> numbers.c:7643:5: error: missing binary operator before token "(" > This is fixed by commit 6db7ee7 of the ‘stable-2.0’ branch (it will be > in 2.0.8). Can you try from a tarball at > <http://hydra.nixos.org/job/gnu/guile-2-0/tarball/latest/download>? > (Wait for an hour so that the build farm has time to catch up.) > > Thanks, > Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-09 13:44 ` Jan Schukat @ 2013-03-09 23:06 ` Andy Wingo 2013-03-09 23:57 ` shookie ` (4 more replies) 0 siblings, 5 replies; 42+ messages in thread From: Andy Wingo @ 2013-03-09 23:06 UTC (permalink / raw) To: Jan Schukat; +Cc: Ludovic Courtès, 13848 On Sat 09 Mar 2013 14:44, Jan Schukat <shookie@email.de> writes: > Just tried it again on windows/mingw with the newer tarball: > > http://hydra.nixos.org/build/4290536/download/3/guile-2.0.7.157-929d1.tar.gz FWIW it seems hydra is totally down right now; of course that would happen as soon as ludo goes on holiday ;) Here is a tarball I just generated from make dist: http://wingolog.org/priv/guile-2.0.7.179-94c5.tar.gz > checking for gcc... gcc > checking whether the C compiler works... no > configure: error: in `/c/Users/shookie/guiletest/lib/guile-2.0': > configure: error: C compiler cannot create executables No idea what is happening here, this looks like a problem on your side. I fixed a bunch of things today. BTW are you using the old mingw or are you using mingw32 or mingw64? It seems that the mingw64 project (which provides both 32- and 64-bit builds) is the current thing, but I don't really know. Anyway, please give the new tarball a roll and see how it works for you. Be sure to have a relatively new mingw. I built everything myself, with all default options (except --enable-threads=pthreads in bdw-gc, and enabling dynamic builds in gmp), and it builds with only some warnings about iconv (filed with gnulib). I can't get it to run under wine however, and that must mean something is pretty wrong... Happy hacking, Andy -- http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-09 23:06 ` Andy Wingo @ 2013-03-09 23:57 ` shookie 2013-03-10 4:09 ` shookie ` (3 subsequent siblings) 4 siblings, 0 replies; 42+ messages in thread From: shookie @ 2013-03-09 23:57 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 Oh, a present :) On 10.03.2013, at 00:06, Andy Wingo <wingo@pobox.com> wrote: > On Sat 09 Mar 2013 14:44, Jan Schukat <shookie@email.de> writes: > >> Just tried it again on windows/mingw with the newer tarball: >> >> http://hydra.nixos.org/build/4290536/download/3/guile-2.0.7.157-929d1.tar.gz > > FWIW it seems hydra is totally down right now; of course that would > happen as soon as ludo goes on holiday ;) > > Here is a tarball I just generated from make dist: > > http://wingolog.org/priv/guile-2.0.7.179-94c5.tar.gz Will do that at some point tonight. > >> checking for gcc... gcc >> checking whether the C compiler works... no >> configure: error: in `/c/Users/shookie/guiletest/lib/guile-2.0': >> configure: error: C compiler cannot create executables > > No idea what is happening here, this looks like a problem on your side. Don't really see how, considering the old tar balls didn't have that problem and that the log file definitely says that gcc gets called with a command line option (-V) that would be illegal on any platform. > > I fixed a bunch of things today. BTW are you using the old mingw or are > you using mingw32 or mingw64? It seems that the mingw64 project (which > provides both 32- and 64-bit builds) is the current thing, but I don't > really know. > I'm using standard mingw/msys for this, those have gcc 4.7 already. All the compilers in cygwin (mingw or not) are still stuck at 4.5. And I assume all other packages lack similarly behind. > Anyway, please give the new tarball a roll and see how it works for you. > Be sure to have a relatively new mingw. I built everything myself, with > all default options (except --enable-threads=pthreads in bdw-gc, and > enabling dynamic builds in gmp), and it builds with only some warnings > about iconv (filed with gnulib). I can't get it to run under wine > however, and that must mean something is pretty wrong... > > Happy hacking, > > Andy > -- > http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-09 23:06 ` Andy Wingo 2013-03-09 23:57 ` shookie @ 2013-03-10 4:09 ` shookie 2013-03-10 17:32 ` Andy Wingo 2013-03-10 17:38 ` shookie ` (2 subsequent siblings) 4 siblings, 1 reply; 42+ messages in thread From: shookie @ 2013-03-10 4:09 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 Ok, tried the windows builds again. The struct timespec is still an issue in a mingw build on windows, but I know how to handle it. On 10.03.2013, at 00:06, Andy Wingo <wingo@pobox.com> wrote: > On Sat 09 Mar 2013 14:44, Jan Schukat <shookie@email.de> writes: > >> Just tried it again on windows/mingw with the newer tarball: >> >> http://hydra.nixos.org/build/4290536/download/3/guile-2.0.7.157-929d1.tar.gz > > FWIW it seems hydra is totally down right now; of course that would > happen as soon as ludo goes on holiday ;) > > Here is a tarball I just generated from make dist: > > http://wingolog.org/priv/guile-2.0.7.179-94c5.tar.gz > >> checking for gcc... gcc >> checking whether the C compiler works... no >> configure: error: in `/c/Users/shookie/guiletest/lib/guile-2.0': >> configure: error: C compiler cannot create executables > > No idea what is happening here, this looks like a problem on your side. Ok, contrary to what I thought earlier, that was actually on my side: I set -rdynamic in the CFLAGS environment variable, because that is needed for the deadline module to work on linux. I guess I need to treat that differently too on each platform. > > I fixed a bunch of things today. BTW are you using the old mingw or are > you using mingw32 or mingw64? It seems that the mingw64 project (which > provides both 32- and 64-bit builds) is the current thing, but I don't > really know. > The paths don't seem to be a problem anymore. Great. > Anyway, please give the new tarball a roll and see how it works for you. > Be sure to have a relatively new mingw. I built everything myself, with > all default options (except --enable-threads=pthreads in bdw-gc, and > enabling dynamic builds in gmp), and it builds with only some warnings > about iconv (filed with gnulib). I can't get it to run under wine > however, and that must mean something is pretty wrong... > > Happy hacking, > > Andy > -- > http://wingolog.org/ As I said, I build everything on windows. I have to build bdw-gc with --enable-threads=posix. If I don't, I get errors along this line: ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0xfb8): undefined reference to `GC_pthread_detach' ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x10de): undefined reference to `GC_pthread_create' ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x1221): undefined reference to `GC_pthread_detach' ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x12d1): undefined reference to `GC_pthread_create' The problem is, when I do build bdw-gc with posix threads, the guile module compiling is all broken, it periodically drops messages like this: GUILEC ice-9/eval.go Backtrace: In unknown file: ?: 3 [apply-smob/1 #<boot-closure 192c100 (_ _ _)> #t ...] ?: 2 [apply-smob/1 #<catch-closure 1ccee70>] ?: 1 [primitive-eval ((@ # %) (begin # # #))] ?: 0 [chmod #<closed: file 0> 438] and it takes ages an ages. Builds on windows are not very fast in the first place, but I stopped the build after it go stuck at building vlist for half an hour. I'm gonna start another build like that and see what it looks like when I wake up. BTW, have you tried to execute any of the guile cross-comiles you made on a windows machine? Regards Jan Schukat ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-10 4:09 ` shookie @ 2013-03-10 17:32 ` Andy Wingo 2013-03-10 18:54 ` shookie 2013-03-10 19:23 ` Andy Wingo 0 siblings, 2 replies; 42+ messages in thread From: Andy Wingo @ 2013-03-10 17:32 UTC (permalink / raw) To: shookie; +Cc: Ludovic Courtès, 13848 Hi :) On Sun 10 Mar 2013 05:09, shookie@email.de writes: > The struct timespec is still an issue in a mingw build on windows, but > I know how to handle it. How do you handle it, for the record? I assume you are using pthreads-w32? > As I said, I build everything on windows. > > I have to build bdw-gc with --enable-threads=posix. If I don't, I get errors along this line: > > ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0xfb8): undefined reference to `GC_pthread_detach' > ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x10de): undefined reference to `GC_pthread_create' > ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x1221): undefined reference to `GC_pthread_detach' > ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x12d1): undefined reference to `GC_pthread_create' You can build bdw-gc without threads, and then build Guile without threads. In my builds I was doing --enable-threads=posix. > The problem is, when I do build bdw-gc with posix threads, the guile > module compiling is all broken, it periodically drops messages like > this: > > GUILEC ice-9/eval.go > Backtrace: > In unknown file: > ?: 3 [apply-smob/1 #<boot-closure 192c100 (_ _ _)> #t ...] > ?: 2 [apply-smob/1 #<catch-closure 1ccee70>] > ?: 1 [primitive-eval ((@ # %) (begin # # #))] > ?: 0 [chmod #<closed: file 0> 438] You passed the `GEN guile-procedures.texi' phase? If so, things are already going well. That's the first time the newly built Guile is used, and if it went through it means at least you have a functional Guile. This problem sounds similar to something Eli Zaretskii reported: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10474#14: The next problem is here: GUILEC ice-9/eval.go Backtrace: In unknown file: ?: 5 [boot-closure #t #<catch-closure 231fd40> ...] ?: 4 [catch-closure] ?: 3 [primitive-eval ((@ # %) (begin # # #))] ?: 2 [chmod #<input-output: ice-9/eval.go.9IiPxC 6> 438] ?: 1 [boot-closure system-error "chmod" ...] ?: 0 [delete-file "ice-9/eval.go.9IiPxC"] ERROR: In procedure delete-file: ERROR: In procedure delete-file: Permission denied This happens because Guile calls fchmod, which is #define'd to -1 on MinGW. However the code is different now, than it was when Eli made his report; now if you don't have fchmod (as mingw does not), chmod only accepts strings -- and here it seems that we are trying to chmod a port. I will see what I can do here. > BTW, have you tried to execute any of the guile cross-comiles you made > on a windows machine? No I have not. I would like to do so, but am not really equipped for it at the moment. Your feedback here is really appreciated, thanks :) Andy -- http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-10 17:32 ` Andy Wingo @ 2013-03-10 18:54 ` shookie 2013-03-10 19:23 ` Andy Wingo 1 sibling, 0 replies; 42+ messages in thread From: shookie @ 2013-03-10 18:54 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 On 10.03.2013, at 18:32, Andy Wingo <wingo@pobox.com> wrote: > Hi :) > > On Sun 10 Mar 2013 05:09, shookie@email.de writes: > >> The struct timespec is still an issue in a mingw build on windows, but >> I know how to handle it. > > How do you handle it, for the record? by adding #ifndef _TIMESPEC_DEFINED struct timespec { time_t tv_sec; long tv_nsec; }; #endif to lib/stat-time.h and libguile/threads.c. Don't particularly like it, but that's what works. If you don't wanna make that part of the main source tree, I got no problem making a patch part of my build process. I gotta do some patching anyway to be able to have relative/runtime initialized load paths on windows. > > I assume you are using pthreads-w32? /* This is an implementation of the threads API of POSIX 1003.1-2001. * * -------------------------------------------------------------------------- * * Pthreads-win32 - POSIX Threads Library for Win32 * Copyright(C) 1998 John E. Bossom * Copyright(C) 1999,2005 Pthreads-win32 contributors * * Contact Email: rpj@callisto.canberra.edu.au That's what the pthread.h says. > >> As I said, I build everything on windows. >> >> I have to build bdw-gc with --enable-threads=posix. If I don't, I get errors along this line: >> >> ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0xfb8): undefined reference to `GC_pthread_detach' >> ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x10de): undefined reference to `GC_pthread_create' >> ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x1221): undefined reference to `GC_pthread_detach' >> ./.libs/libguile-2.0.a(libguile_2.0_la-threads.o):threads.c:(.text+0x12d1): undefined reference to `GC_pthread_create' > > You can build bdw-gc without threads, and then build Guile without > threads. In my builds I was doing --enable-threads=posix. > >> The problem is, when I do build bdw-gc with posix threads, the guile >> module compiling is all broken, it periodically drops messages like >> this: >> >> GUILEC ice-9/eval.go >> Backtrace: >> In unknown file: >> ?: 3 [apply-smob/1 #<boot-closure 192c100 (_ _ _)> #t ...] >> ?: 2 [apply-smob/1 #<catch-closure 1ccee70>] >> ?: 1 [primitive-eval ((@ # %) (begin # # #))] >> ?: 0 [chmod #<closed: file 0> 438] > > You passed the `GEN guile-procedures.texi' phase? If so, things are > already going well. That's the first time the newly built Guile is > used, and if it went through it means at least you have a functional > Guile. > > This problem sounds similar to something Eli Zaretskii reported: > http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10474#14: > > The next problem is here: > > GUILEC ice-9/eval.go > Backtrace: > In unknown file: > ?: 5 [boot-closure #t #<catch-closure 231fd40> ...] > ?: 4 [catch-closure] > ?: 3 [primitive-eval ((@ # %) (begin # # #))] > ?: 2 [chmod #<input-output: ice-9/eval.go.9IiPxC 6> 438] > ?: 1 [boot-closure system-error "chmod" ...] > ?: 0 [delete-file "ice-9/eval.go.9IiPxC"] > > ERROR: In procedure delete-file: > ERROR: In procedure delete-file: Permission denied > > This happens because Guile calls fchmod, which is #define'd to -1 on > MinGW. > > However the code is different now, than it was when Eli made his report; > now if you don't have fchmod (as mingw does not), chmod only accepts > strings -- and here it seems that we are trying to chmod a port. I will > see what I can do here. Sounds promising! Regards Jan Schukat P.S. I guess I append some more info, namely my configure command line, and the most interesting build output section (after that its mostly backtraces from guile compiling): ./configure --prefix=/c/Users/shookie/guiletest/lib --disable-shared --disable-fast-install --with-gnu-ld --disable-deprecated --enable-nls --with-libgmp-prefix=/c/Users/shookie/guiletest/lib LIBFFI_CFLAGS='-I/c/Use rs/shookie/guiletest/lib/lib/libffi-3.0.12/include' LIBFFI_LIBS='-lffi' BDW_GC_LIBS='-lgc' BDW_GC_CFLAGS='-I/c/Users/shookie/guiletest/lib' CPPFLAGS='-D HAVE_GC_SET_FINALIZER_NOTIFIER -D HAVE_GC_GET_FREE_SPACE_DIVISOR -D HAVE_GC_GET_HEAP _USAGE_SAFE -D HAVE_GC_SET_FINALIZE_ON_DEMAND' CFLAGS='-s' && make install …. CC libguile_2.0_la-threads.lo threads.c: In function 'scm_pthread_cond_timedwait': threads.c:2006:3: warning: passing argument 3 of 'pthread_cond_timedwait' from incompatible pointer type [enabled by default] In file included from ../lib/time.h:369:0, from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/sys/time.h:3, from ../lib/sys/time.h:30, from ../libguile/scmconfig.h:26, from ../libguile/bdw-gc.h:24, from threads.c:27: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/pthread.h:1097:31: note: expected 'const struct timespec *' but argument is of type 'const struct scm_t_timespec *' CC libguile_2.0_la-throw.lo CC libguile_2.0_la-trees.lo CC libguile_2.0_la-uniform.lo CC libguile_2.0_la-values.lo CC libguile_2.0_la-variable.lo CC libguile_2.0_la-vectors.lo CC libguile_2.0_la-version.lo CC libguile_2.0_la-vm.lo CC libguile_2.0_la-vports.lo CC libguile_2.0_la-weaks.lo CCLD libguile-2.0.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. copying selected object files to avoid basename conflicts... CC guile-guile.o CCLD guile.exe libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. GEN guile-procedures.texi rm -f guile-procedures.txt makeinfo --force -o guile-procedures.txt guile-procedures.texi || test -f guile-procedures.txt /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:10246: Cross reference to nonexistent node `Backslash Escapes' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9941: Cross reference to nonexistent node `Network Address Conversion' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9880: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9830: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9304: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9297: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9290: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9204: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8569: Cross reference to nonexistent node `Vtables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8187: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8006: Cross reference to nonexistent node `Bitwise Operations' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6697: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6675: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6619: Cross reference to nonexistent node `Multiple Values' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5563: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5272: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5261: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5250: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3319: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3126: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2797: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2790: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2783: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2213: Cross reference to nonexistent node `Character Encoding of Source Files' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2207: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2189: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:1575: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:1563: Cross reference to nonexistent node `Closing' (perhaps incorrect sectioning?). make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/user/guiletest/lib/lib' ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-10 17:32 ` Andy Wingo 2013-03-10 18:54 ` shookie @ 2013-03-10 19:23 ` Andy Wingo 2013-03-10 21:17 ` shookie 2013-03-10 22:03 ` shookie 1 sibling, 2 replies; 42+ messages in thread From: Andy Wingo @ 2013-03-10 19:23 UTC (permalink / raw) To: shookie; +Cc: Ludovic Courtès, 13848 On Sun 10 Mar 2013 18:32, Andy Wingo <wingo@pobox.com> writes: >> The problem is, when I do build bdw-gc with posix threads, the guile >> module compiling is all broken, it periodically drops messages like >> this: >> >> GUILEC ice-9/eval.go >> Backtrace: >> In unknown file: >> ?: 3 [apply-smob/1 #<boot-closure 192c100 (_ _ _)> #t ...] >> ?: 2 [apply-smob/1 #<catch-closure 1ccee70>] >> ?: 1 [primitive-eval ((@ # %) (begin # # #))] >> ?: 0 [chmod #<closed: file 0> 438] I have made what might be a fix for this issue. Can you try this tarball: http://wingolog.org/priv/guile-2.0.7.182-e9381.tar.gz Thanks, Andy -- http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-10 19:23 ` Andy Wingo @ 2013-03-10 21:17 ` shookie 2013-03-10 22:03 ` shookie 1 sibling, 0 replies; 42+ messages in thread From: shookie @ 2013-03-10 21:17 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 I immediately tried it. And after the time spec fixes it looks good so far. The first few GUILECs came through without a hitch. It takes ages though. So might be a while until you hear from me gain. Regards Jan Schukat On 10.03.2013, at 20:23, Andy Wingo <wingo@pobox.com> wrote: > On Sun 10 Mar 2013 18:32, Andy Wingo <wingo@pobox.com> writes: > >>> The problem is, when I do build bdw-gc with posix threads, the guile >>> module compiling is all broken, it periodically drops messages like >>> this: >>> >>> GUILEC ice-9/eval.go >>> Backtrace: >>> In unknown file: >>> ?: 3 [apply-smob/1 #<boot-closure 192c100 (_ _ _)> #t ...] >>> ?: 2 [apply-smob/1 #<catch-closure 1ccee70>] >>> ?: 1 [primitive-eval ((@ # %) (begin # # #))] >>> ?: 0 [chmod #<closed: file 0> 438] > > I have made what might be a fix for this issue. Can you try this > tarball: > > http://wingolog.org/priv/guile-2.0.7.182-e9381.tar.gz > > Thanks, > > Andy > -- > http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-10 19:23 ` Andy Wingo 2013-03-10 21:17 ` shookie @ 2013-03-10 22:03 ` shookie 2013-03-10 22:53 ` Andy Wingo 1 sibling, 1 reply; 42+ messages in thread From: shookie @ 2013-03-10 22:03 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 Ok, came pretty far, but then, during the GUILEC phase it started complaining that "poll" is not available, poll.go was't created then, and finally it failed to install poll.go Here's the log. I tried it both with and without posix and threads enabled. wrote `web/server.go' GUILEC web/server/http.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 1f1e400 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: web/server/http.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g96}#) 1f5e900>] 180: 16 [lp (#<procedure compile-tree-il (x e opts)>) (define-module # # ...) ...] In ice-9/boot-9.scm: 2191: 15 [save-module-excursion #<procedure 21348e8 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 21348e8 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # # # ...)) () ((top)) ...] 976: 12 [scan ((define-module (web server http) #:use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2741: 9 [define-module* (web server http) #:filename ...] 2716: 8 [resolve-imports ((# # #) (#) (#) (#) ...)] 2654: 7 [resolve-interface (ice-9 poll) #:select ...] 2579: 6 [#<procedure 1d54f70 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 poll) #f] 2191: 4 [save-module-excursion #<procedure 21cde70 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 21cde70 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\poll" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_poll"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1f1e3a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1f1e3a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure %init-poll: `poll' unavailable on this platform GUILEC web/uri.go wrote `web/uri.go' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' make[4]: Nothing to be done for `install-exec-am'. GUILEC ice-9/poll.go Backtrace: In ice-9/eval.scm: 432: 19 [eval # #] 387: 18 [eval # #] In srfi/srfi-1.scm: 619: 17 [for-each #<procedure 1f10ac0 at scripts/compile.scm:179:14 (file)> #] In scripts/compile.scm: 182: 16 [#<procedure 1f10ac0 at scripts/compile.scm:179:14 (file)> "ice-9/poll.scm"] In system/base/target.scm: 59: 15 [with-target "i686-pc-mingw32" ...] In system/base/compile.scm: 150: 14 [compile-file "ice-9/poll.scm" #:output-file ...] 43: 13 [call-once #<procedure 1f103e0 at system/base/compile.scm:56:5 ()>] In ice-9/boot-9.scm: 171: 12 [with-throw-handler #t ...] In system/base/compile.scm: 59: 11 [#<procedure 1f103c0 at system/base/compile.scm:58:9 ()>] 153: 10 [#<procedure 1f10400 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 9 [read-and-compile #<input: ice-9/poll.scm 5> #:from ...] 232: 8 [lp (#<tree-il (let # # ...)>) #<directory (ice-9 poll) 214ddc8> ...] 180: 7 [lp (#<procedure compile-tree-il (x e opts)>) (eval-when # #) ...] In ice-9/boot-9.scm: 2191: 6 [save-module-excursion #<procedure 2158c18 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 5 [#<procedure 2158c18 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 4 [expand-top-sequence ((eval-when # #)) () ((top)) ...] 976: 3 [scan ((eval-when # #)) () ((top)) ...] 270: 2 [scan ((load-extension # "scm_init_poll")) () ((top)) ...] In unknown file: ?: 1 [load-extension "libguile-2.0" "scm_init_poll"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1f103a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1f103a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure %init-poll: `poll' unavailable on this platform GUILEC scripts/autofrisk.go Backtrace: In ice-9/psyntax.scm: 1101: 19 [expand-top-sequence ((define (unglob pattern) (let # #))) () ...] 1259: 18 [#<procedure 2181540 at ice-9/psyntax.scm:1067:36 ()>] 1605: 17 [expand-simple-lambda (# . #) () (()) ...] 1509: 16 [parse (((# #) . #(syntax-object # # #))) () () () () () ()] In ice-9/boot-9.scm: 627: 15 [map #<procedure 21add50 at ice-9/psyntax.scm:1510:50 (x)> ((# . #))] In ice-9/psyntax.scm: 2114: 14 [expand-let (let # #) (# #) (# # #) ...] In ice-9/boot-9.scm: 627: 13 [map #<procedure 21acf20 at ice-9/psyntax.scm:2114:49 (x)> (#)] In ice-9/psyntax.scm: 1257: 12 [#<procedure 21acf20 at ice-9/psyntax.scm:2114:49 (x)> (open-input-pipe #)] 1186: 11 [syntax-type (open-input-pipe #) (# #) (# # #) ...] 579: 10 [syntax-type open-input-pipe (# #) (# # #) ...] 292: 9 [get-global-definition-hook open-input-pipe (hygiene scripts autofrisk)] In unknown file: ?: 8 [module-variable #<directory (scripts autofrisk) 214ddc8> open-input-pipe] In ice-9/boot-9.scm: 2790: 7 [b #<autoload (ice-9 popen) 214d6c0> open-input-pipe #f] 2579: 6 [#<procedure 1d53f50 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 popen) #f] 2191: 4 [save-module-excursion #<procedure 21adc60 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 21adc60 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1f103a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1f103a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." GUILEC scripts/scan-api.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 1f10400 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: scripts/scan-api.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g96}#) 1f51900>] 180: 16 [lp # # # ...] In ice-9/boot-9.scm: 2191: 15 [save-module-excursion #<procedure 2107840 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 2107840 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # :use-module # ...)) () ((top)) ...] 976: 12 [scan ((define-module (scripts scan-api) :use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2741: 9 [define-module* (scripts scan-api) #:filename ...] 2716: 8 [resolve-imports (((ice-9 popen)) ((ice-9 rdelim)) ((ice-9 regex)))] 2654: 7 [resolve-interface (ice-9 popen) #:select ...] 2579: 6 [#<procedure 1d53f70 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 popen) #f] 2191: 4 [save-module-excursion #<procedure 2134108 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 2134108 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1f103a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1f103a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." GUILEC web/server/http.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 1f1b400 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: web/server/http.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g96}#) 1f5b900>] 180: 16 [lp (#<procedure compile-tree-il (x e opts)>) (define-module # # ...) ...] In ice-9/boot-9.scm: 2191: 15 [save-module-excursion #<procedure 2112960 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 2112960 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # # # ...)) () ((top)) ...] 976: 12 [scan ((define-module (web server http) #:use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2741: 9 [define-module* (web server http) #:filename ...] 2716: 8 [resolve-imports ((# # #) (#) (#) (#) ...)] 2654: 7 [resolve-interface (ice-9 poll) #:select ...] 2579: 6 [#<procedure 1d53f60 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 poll) #f] 2191: 4 [save-module-excursion #<procedure 2304db0 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 2304db0 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\poll" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_poll"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1f1b3a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1f1b3a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure %init-poll: `poll' unavailable on this platform /bin/install -c -m 644 ice-9/psyntax-pp.go ice-9/boot-9.go ice-9/vlist.go ice-9/r4rs.go ice-9/r5rs.go ice-9/deprecated.go ice-9/and-let-star.go ice-9/binary-ports.go ice-9/calling.go ice-9/command-line.go ice-9/common-list.go ice-9/con trol.go ice-9/curried-definitions.go ice-9/debug.go ice-9/documentation.go ice-9/eval-string.go ice-9/expect.go ice-9/format.go ice-9/futures.go ice-9/getopt-long.go ice-9/hcons.go ice-9/i18n.go ice-9/iconv.go ice-9/lineio.go ice-9/ls.go ice-9/mapping.go ice-9/match.go ice-9/networking.go ice-9/null.go ice-9/occam-channel.go ice-9/optargs.go ice-9/poe.go ./ice-9/poll.go ice-9/posix.go ice-9/q.go ice-9/rdelim.go ice-9/receive.go ice-9/regex.go ice-9/runq.go ice-9/rw.go ' /c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' /bin/install: cannot stat `./ice-9/poll.go': No such file or directory make[4]: *** [install-nobase_ccacheDATA] Error 1 make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' make[3]: *** [install-am] Error 2 make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 On 10.03.2013, at 20:23, Andy Wingo <wingo@pobox.com> wrote: > On Sun 10 Mar 2013 18:32, Andy Wingo <wingo@pobox.com> writes: > >>> The problem is, when I do build bdw-gc with posix threads, the guile >>> module compiling is all broken, it periodically drops messages like >>> this: >>> >>> GUILEC ice-9/eval.go >>> Backtrace: >>> In unknown file: >>> ?: 3 [apply-smob/1 #<boot-closure 192c100 (_ _ _)> #t ...] >>> ?: 2 [apply-smob/1 #<catch-closure 1ccee70>] >>> ?: 1 [primitive-eval ((@ # %) (begin # # #))] >>> ?: 0 [chmod #<closed: file 0> 438] > > I have made what might be a fix for this issue. Can you try this > tarball: > > http://wingolog.org/priv/guile-2.0.7.182-e9381.tar.gz > > Thanks, > > Andy > -- > http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-10 22:03 ` shookie @ 2013-03-10 22:53 ` Andy Wingo 2013-03-11 0:07 ` shookie 2013-03-11 1:43 ` shookie 0 siblings, 2 replies; 42+ messages in thread From: Andy Wingo @ 2013-03-10 22:53 UTC (permalink / raw) To: shookie; +Cc: Ludovic Courtès, 13848 On Sun 10 Mar 2013 23:03, shookie@email.de writes: > Ok, came pretty far, but then, during the GUILEC phase it started > complaining that "poll" is not available, poll.go was't created then, > and finally it failed to install poll.go Strange. There are a few ways to work around this I guess but I ended up importing the gnulib `poll' module, which will provide `poll' on mingw. Here's a new tarball: http://wingolog.org/priv/guile-2.0.7.187-b5870.tar.gz I wonder about your compile slowness. Could it be that somehow Guile is not using the .go files that it is compiling? Normally the compile should be slow at the beginning, but as the bootstrap progresses, things speed up. I'm sure you've seen that when building on GNU/Linux. Do you not see that on your mingw build? It sounds like we're getting really close :) Andy -- http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-10 22:53 ` Andy Wingo @ 2013-03-11 0:07 ` shookie 2013-03-11 1:43 ` shookie 1 sibling, 0 replies; 42+ messages in thread From: shookie @ 2013-03-11 0:07 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 It does get faster with time on windows too, yes, but it is overall about 3 times slower than linux compiles. But that's true for all the compiling I do on windows. Even VC projects tend to really slow compared to what I see on Linux (it is the same machine in dual boot). My guess is that this is primarily for IO reasons. There are a lot more tricks like pipes and the like that gcc and make can use on true posix systems. I will try the new tar ball right now. You'll hear from me. Regards Jan Schukat On 10.03.2013, at 23:53, Andy Wingo <wingo@pobox.com> wrote: > On Sun 10 Mar 2013 23:03, shookie@email.de writes: > >> Ok, came pretty far, but then, during the GUILEC phase it started >> complaining that "poll" is not available, poll.go was't created then, >> and finally it failed to install poll.go > > Strange. There are a few ways to work around this I guess but I ended > up importing the gnulib `poll' module, which will provide `poll' on > mingw. > > Here's a new tarball: > > http://wingolog.org/priv/guile-2.0.7.187-b5870.tar.gz > > I wonder about your compile slowness. Could it be that somehow Guile is > not using the .go files that it is compiling? Normally the compile > should be slow at the beginning, but as the bootstrap progresses, things > speed up. I'm sure you've seen that when building on GNU/Linux. Do you > not see that on your mingw build? > > It sounds like we're getting really close :) > > Andy > -- > http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-10 22:53 ` Andy Wingo 2013-03-11 0:07 ` shookie @ 2013-03-11 1:43 ` shookie 2013-03-11 8:26 ` Andy Wingo 1 sibling, 1 reply; 42+ messages in thread From: shookie @ 2013-03-11 1:43 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 Ok, another build that got a little further. Again, after putting my two timespec definitions in. The next GUILEC to fail is this one, happens regardless of whether posix is enabled or disabled in configure: GUILEC scripts/autofrisk.go Backtrace: In ice-9/psyntax.scm: 1101: 19 [expand-top-sequence ((define (unglob pattern) (let # #))) () ...] 1259: 18 [#<procedure 2205150 at ice-9/psyntax.scm:1067:36 ()>] 1605: 17 [expand-simple-lambda (# . #) () (()) ...] 1509: 16 [parse (((# #) . #(syntax-object # # #))) () () () () () ()] In ice-9/boot-9.scm: 627: 15 [map #<procedure 223e8d0 at ice-9/psyntax.scm:1510:50 (x)> ((# . #))] In ice-9/psyntax.scm: 2114: 14 [expand-let (let # #) (# #) (# # #) ...] In ice-9/boot-9.scm: 627: 13 [map #<procedure 223ab20 at ice-9/psyntax.scm:2114:49 (x)> (#)] In ice-9/psyntax.scm: 1257: 12 [#<procedure 223ab20 at ice-9/psyntax.scm:2114:49 (x)> (open-input-pipe #)] 1186: 11 [syntax-type (open-input-pipe #) (# #) (# # #) ...] 579: 10 [syntax-type open-input-pipe (# #) (# # #) ...] 292: 9 [get-global-definition-hook open-input-pipe (hygiene scripts autofrisk)] In unknown file: ?: 8 [module-variable #<directory (scripts autofrisk) 2184d80> open-input-pipe] In ice-9/boot-9.scm: 2790: 7 [b #<autoload (ice-9 popen) 2216d80> open-input-pipe #f] 2579: 6 [#<procedure 1d05530 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 popen) #f] 2191: 4 [save-module-excursion #<procedure 223e7e0 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 223e7e0 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 200ace0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 200ace0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." make[3]: *** [scripts/autofrisk.go] Error 1 make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 On 10.03.2013, at 23:53, Andy Wingo <wingo@pobox.com> wrote: > On Sun 10 Mar 2013 23:03, shookie@email.de writes: > >> Ok, came pretty far, but then, during the GUILEC phase it started >> complaining that "poll" is not available, poll.go was't created then, >> and finally it failed to install poll.go > > Strange. There are a few ways to work around this I guess but I ended > up importing the gnulib `poll' module, which will provide `poll' on > mingw. > > Here's a new tarball: > > http://wingolog.org/priv/guile-2.0.7.187-b5870.tar.gz > > I wonder about your compile slowness. Could it be that somehow Guile is > not using the .go files that it is compiling? Normally the compile > should be slow at the beginning, but as the bootstrap progresses, things > speed up. I'm sure you've seen that when building on GNU/Linux. Do you > not see that on your mingw build? > > It sounds like we're getting really close :) > > Andy > -- > http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-11 1:43 ` shookie @ 2013-03-11 8:26 ` Andy Wingo 2013-03-11 9:30 ` shookie 0 siblings, 1 reply; 42+ messages in thread From: Andy Wingo @ 2013-03-11 8:26 UTC (permalink / raw) To: shookie; +Cc: Ludovic Courtès, 13848 On Mon 11 Mar 2013 02:43, shookie@email.de writes: > GUILEC scripts/autofrisk.go > Backtrace: > In ice-9/psyntax.scm: > 1101: 19 [expand-top-sequence ((define (unglob pattern) (let # #))) () ...] > 1259: 18 [#<procedure 2205150 at ice-9/psyntax.scm:1067:36 ()>] > 1605: 17 [expand-simple-lambda (# . #) () (()) ...] > 1509: 16 [parse (((# #) . #(syntax-object # # #))) () () () () () ()] > In ice-9/boot-9.scm: > 627: 15 [map #<procedure 223e8d0 at ice-9/psyntax.scm:1510:50 (x)> ((# . #))] > In ice-9/psyntax.scm: > 2114: 14 [expand-let (let # #) (# #) (# # #) ...] > In ice-9/boot-9.scm: > 627: 13 [map #<procedure 223ab20 at ice-9/psyntax.scm:2114:49 (x)> (#)] > In ice-9/psyntax.scm: > 1257: 12 [#<procedure 223ab20 at ice-9/psyntax.scm:2114:49 (x)> (open-input-pipe #)] > 1186: 11 [syntax-type (open-input-pipe #) (# #) (# # #) ...] > 579: 10 [syntax-type open-input-pipe (# #) (# # #) ...] > 292: 9 [get-global-definition-hook open-input-pipe (hygiene scripts autofrisk)] > In unknown file: > ?: 8 [module-variable #<directory (scripts autofrisk) 2184d80> open-input-pipe] > In ice-9/boot-9.scm: > 2790: 7 [b #<autoload (ice-9 popen) 2216d80> open-input-pipe #f] > 2579: 6 [#<procedure 1d05530 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] > 2850: 5 [try-module-autoload (ice-9 popen) #f] > 2191: 4 [save-module-excursion #<procedure 223e7e0 at ice-9/boot-9.scm:2851:17 ()>] > 2870: 3 [#<procedure 223e7e0 at ice-9/boot-9.scm:2851:17 ()>] > In unknown file: > ?: 2 [primitive-load-path "ice-9\\popen" ...] > ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] > In ice-9/boot-9.scm: > 106: 0 [#<procedure 200ace0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] > > ice-9/boot-9.scm:106:20: In procedure #<procedure 200ace0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: > ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." > make[3]: *** [scripts/autofrisk.go] Error 1 > make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' > make[2]: *** [install-recursive] Error 1 > make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' > make[1]: *** [install] Error 2 > make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' > make: *** [lib/lib/libguile-2.0.a] Error 2 Interesting; seems to be an instance of http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12202. Can you try "make -k" and see what other errors you uncover? At this point it has compiled pretty much all of the needed code, using the built guile, so we're really close. Andy -- http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-11 8:26 ` Andy Wingo @ 2013-03-11 9:30 ` shookie 2013-03-13 9:30 ` Andy Wingo 0 siblings, 1 reply; 42+ messages in thread From: shookie @ 2013-03-11 9:30 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 [-- Attachment #1: Type: text/plain, Size: 406 bytes --] You're right, that wasn't a very efficient work process. So I attached two complete build logs with make -k. One with posix and threads, and one without. Both have some slight differences, but the major hiccups happen at the same places: one is the autofrisk from be fore, the other is with the scan-api. I'm definitely too tired now though to do anything productive. Good night. Jan Schukat [-- Attachment #2: build1.log --] [-- Type: application/octet-stream, Size: 94274 bytes --] cd lib/guile-2.0 && ./configure --prefix=/c/Users/shookie/guiletest/lib --disable-shared --disable-fast-install --with-gnu-ld --disable-posix --without-threads --disable-deprecated --enable-nls --with-libgmp-prefix=/c/Users/shookie/guiletest/lib LIBFFI_CFLAGS='-I/c/Users/shookie/guiletest/lib/lib/libffi-3.0.12/include' LIBFFI_LIBS='-lffi' BDW_GC_LIBS='-lgc' BDW_GC_CFLAGS='-I/c/Users/shookie/guiletest/lib' CPPFLAGS='-D HAVE_GC_SET_FINALIZER_NOTIFIER -D HAVE_GC_GET_FREE_SPACE_DIVISOR -D HAVE_GC_GET_HEAP_USAGE_SAFE -D HAVE_GC_SET_FINALIZE_ON_DEMAND' CFLAGS='-s' && make -k install checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking build system type... i686-pc-mingw32 checking host system type... i686-pc-mingw32 checking for as... as checking for dlltool... dlltool checking for objdump... objdump checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.exe checking for suffix of executables... .exe checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for Minix Amsterdam compiler... no checking for ar... ar checking for ranlib... ranlib checking whether gcc and cc understand -c and -o together... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... unknown checking for _LARGE_FILES value needed for large files... unknown configure: autobuild project... GNU Guile configure: autobuild revision... 2.0.7.187-b5870 configure: autobuild hostname... bias configure: autobuild timestamp... 20130311T090500Z checking how to run the C preprocessor... gcc -E checking for a sed that does not truncate output... /bin/sed checking for gawk... (cached) gawk checking whether ln -s works... no, using cp -pR checking the archiver (ar) interface... ar checking for sys/socket.h... no checking for arpa/inet.h... no checking for features.h... no checking for sys/param.h... yes checking for dirent.h... yes checking for xlocale.h... no checking for unistd.h... (cached) yes checking for sys/stat.h... (cached) yes checking for netdb.h... no checking for netinet/in.h... no checking for iconv.h... yes checking for langinfo.h... no checking for math.h... yes checking for sys/mman.h... no checking for poll.h... no checking for sys/ioctl.h... no checking for sys/filio.h... no checking for sys/select.h... no checking for sys/time.h... yes checking for wchar.h... yes checking for stdint.h... (cached) yes checking for sys/file.h... yes checking for sys/times.h... no checking for sys/uio.h... no checking for wctype.h... yes checking ws2tcpip.h usability... yes checking ws2tcpip.h presence... yes checking for ws2tcpip.h... yes checking whether the preprocessor supports include_next... yes checking whether system header files limit the line length... no checking whether <sys/socket.h> is self-contained... no checking for struct sockaddr_storage... yes checking for sa_family_t... no checking for struct sockaddr_storage.ss_family... yes checking winsock2.h usability... yes checking winsock2.h presence... yes checking for winsock2.h... yes checking whether socket is declared without a macro... no checking whether connect is declared without a macro... no checking whether accept is declared without a macro... no checking whether bind is declared without a macro... no checking whether getpeername is declared without a macro... no checking whether getsockname is declared without a macro... no checking whether getsockopt is declared without a macro... no checking whether listen is declared without a macro... no checking whether recv is declared without a macro... no checking whether send is declared without a macro... no checking whether recvfrom is declared without a macro... no checking whether sendto is declared without a macro... no checking whether setsockopt is declared without a macro... no checking whether shutdown is declared without a macro... no checking whether accept4 is declared without a macro... no checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking whether <wchar.h> uses 'inline' correctly... yes checking for btowc... yes checking for canonicalize_file_name... no checking for getcwd... yes checking for readlink... no checking for realpath... no checking for _set_invalid_parameter_handler... no checking for duplocale... no checking for symlink... no checking for flock... no checking for fcntl... no checking for alarm... no checking for getlogin... no checking for lstat... no checking for mbsinit... yes checking for mbrtowc... yes checking for mprotect... yes checking for nl_langinfo... no checking for pipe... no checking for pipe2... no checking for isblank... yes checking for iswctype... yes checking for wcscoll... yes checking for link... no checking for setenv... no checking for snprintf... yes checking for tzset... yes checking for localtime_r... no checking for times... no checking for vasnprintf... no checking for wcrtomb... yes checking for iswcntrl... yes checking for nl_langinfo and CODESET... no checking for a traditional french locale... French_France.1252 checking whether // is distinct from /... yes checking whether realpath works... no checking for wchar_t... yes checking whether NULL can be used in arbitrary expressions... yes checking whether locale.h conforms to POSIX:2001... no checking whether struct lconv is properly defined... no checking whether setlocale is declared without a macro... yes checking whether duplocale is declared without a macro... no checking if environ is properly declared... yes checking for complete errno.h... no checking for EMULTIHOP value... no checking for ENOLINK value... no checking for EOVERFLOW value... no checking for working fcntl.h... no checking for pid_t... yes checking for mode_t... yes checking whether frexp() can be used without linking with libm... yes checking whether stat file-mode macros are broken... no checking for 64-bit off_t... no checking for nlink_t... no checking whether fchmodat is declared without a macro... no checking whether fstat is declared without a macro... yes checking whether fstatat is declared without a macro... no checking whether futimens is declared without a macro... no checking whether lchmod is declared without a macro... no checking whether lstat is declared without a macro... no checking whether mkdirat is declared without a macro... no checking whether mkfifo is declared without a macro... no checking whether mkfifoat is declared without a macro... no checking whether mknod is declared without a macro... no checking whether mknodat is declared without a macro... no checking whether stat is declared without a macro... yes checking whether utimensat is declared without a macro... no checking whether getaddrinfo is declared without a macro... no checking whether freeaddrinfo is declared without a macro... no checking whether gai_strerror is declared without a macro... no checking whether getnameinfo is declared without a macro... no checking for library containing gethostbyname... no checking for gethostbyname... no checking for gethostbyname in winsock2.h and -lws2_32... yes checking for library containing getservbyname... no checking for getservbyname... no checking for getservbyname in winsock2.h and -lws2_32... yes checking for C/C++ restrict keyword... __restrict checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... no checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for shared library run path origin... done checking for iconv... yes checking for working iconv... yes checking how to link with libiconv... -liconv checking for iconv declaration... extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for inline... inline checking whether byte ordering is bigendian... no checking whether long double and double are the same... no checking where to find the exponent in a 'float'... word 0 bit 23 checking whether isnan(float) can be used without linking with libm... yes checking whether isnan(float) works... yes checking whether isnan(double) can be used without linking with libm... yes checking whether isnan(long double) can be used without linking with libm... yes checking whether isnanl works... no checking where to find the exponent in a 'double'... word 1 bit 20 checking whether ldexp() can be used without linking with libm... yes checking for libunistring... yes checking how to link with libunistring... -lunistring checking for libunistring version... 0.9.3 checking whether getc_unlocked is declared... no checking whether we are using the GNU C Library >= 2.1 or uClibc... no checking whether pow can be used without linking with libm... yes checking whether log works... yes checking whether round is declared... yes checking whether round works... yes checking whether lstat correctly handles trailing slash... guessing no checking whether malloc, realloc, calloc are POSIX compliant... no checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for unsigned long long int... yes checking for long long int... yes checking for mbstate_t... yes checking for a traditional japanese locale... none checking for a transitional chinese locale... none checking for a french Unicode locale... none checking for mmap... no checking whether memchr works... yes checking for promoted mode_t type... int checking whether poll is declared without a macro... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... yes checking for ssize_t... yes checking whether <sys/select.h> is self-contained... no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... no checking whether select is declared without a macro... no checking whether setenv is declared... no checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for sigset_t... yes checking for uid_t in sys/types.h... no checking whether snprintf returns a byte count as in C99... yes checking whether snprintf is declared... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking whether stdint.h conforms to C99... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_zone... no checking whether tzname is declared... yes checking for tzname... yes checking for struct tm.tm_gmtoff... no checking whether ffsl is declared without a macro... no checking whether ffsll is declared without a macro... no checking whether memmem is declared without a macro... no checking whether mempcpy is declared without a macro... no checking whether memrchr is declared without a macro... no checking whether rawmemchr is declared without a macro... no checking whether stpcpy is declared without a macro... no checking whether stpncpy is declared without a macro... no checking whether strchrnul is declared without a macro... no checking whether strdup is declared without a macro... yes checking whether strncat is declared without a macro... yes checking whether strndup is declared without a macro... no checking whether strnlen is declared without a macro... no checking whether strpbrk is declared without a macro... yes checking whether strsep is declared without a macro... no checking whether strcasestr is declared without a macro... no checking whether strtok_r is declared without a macro... no checking whether strerror_r is declared without a macro... no checking whether strsignal is declared without a macro... no checking whether strverscmp is declared without a macro... no checking for winsock2.h... (cached) yes checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking whether gettimeofday is declared without a macro... yes checking for struct timespec in <time.h>... no checking for struct timespec in <sys/time.h>... no checking for struct timespec in <pthread.h>... yes checking for wint_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking for snprintf... (cached) yes checking for strnlen... no checking for wcslen... yes checking for wcsnlen... no checking for mbrtowc... (cached) yes checking for wcrtomb... (cached) yes checking whether _snprintf is declared... yes checking whether vsnprintf is declared... yes checking whether inet_ntop is declared without a macro... no checking whether inet_pton is declared without a macro... no checking whether btowc(0) is correct... yes checking whether btowc(EOF) is correct... yes checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking for library containing clock_gettime... no checking for clock_gettime... no checking for clock_settime... no checking for clock_getcpuclockid... no checking for winsock2.h... (cached) yes checking whether alphasort is declared without a macro... no checking whether closedir is declared without a macro... yes checking whether dirfd is declared without a macro... no checking whether fdopendir is declared without a macro... no checking whether opendir is declared without a macro... yes checking whether readdir is declared without a macro... yes checking whether rewinddir is declared without a macro... yes checking whether scandir is declared without a macro... no checking for dirfd... no checking whether dirfd is declared... no checking whether dirfd is a macro... no checking how to get the file descriptor associated with an open DIR*... no_such_member checking whether // is distinct from /... (cached) yes checking whether dup2 works... no checking whether fcntl is declared without a macro... no checking whether openat is declared without a macro... no checking whether conversion from 'int' to 'long double' works... yes checking for struct flock.l_type... no checking whether frexp works... no checking whether __func__ is available... yes configure: checking how to do getaddrinfo, freeaddrinfo and getnameinfo checking for library containing getaddrinfo... no checking for getaddrinfo... no checking for getaddrinfo in ws2tcpip.h and -lws2_32... no checking whether gai_strerror is declared... yes checking whether gai_strerrorA is declared... yes checking for gai_strerror with POSIX signature... no checking for struct sockaddr.sa_len... no checking whether getaddrinfo is declared... no checking whether freeaddrinfo is declared... no checking whether getnameinfo is declared... no checking for struct addrinfo... yes checking for library containing gethostbyname... (cached) no checking for gethostbyname... (cached) no checking for gethostbyname in winsock2.h and -lws2_32... (cached) yes checking whether iconv supports conversion between UTF-8 and UTF-{16,32}{BE,LE}... yes checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... (cached) no checking for winsock2.h... (cached) yes checking whether inet_pton is declared... no checking whether the compiler generally respects inline... no checking whether isinf is declared... yes checking whether isinf(long double) works... yes checking whether isnan macro works... no checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(float) can be used without linking with libm... (cached) yes checking whether isnan(float) works... (cached) yes checking where to find the exponent in a 'float'... (cached) word 0 bit 23 checking whether isnan(long double) can be used without linking with libm... (cached) yes checking whether isnanl works... (cached) no checking where to find the exponent in a 'long double'... word 2 bit 0 checking whether nl_langinfo is declared without a macro... no checking if LD -Wl,--version-script works... yes checking whether the -Werror option is usable... yes checking for simple visibility declarations... yes checking whether locale.h conforms to POSIX:2001... (cached) no checking whether struct lconv is properly defined... (cached) no checking whether setlocale is declared without a macro... (cached) yes checking whether duplocale is declared without a macro... (cached) no checking for struct lconv.decimal_point... yes checking for log1p... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking whether NAN macro works... yes checking whether HUGE_VAL works... yes checking whether acosf is declared without a macro... yes checking whether acosl is declared without a macro... yes checking whether asinf is declared without a macro... yes checking whether asinl is declared without a macro... yes checking whether atanf is declared without a macro... yes checking whether atanl is declared without a macro... yes checking whether cbrt is declared without a macro... yes checking whether cbrtf is declared without a macro... yes checking whether cbrtl is declared without a macro... yes checking whether ceilf is declared without a macro... yes checking whether ceill is declared without a macro... yes checking whether copysign is declared without a macro... yes checking whether copysignf is declared without a macro... yes checking whether copysignl is declared without a macro... yes checking whether cosf is declared without a macro... yes checking whether cosl is declared without a macro... yes checking whether coshf is declared without a macro... yes checking whether expf is declared without a macro... yes checking whether expl is declared without a macro... yes checking whether exp2 is declared without a macro... yes checking whether exp2f is declared without a macro... yes checking whether exp2l is declared without a macro... yes checking whether expm1 is declared without a macro... yes checking whether expm1f is declared without a macro... yes checking whether expm1l is declared without a macro... yes checking whether fabsf is declared without a macro... yes checking whether fabsl is declared without a macro... yes checking whether floorf is declared without a macro... yes checking whether floorl is declared without a macro... yes checking whether fma is declared without a macro... yes checking whether fmaf is declared without a macro... yes checking whether fmal is declared without a macro... yes checking whether fmod is declared without a macro... yes checking whether fmodf is declared without a macro... yes checking whether fmodl is declared without a macro... yes checking whether frexpf is declared without a macro... yes checking whether frexpl is declared without a macro... yes checking whether hypotf is declared without a macro... yes checking whether hypotl is declared without a macro... yes checking whether ilogb is declared without a macro... yes checking whether ilogbf is declared without a macro... yes checking whether ilogbl is declared without a macro... yes checking whether ldexpf is declared without a macro... yes checking whether ldexpl is declared without a macro... yes checking whether log is declared without a macro... yes checking whether logf is declared without a macro... yes checking whether logl is declared without a macro... yes checking whether log10 is declared without a macro... yes checking whether log10f is declared without a macro... yes checking whether log10l is declared without a macro... yes checking whether log1p is declared without a macro... yes checking whether log1pf is declared without a macro... yes checking whether log1pl is declared without a macro... yes checking whether log2 is declared without a macro... yes checking whether log2f is declared without a macro... yes checking whether log2l is declared without a macro... yes checking whether logb is declared without a macro... yes checking whether logbf is declared without a macro... yes checking whether logbl is declared without a macro... yes checking whether modf is declared without a macro... yes checking whether modff is declared without a macro... yes checking whether modfl is declared without a macro... yes checking whether powf is declared without a macro... yes checking whether remainder is declared without a macro... yes checking whether remainderf is declared without a macro... yes checking whether remainderl is declared without a macro... yes checking whether rint is declared without a macro... yes checking whether rintf is declared without a macro... yes checking whether rintl is declared without a macro... yes checking whether round is declared without a macro... yes checking whether roundf is declared without a macro... yes checking whether roundl is declared without a macro... yes checking whether sinf is declared without a macro... yes checking whether sinl is declared without a macro... yes checking whether sinhf is declared without a macro... yes checking whether sqrtf is declared without a macro... yes checking whether sqrtl is declared without a macro... yes checking whether tanf is declared without a macro... yes checking whether tanl is declared without a macro... yes checking whether tanhf is declared without a macro... yes checking whether trunc is declared without a macro... yes checking whether truncf is declared without a macro... yes checking whether truncl is declared without a macro... yes checking whether mbrtowc handles incomplete characters... guessing yes checking whether mbrtowc works as well as mbtowc... guessing yes checking whether mbrtowc handles a NULL pwc argument... guessing yes checking whether mbrtowc handles a NULL string argument... guessing yes checking whether mbrtowc has a correct return value... no checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether getaddrinfo is declared without a macro... (cached) no checking whether freeaddrinfo is declared without a macro... (cached) no checking whether gai_strerror is declared without a macro... (cached) no checking whether getnameinfo is declared without a macro... (cached) no checking whether <netinet/in.h> is self-contained... no checking for netinet/in.h... (cached) no checking for sys/pstat.h... no checking for sys/sysmp.h... no checking for sys/param.h... (cached) yes checking for sys/sysctl.h... no checking for sched_getaffinity... no checking for sched_getaffinity_np... no checking for pstat_getdynamic... no checking for sysmp... no checking for sysctl... no checking for poll... (cached) no checking whether poll is declared without a macro... (cached) no checking for putenv compatible with GNU and SVID... no checking for _putenv... yes checking for raise... yes checking for working re_compile_pattern... no checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking whether isblank is declared... yes checking whether rename honors trailing slash on destination... no checking whether rename honors trailing slash on source... yes checking whether rename manages hard links correctly... yes checking whether rename manages existing destinations correctly... no checking whether rmdir works... no checking whether round is declared... (cached) yes checking whether round works... (cached) yes checking for library containing getservbyname... (cached) no checking for getservbyname... (cached) no checking for getservbyname in winsock2.h and -lws2_32... (cached) yes checking for volatile sig_atomic_t... yes checking for sighandler_t... no checking whether pthread_sigmask is declared without a macro... no checking whether sigaction is declared without a macro... no checking whether sigaddset is declared without a macro... no checking whether sigdelset is declared without a macro... no checking whether sigemptyset is declared without a macro... no checking whether sigfillset is declared without a macro... no checking whether sigismember is declared without a macro... no checking whether sigpending is declared without a macro... no checking whether sigprocmask is declared without a macro... no checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking for snprintf... (cached) yes checking whether snprintf respects a size of 1... yes checking whether printf supports POSIX/XSI format strings with positions... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... (cached) yes checking for socklen_t... yes checking for ssize_t... (cached) yes checking whether stat handles trailing slashes on directories... no checking whether stat handles trailing slashes on files... yes checking for struct stat.st_atim.tv_nsec... no checking for struct stat.st_atimespec.tv_nsec... no checking for struct stat.st_atimensec... no checking for struct stat.st_atim.st__tim.tv_nsec... no checking for struct stat.st_birthtimespec.tv_nsec... no checking for struct stat.st_birthtimensec... no checking for struct stat.st_birthtim.tv_nsec... no checking for working stdalign.h... yes checking whether NULL can be used in arbitrary expressions... (cached) yes checking whether dprintf is declared without a macro... no checking whether fpurge is declared without a macro... no checking whether fseeko is declared without a macro... no checking whether ftello is declared without a macro... no checking whether getdelim is declared without a macro... no checking whether getline is declared without a macro... no checking whether gets is declared without a macro... yes checking whether pclose is declared without a macro... yes checking whether popen is declared without a macro... yes checking whether renameat is declared without a macro... no checking whether snprintf is declared without a macro... yes checking whether tmpfile is declared without a macro... yes checking whether vdprintf is declared without a macro... no checking whether vsnprintf is declared without a macro... yes checking whether _Exit is declared without a macro... yes checking whether atoll is declared without a macro... yes checking whether canonicalize_file_name is declared without a macro... no checking whether getloadavg is declared without a macro... no checking whether getsubopt is declared without a macro... no checking whether grantpt is declared without a macro... no checking whether initstate is declared without a macro... no checking whether initstate_r is declared without a macro... no checking whether mkdtemp is declared without a macro... no checking whether mkostemp is declared without a macro... no checking whether mkostemps is declared without a macro... no checking whether mkstemp is declared without a macro... no checking whether mkstemps is declared without a macro... no checking whether posix_openpt is declared without a macro... no checking whether ptsname is declared without a macro... no checking whether ptsname_r is declared without a macro... no checking whether random is declared without a macro... no checking whether random_r is declared without a macro... no checking whether realpath is declared without a macro... no checking whether rpmatch is declared without a macro... no checking whether secure_getenv is declared without a macro... no checking whether setenv is declared without a macro... no checking whether setstate is declared without a macro... no checking whether setstate_r is declared without a macro... no checking whether srandom is declared without a macro... no checking whether srandom_r is declared without a macro... no checking whether strtod is declared without a macro... yes checking whether strtoll is declared without a macro... yes checking whether strtoull is declared without a macro... yes checking whether unlockpt is declared without a macro... no checking whether unsetenv is declared without a macro... no checking whether flock is declared without a macro... no checking whether <sys/select.h> is self-contained... (cached) no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... (cached) no checking whether select is declared without a macro... (cached) no checking whether <sys/socket.h> is self-contained... (cached) no checking for struct sockaddr_storage... (cached) yes checking for sa_family_t... (cached) no checking for struct sockaddr_storage.ss_family... (cached) yes checking for winsock2.h... (cached) yes checking whether socket is declared without a macro... (cached) no checking whether connect is declared without a macro... (cached) no checking whether accept is declared without a macro... (cached) no checking whether bind is declared without a macro... (cached) no checking whether getpeername is declared without a macro... (cached) no checking whether getsockname is declared without a macro... (cached) no checking whether getsockopt is declared without a macro... (cached) no checking whether listen is declared without a macro... (cached) no checking whether recv is declared without a macro... (cached) no checking whether send is declared without a macro... (cached) no checking whether recvfrom is declared without a macro... (cached) no checking whether sendto is declared without a macro... (cached) no checking whether setsockopt is declared without a macro... (cached) no checking whether shutdown is declared without a macro... (cached) no checking whether accept4 is declared without a macro... (cached) no checking for nlink_t... (cached) no checking whether fchmodat is declared without a macro... (cached) no checking whether fstat is declared without a macro... (cached) yes checking whether fstatat is declared without a macro... (cached) no checking whether futimens is declared without a macro... (cached) no checking whether lchmod is declared without a macro... (cached) no checking whether lstat is declared without a macro... (cached) no checking whether mkdirat is declared without a macro... (cached) no checking whether mkfifo is declared without a macro... (cached) no checking whether mkfifoat is declared without a macro... (cached) no checking whether mknod is declared without a macro... (cached) no checking whether mknodat is declared without a macro... (cached) no checking whether stat is declared without a macro... (cached) yes checking whether utimensat is declared without a macro... (cached) no checking whether times is declared without a macro... no checking whether localtime_r is declared... no checking whether trunc is declared... (cached) yes checking whether chdir is declared without a macro... yes checking whether chown is declared without a macro... no checking whether dup is declared without a macro... yes checking whether dup2 is declared without a macro... yes checking whether dup3 is declared without a macro... no checking whether environ is declared without a macro... no checking whether euidaccess is declared without a macro... no checking whether faccessat is declared without a macro... no checking whether fchdir is declared without a macro... no checking whether fchownat is declared without a macro... no checking whether fdatasync is declared without a macro... no checking whether fsync is declared without a macro... no checking whether ftruncate is declared without a macro... yes checking whether getcwd is declared without a macro... yes checking whether getdomainname is declared without a macro... no checking whether getdtablesize is declared without a macro... no checking whether getgroups is declared without a macro... no checking whether gethostname is declared without a macro... no checking whether getlogin is declared without a macro... no checking whether getlogin_r is declared without a macro... no checking whether getpagesize is declared without a macro... no checking whether getusershell is declared without a macro... no checking whether setusershell is declared without a macro... no checking whether endusershell is declared without a macro... no checking whether group_member is declared without a macro... no checking whether isatty is declared without a macro... yes checking whether lchown is declared without a macro... no checking whether link is declared without a macro... no checking whether linkat is declared without a macro... no checking whether lseek is declared without a macro... yes checking whether pipe is declared without a macro... no checking whether pipe2 is declared without a macro... no checking whether pread is declared without a macro... no checking whether pwrite is declared without a macro... no checking whether readlink is declared without a macro... no checking whether readlinkat is declared without a macro... no checking whether rmdir is declared without a macro... yes checking whether sethostname is declared without a macro... no checking whether sleep is declared without a macro... no checking whether symlink is declared without a macro... no checking whether symlinkat is declared without a macro... no checking whether ttyname_r is declared without a macro... no checking whether unlink is declared without a macro... yes checking whether unlinkat is declared without a macro... no checking whether usleep is declared without a macro... yes checking for ptrdiff_t... yes checking for vsnprintf... yes checking whether snprintf respects a size of 1... (cached) yes checking whether printf supports POSIX/XSI format strings with positions... (cached) no checking whether btowc is declared without a macro... yes checking whether wctob is declared without a macro... yes checking whether mbsinit is declared without a macro... yes checking whether mbrtowc is declared without a macro... yes checking whether mbrlen is declared without a macro... yes checking whether mbsrtowcs is declared without a macro... yes checking whether mbsnrtowcs is declared without a macro... no checking whether wcrtomb is declared without a macro... yes checking whether wcsrtombs is declared without a macro... yes checking whether wcsnrtombs is declared without a macro... no checking whether wcwidth is declared without a macro... no checking whether wmemchr is declared without a macro... yes checking whether wmemcmp is declared without a macro... yes checking whether wmemcpy is declared without a macro... yes checking whether wmemmove is declared without a macro... yes checking whether wmemset is declared without a macro... yes checking whether wcslen is declared without a macro... yes checking whether wcsnlen is declared without a macro... no checking whether wcscpy is declared without a macro... yes checking whether wcpcpy is declared without a macro... no checking whether wcsncpy is declared without a macro... yes checking whether wcpncpy is declared without a macro... no checking whether wcscat is declared without a macro... yes checking whether wcsncat is declared without a macro... yes checking whether wcscmp is declared without a macro... yes checking whether wcsncmp is declared without a macro... yes checking whether wcscasecmp is declared without a macro... no checking whether wcsncasecmp is declared without a macro... no checking whether wcscoll is declared without a macro... yes checking whether wcsxfrm is declared without a macro... yes checking whether wcsdup is declared without a macro... yes checking whether wcschr is declared without a macro... yes checking whether wcsrchr is declared without a macro... yes checking whether wcscspn is declared without a macro... yes checking whether wcsspn is declared without a macro... yes checking whether wcspbrk is declared without a macro... yes checking whether wcsstr is declared without a macro... yes checking whether wcstok is declared without a macro... yes checking whether wcswidth is declared without a macro... no checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether wcrtomb return value is correct... yes checking whether iswcntrl works... yes checking for towlower... yes checking for wctype_t... yes checking for wctrans_t... yes checking whether wctype is declared without a macro... yes checking whether iswctype is declared without a macro... yes checking whether wctrans is declared without a macro... yes checking whether towctrans is declared without a macro... yes checking for stdint.h... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for fgrep... /bin/grep -F checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /mingw/bin/nm checking the name lister (/mingw/bin/nm) interface... BSD nm checking the maximum length of command line arguments... 8192 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert i686-pc-mingw32 file names to i686-pc-mingw32 format... func_convert_file_msys_to_w32 checking how to convert i686-pc-mingw32 file names to toolchain format... func_convert_file_msys_to_w32 checking for c:/mingw/mingw32/bin/ld.exe option to reload object files... -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... func_cygming_dll_for_implib checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... (cached) ranlib checking command to parse /mingw/bin/nm output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... no checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (c:/mingw/mingw32/bin/ld.exe) supports shared libraries... yes checking dynamic linker characteristics... Win32 ld.exe checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking for libltdl... yes checking how to link with libltdl... -lltdl checking for makeinfo... yes checking for emacs... no checking for xemacs... no checking where .elc files should go... ${datadir}/emacs/site-lisp checking whether to use system and library "64" calls... yes checking for __uc_get_ar_bsp in -luca... no checking for an ANSI C-conforming const... yes checking for working volatile... yes checking for inline... (cached) inline checking for __uc_get_ar_bsp in -luca... (cached) no checking whether byte ordering is bigendian... (cached) no checking labels as values... yes checking size of char... 1 checking size of unsigned char... 1 checking size of short... 2 checking size of unsigned short... 2 checking size of int... 4 checking size of unsigned int... 4 checking size of long... 4 checking size of unsigned long... 4 checking size of size_t... 4 checking size of long long... 8 checking size of unsigned long long... 8 checking size of __int64... 8 checking size of unsigned __int64... 8 checking size of void *... 4 checking size of intptr_t... 4 checking size of uintptr_t... 4 checking size of ptrdiff_t... 4 checking size of size_t... (cached) 4 checking size of off_t... 4 checking for stdint.h... (cached) yes checking for inttypes.h... (cached) yes checking size of intmax_t... 8 checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... yes checking for uintptr_t... yes checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... (cached) yes checking for uintptr_t... (cached) yes checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for struct dirent64.d_name... no checking complex.h usability... yes checking complex.h presence... yes checking for complex.h... yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking io.h usability... yes checking io.h presence... yes checking for io.h... yes checking libc.h usability... no checking libc.h presence... no checking for libc.h... no checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for memory.h... (cached) yes checking process.h usability... yes checking process.h presence... yes checking for process.h... yes checking for string.h... (cached) yes checking sys/dir.h usability... no checking sys/dir.h presence... no checking for sys/dir.h... no checking for sys/ioctl.h... (cached) no checking for sys/select.h... (cached) no checking for sys/time.h... (cached) yes checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking for sys/times.h... (cached) no checking sys/stdtypes.h usability... no checking sys/stdtypes.h presence... no checking for sys/stdtypes.h... no checking for sys/types.h... (cached) yes checking sys/utime.h usability... yes checking sys/utime.h presence... yes checking for sys/utime.h... yes checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking for unistd.h... (cached) yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking pwd.h usability... no checking pwd.h presence... no checking for pwd.h... no checking grp.h usability... no checking grp.h presence... no checking for grp.h... no checking sys/utsname.h usability... no checking sys/utsname.h presence... no checking for sys/utsname.h... no checking direct.h usability... yes checking direct.h presence... yes checking for direct.h... yes checking machine/fpu.h usability... no checking machine/fpu.h presence... no checking for machine/fpu.h... no checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking for complex double... yes checking for socklen_t... (cached) yes checking for struct ip_mreq... no checking for libc.h... (cached) no checking for unistd.h... (cached) yes checking whether libc.h and unistd.h can be included together... no checking type of array argument to getgroups... int checking return type of signal handlers... void checking for mode_t... (cached) yes checking for cos in -lm... yes checking for gethostbyname... (cached) no checking for gethostbyname in -lnsl... no checking for connect... no checking for connect in -lsocket... no checking for winsock2.h... (cached) yes checking for main in -lws2_32... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking crt_externs.h usability... no checking crt_externs.h presence... no checking for crt_externs.h... no checking for DINFINITY... no checking for DQNAN... no checking for cexp... yes checking for chsize... yes checking for clog... yes checking for clog10... no checking for ctermid... no checking for fesetround... yes checking for ftime... yes checking for ftruncate... yes checking for fchown... no checking for fchmod... no checking for getcwd... (cached) yes checking for geteuid... no checking for getsid... no checking for gettimeofday... yes checking for gmtime_r... no checking for ioctl... no checking for lstat... (cached) no checking for mkdir... yes checking for mknod... no checking for nice... no checking for pipe... (cached) no checking for _pipe... yes checking for readdir_r... no checking for readdir64_r... no checking for readlink... (cached) no checking for rename... yes checking for rmdir... yes checking for select... no checking for setegid... no checking for seteuid... no checking for setlocale... yes checking for setpgid... no checking for setsid... no checking for sigaction... no checking for siginterrupt... no checking for stat64... no checking for strftime... yes checking for strptime... no checking for symlink... (cached) no checking for sync... no checking for sysconf... no checking for tcgetpgrp... no checking for tcsetpgrp... no checking for times... (cached) no checking for uname... no checking for waitpid... no checking for strdup... yes checking for system... yes checking for usleep... yes checking for atexit... yes checking for on_exit... no checking for chown... no checking for link... (cached) no checking for fcntl... (cached) no checking for ttyname... no checking for getpwent... no checking for getgrent... no checking for kill... no checking for getppid... no checking for getpgrp... no checking for fork... no checking for setitimer... no checking for getitimer... no checking for strchr... yes checking for strcmp... yes checking for index... no checking for bcopy... no checking for memcpy... yes checking for rindex... no checking for truncate... no checking for unsetenv... no checking for isblank... (cached) yes checking for _NSGetEnviron... no checking for strcoll... yes checking for strcoll_l... no checking for newlocale... no checking for utimensat... no checking for sched_getaffinity... (cached) no checking for sched_setaffinity... no checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking for netdb.h... (cached) no checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking pthread_np.h usability... no checking pthread_np.h presence... no checking for pthread_np.h... no checking for sys/param.h... (cached) yes checking sys/resource.h usability... no checking sys/resource.h presence... no checking for sys/resource.h... no checking for sys/file.h... (cached) yes checking for sys/mman.h... (cached) no checking for chroot... no checking for flock... (cached) no checking for getlogin... (cached) no checking for cuserid... no checking for getpriority... no checking for setpriority... no checking for getpass... no checking for sethostname... no checking for gethostname... no checking whether sethostname is declared... no checking whether hstrerror is declared... no checking whether cuserid is declared... no checking for library containing crypt... no checking for i... _Complex_I checking whether csqrt is usable... yes checking for libgmp... yes checking how to link with libgmp... /c/Users/shookie/guiletest/lib/lib/libgmp.a checking whether libunistring was built with iconv support... yes checking for pkg-config... no checking for LIBFFI... yes checking size of size_t... (cached) 4 checking size of ssize_t... 4 checking whether NLS is requested... yes checking for msgfmt... /mingw/bin/msgfmt checking for gmsgfmt... /mingw/bin/msgfmt checking for xgettext... /mingw/bin/xgettext checking for msgmerge... /mingw/bin/msgmerge checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking for GNU gettext in libc... no checking for iconv... (cached) yes checking for working iconv... (cached) yes checking how to link with libiconv... -liconv checking for GNU gettext in libintl... yes checking whether to use NLS... yes checking where the gettext function comes from... external libintl checking how to link with libintl... -lintl checking for sleep declaration... yes checking for usleep declaration... yes checking whether getlogin is declared... no checking whether alarm is declared... no checking whether strptime is declared... no checking return type of usleep... int checking sys/un.h usability... no checking sys/un.h presence... no checking for sys/un.h... no checking for getrlimit... no checking for setrlimit... no checking for socketpair... no checking for getgroups... no checking for setgroups... no checking for setpwent... no checking for pause... no checking for tzset... (cached) yes checking for sethostent... no checking for gethostent... no checking for endhostent... no checking for setnetent... no checking for getnetent... no checking for endnetent... no checking for setprotoent... no checking for getprotoent... no checking for endprotoent... no checking for setservent... no checking for getservent... no checking for endservent... no checking for getnetbyaddr... no checking for getnetbyname... no checking for inet_lnaof... no checking for inet_makeaddr... no checking for inet_netof... no checking for hstrerror... no checking for struct sockaddr_in.sin_len... no checking for __libc_stack_end... no checking whether netdb.h declares h_errno... no checking whether uint32_t is defined... no checking for working IPv6 support... no checking whether sockaddr_in6 has sin6_scope_id... no checking for struct sockaddr_in6.sin6_len... no checking whether localtime caches TZ... yes checking for strerror... yes checking for memmove... yes checking for mkstemp... no checking for asinh... yes checking for acosh... yes checking for atanh... yes checking for copysign... yes checking for finite... yes checking for sincos... no checking for trunc... yes checking for isinf... yes checking for isnan... yes checking for struct stat.st_rdev... yes checking for struct stat.st_blksize... no checking for struct stat.st_blocks... no checking for struct stat.st_atim... no checking for struct stat.st_mtim... no checking for struct stat.st_ctim... no checking for struct tm.tm_zone... (cached) no checking whether tzname is declared... (cached) yes checking for tzname... (cached) yes checking for struct tm.tm_gmtoff... (cached) no checking whether we need POSIX to get struct utimbuf... no checking the value of `iconveh_error'... 0 checking the value of `iconveh_question_mark'... 1 checking the value of `iconveh_escape_sequence'... 2 checking for BDW_GC... yes checking for GC_do_blocking... no checking for GC_call_with_gc_active... no checking for GC_pthread_exit... no checking for GC_pthread_cancel... no checking for GC_allow_register_threads... no checking for GC_pthread_sigmask... no checking for GC_set_start_callback... no checking for GC_get_heap_usage_safe... no checking for GC_get_free_space_divisor... no checking for GC_gcollect_and_unmap... no checking for GC_get_unmapped_bytes... no checking for GC_set_finalizer_notifier... no checking for GC_set_finalize_on_demand... no checking for GC_set_all_interior_pointers... no checking for GC_get_gc_no... no checking for GC_set_java_finalization... no checking whether GC_do_blocking is declared... yes checking for GC_fn_type... yes checking for struct GC_stack_base... yes checking size of float... 4 checking for struct linger... no checking for struct timespec... yes checking what kind of threads to support... null-threads checking whether C compiler handles -Wall... yes checking whether C compiler handles -Wmissing-prototypes... yes checking whether C compiler handles -Wdeclaration-after-statement... yes checking whether C compiler handles -Wpointer-arith... yes checking whether C compiler handles -Wswitch-enum... yes checking whether C compiler handles -fno-strict-aliasing... yes checking whether the linker understands `-z relro'... no checking for tgoto in -lncurses... no checking for tgoto in -lcurses... no checking for tgoto in -ltermcap... no checking for tgoto in -lterminfo... no checking for tgoto in -ltermlib... no checking for tgoto in -lpdcurses... no checking how to link with libreadline... /c/Users/shookie/guiletest/lib/lib/libreadline.a checking for siginterrupt... (cached) no checking for rl_clear_signals... no checking for rl_cleanup_after_signal... no checking for rl_filename_completion_function... no checking whether rl_catch_signals is declared... yes checking whether rl_catch_sigwinch is declared... yes checking for rl_get_keymap... no checking for rl_getc_function pointer in readline... no configure: WARNING: *** GNU Readline is too old on your system. configure: WARNING: *** You need readline version 2.1 or later. checking for strdup... (cached) yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating libguile/gen-scmconfig.h config.status: creating Makefile config.status: creating am/Makefile config.status: creating lib/Makefile config.status: creating benchmark-suite/Makefile config.status: creating gc-benchmarks/Makefile config.status: creating doc/Makefile config.status: creating doc/r5rs/Makefile config.status: creating doc/ref/Makefile config.status: creating emacs/Makefile config.status: creating examples/Makefile config.status: creating libguile/Makefile config.status: creating libguile/version.h config.status: creating guile-readline/Makefile config.status: creating test-suite/Makefile config.status: creating test-suite/standalone/Makefile config.status: creating test-suite/vm/Makefile config.status: creating meta/Makefile config.status: creating module/Makefile config.status: creating meta/guile-2.0.pc config.status: creating meta/guile-2.0-uninstalled.pc config.status: creating doc/ref/effective-version.texi config.status: creating check-guile config.status: creating benchmark-guile config.status: creating meta/guile config.status: creating meta/uninstalled-env config.status: creating meta/gdb-uninstalled-guile config.status: creating meta/guild config.status: creating libguile/guile-snarf config.status: creating libguile/guile-snarf-docs config.status: creating test-suite/standalone/test-use-srfi config.status: creating test-suite/standalone/test-fast-slot-ref config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands config.status: executing po-directories commands make[1]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make install-recursive make[2]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' Making install in lib make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' GEN alloca.h GEN arpa/inet.h GEN byteswap.h GEN configmake.h GEN dirent.h GEN errno.h GEN fcntl.h GEN iconv.h GEN langinfo.h GEN locale.h GEN math.h GEN netdb.h GEN netinet/in.h GEN poll.h GEN signal.h GEN stdio.h GEN stdlib.h GEN string.h GEN sys/file.h GEN sys/select.h GEN sys/socket.h GEN sys/stat.h GEN sys/time.h GEN sys/times.h GEN sys/types.h GEN sys/uio.h GEN time.h GEN unistd.h GEN wchar.h GEN wctype.h make install-recursive make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' CC binary-io.lo CC c-ctype.lo CC c-strcasecmp.lo CC c-strncasecmp.lo CC dirname-lgpl.lo CC basename-lgpl.lo CC stripslash.lo CC fd-hook.lo CC full-read.lo CC full-write.lo CC localcharset.lo CC malloca.lo CC math.lo CC nproc.lo CC pipe2.lo CC safe-read.lo CC safe-write.lo CC sockets.lo CC stat-time.lo CC strftime.lo CC striconveh.lo CC sys_socket.lo CC unistd.lo CC unistr/u8-mbtouc.lo CC unistr/u8-mbtouc-aux.lo CC unistr/u8-mbtouc-unsafe.lo CC unistr/u8-mbtouc-unsafe-aux.lo CC wctype-h.lo CC xsize.lo CC accept.lo CC asnprintf.lo CC bind.lo CC canonicalize-lgpl.lo CC close.lo CC connect.lo CC dirfd.lo CC dup2.lo CC flock.lo CC frexp.lo CC fstat.lo CC gai_strerror.lo CC getaddrinfo.lo CC getlogin.lo CC getpeername.lo CC getsockname.lo CC getsockopt.lo CC inet_ntop.lo CC inet_pton.lo CC isnand.lo CC isnanf.lo CC isnanl.lo CC listen.lo CC localeconv.lo CC malloc.lo CC mbrtowc.lo CC mbsinit.lo CC nl_langinfo.lo CC open.lo CC pipe.lo CC poll.lo CC printf-args.lo CC printf-parse.lo CC putenv.lo CC readlink.lo CC recv.lo CC recvfrom.lo CC regex.lo CC rename.lo CC rmdir.lo CC select.lo CC send.lo CC sendto.lo CC setenv.lo CC setsockopt.lo CC shutdown.lo CC snprintf.lo CC socket.lo CC stat.lo CC time_r.lo CC times.lo CC vasnprintf.lo CC vsnprintf.lo CCLD libgnu.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' if test no = no; then \ case 'mingw32' in \ darwin[56]*) \ need_charset_alias=true ;; \ darwin* | cygwin* | mingw* | pw32* | cegcc*) \ need_charset_alias=false ;; \ *) \ need_charset_alias=true ;; \ esac ; \ else \ need_charset_alias=false ; \ fi ; \ if $need_charset_alias; then \ /bin/sh /c/Users/shookie/guiletest/lib/guile-2.0/build-aux/install-sh -d /c/Users/shookie/guiletest/lib/lib ; \ fi ; \ if test -f /c/Users/shookie/guiletest/lib/lib/charset.alias; then \ sed -f ref-add.sed /c/Users/shookie/guiletest/lib/lib/charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ else \ if $need_charset_alias; then \ sed -f ref-add.sed charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ fi ; \ fi make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' Making install in meta make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guile="/c/Users/shookie/guiletest/lib/bin/`echo guile | /bin/sed -e 's,x,x,'`" ; \ cat ./guile-config.in \ | /bin/sed -e "s,@pkgconfigdir@,/c/Users/shookie/guiletest/lib/lib/pkgconfig,g ; \ s,@""PKG_CONFIG@,,g ; \ s,@installed_guile@,$guile,g" \ > guile-config.out mv guile-config.out guile-config chmod +x guile-config make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-config guild '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guild="`echo -n guild \ | /bin/sed -e 's,x,x,'`.exe" ; \ guile_tools="`echo -n guile-tools \ | /bin/sed -e 's,x,x,'`.exe" ; \ cd /c/Users/shookie/guiletest/lib/bin && rm -f "$guile_tools" && \ cp -pR "$guild" "$guile_tools" make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/install -c -m 644 guile.m4 '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/pkgconfig' /bin/install -c -m 644 guile-2.0.pc '/c/Users/shookie/guiletest/lib/lib/pkgconfig' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' Making install in libguile make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' GEN libpath.h GEN scmconfig.h SNARF alist.x SNARF arbiters.x SNARF array-handle.x SNARF array-map.x SNARF arrays.x SNARF async.x SNARF backtrace.x SNARF boolean.x SNARF bitvectors.x SNARF bytevectors.x SNARF chars.x SNARF control.x SNARF continuations.x SNARF debug.x SNARF deprecated.x SNARF deprecation.x SNARF dynl.x SNARF dynwind.x SNARF eq.x SNARF error.x SNARF eval.x SNARF evalext.x SNARF expand.x SNARF extensions.x SNARF feature.x SNARF filesys.x SNARF fluids.x SNARF foreign.x SNARF fports.x SNARF gc-malloc.x SNARF gc.x SNARF gettext.x SNARF generalized-arrays.x SNARF generalized-vectors.x SNARF goops.x SNARF gsubr.x SNARF guardians.x SNARF hash.x SNARF hashtab.x SNARF hooks.x SNARF i18n.x SNARF init.x SNARF ioext.x SNARF keywords.x SNARF list.x SNARF load.x SNARF macros.x SNARF mallocs.x SNARF memoize.x SNARF modules.x SNARF numbers.x SNARF objprop.x SNARF options.x SNARF pairs.x SNARF ports.x SNARF print.x SNARF procprop.x SNARF procs.x SNARF promises.x SNARF r6rs-ports.x SNARF random.x SNARF rdelim.x SNARF read.x SNARF root.x SNARF rw.x SNARF scmsigs.x SNARF script.x SNARF simpos.x SNARF smob.x SNARF sort.x SNARF srcprop.x SNARF srfi-1.x SNARF srfi-4.x SNARF srfi-13.x SNARF srfi-14.x SNARF srfi-60.x SNARF stackchk.x SNARF stacks.x SNARF stime.x SNARF strings.x SNARF strorder.x SNARF strports.x SNARF struct.x SNARF symbols.x SNARF threads.x SNARF throw.x SNARF trees.x SNARF uniform.x SNARF values.x SNARF variable.x SNARF vectors.x SNARF version.x SNARF vports.x SNARF weaks.x SNARF frames.x SNARF instructions.x SNARF objcodes.x SNARF programs.x SNARF vm.x SNARF net_db.x SNARF socket.x SNARF win32-uname.x SNARF regex-posix.x SNARF mkstemp.x make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' CC libguile_2.0_la-alist.lo CC libguile_2.0_la-arbiters.lo CC libguile_2.0_la-array-handle.lo CC libguile_2.0_la-array-map.lo CC libguile_2.0_la-arrays.lo CC libguile_2.0_la-async.lo CC libguile_2.0_la-backtrace.lo CC libguile_2.0_la-boolean.lo CC libguile_2.0_la-bitvectors.lo CC libguile_2.0_la-bytevectors.lo CC libguile_2.0_la-chars.lo CC libguile_2.0_la-control.lo CC libguile_2.0_la-continuations.lo CC libguile_2.0_la-debug.lo CC libguile_2.0_la-deprecated.lo CC libguile_2.0_la-deprecation.lo CC libguile_2.0_la-dynwind.lo CC libguile_2.0_la-eq.lo CC libguile_2.0_la-error.lo CC libguile_2.0_la-eval.lo CC libguile_2.0_la-evalext.lo CC libguile_2.0_la-expand.lo CC libguile_2.0_la-extensions.lo CC libguile_2.0_la-feature.lo CC libguile_2.0_la-filesys.lo CC libguile_2.0_la-finalizers.lo CC libguile_2.0_la-fluids.lo CC libguile_2.0_la-foreign.lo CC libguile_2.0_la-fports.lo CC libguile_2.0_la-frames.lo CC libguile_2.0_la-gc-malloc.lo CC libguile_2.0_la-gc.lo CC libguile_2.0_la-gdbint.lo CC libguile_2.0_la-gettext.lo CC libguile_2.0_la-generalized-arrays.lo CC libguile_2.0_la-generalized-vectors.lo CC libguile_2.0_la-goops.lo CC libguile_2.0_la-gsubr.lo CC libguile_2.0_la-guardians.lo CC libguile_2.0_la-hash.lo CC libguile_2.0_la-hashtab.lo CC libguile_2.0_la-hooks.lo CC libguile_2.0_la-i18n.lo CC libguile_2.0_la-init.lo CC libguile_2.0_la-inline.lo CC libguile_2.0_la-instructions.lo CC libguile_2.0_la-ioext.lo CC libguile_2.0_la-keywords.lo CC libguile_2.0_la-list.lo CC libguile_2.0_la-load.lo CC libguile_2.0_la-macros.lo CC libguile_2.0_la-mallocs.lo CC libguile_2.0_la-memoize.lo CC libguile_2.0_la-modules.lo CC libguile_2.0_la-null-threads.lo CC libguile_2.0_la-numbers.lo CC libguile_2.0_la-objcodes.lo CC libguile_2.0_la-objprop.lo CC libguile_2.0_la-options.lo CC libguile_2.0_la-pairs.lo CC libguile_2.0_la-poll.lo CC libguile_2.0_la-ports.lo CC libguile_2.0_la-print.lo CC libguile_2.0_la-procprop.lo CC libguile_2.0_la-procs.lo CC libguile_2.0_la-programs.lo CC libguile_2.0_la-promises.lo CC libguile_2.0_la-r6rs-ports.lo CC libguile_2.0_la-random.lo CC libguile_2.0_la-rdelim.lo CC libguile_2.0_la-read.lo CC libguile_2.0_la-root.lo CC libguile_2.0_la-rw.lo CC libguile_2.0_la-scmsigs.lo CC libguile_2.0_la-script.lo CC libguile_2.0_la-simpos.lo CC libguile_2.0_la-smob.lo CC libguile_2.0_la-sort.lo CC libguile_2.0_la-srcprop.lo CC libguile_2.0_la-srfi-1.lo CC libguile_2.0_la-srfi-4.lo CC libguile_2.0_la-srfi-13.lo CC libguile_2.0_la-srfi-14.lo CC libguile_2.0_la-srfi-60.lo CC libguile_2.0_la-stackchk.lo CC libguile_2.0_la-stacks.lo CC libguile_2.0_la-stime.lo CC libguile_2.0_la-strings.lo CC libguile_2.0_la-strorder.lo CC libguile_2.0_la-strports.lo CC libguile_2.0_la-struct.lo CC libguile_2.0_la-symbols.lo CC libguile_2.0_la-threads.lo threads.c: In function 'scm_cancel_thread': threads.c:1177:7: warning: statement with no effect [-Wunused-value] CC libguile_2.0_la-throw.lo CC libguile_2.0_la-trees.lo CC libguile_2.0_la-uniform.lo CC libguile_2.0_la-values.lo CC libguile_2.0_la-variable.lo CC libguile_2.0_la-vectors.lo CC libguile_2.0_la-version.lo CC libguile_2.0_la-vm.lo CC libguile_2.0_la-vports.lo CC libguile_2.0_la-weaks.lo CCLD libguile-2.0.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. copying selected object files to avoid basename conflicts... CC guile-guile.o CCLD guile.exe libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. SNARF alist.doc SNARF arbiters.doc SNARF array-handle.doc SNARF array-map.doc SNARF arrays.doc SNARF async.doc SNARF backtrace.doc SNARF boolean.doc SNARF bitvectors.doc SNARF bytevectors.doc SNARF chars.doc SNARF control.doc SNARF continuations.doc SNARF debug.doc SNARF deprecated.doc SNARF deprecation.doc SNARF dynl.doc SNARF dynwind.doc SNARF eq.doc SNARF error.doc SNARF eval.doc SNARF evalext.doc SNARF expand.doc SNARF extensions.doc SNARF feature.doc SNARF filesys.doc SNARF fluids.doc SNARF foreign.doc SNARF fports.doc SNARF gc-malloc.doc SNARF gc.doc SNARF gettext.doc SNARF generalized-arrays.doc generalized-arrays.c:139:***Mismatching FUNC_NAME. Should be: `#define FUNC_NAME s_scm_array_length' SNARF generalized-vectors.doc SNARF goops.doc SNARF gsubr.doc SNARF guardians.doc SNARF hash.doc SNARF hashtab.doc SNARF hooks.doc SNARF i18n.doc SNARF init.doc SNARF ioext.doc SNARF keywords.doc SNARF list.doc SNARF load.doc SNARF macros.doc SNARF mallocs.doc SNARF memoize.doc memoize.c:515:***Mismatching FUNC_NAME. Should be: `#define FUNC_NAME s_"@prompt"' SNARF modules.doc SNARF numbers.doc SNARF objprop.doc SNARF options.doc SNARF pairs.doc pairs.c:147:***Missing or erroneous `#define FUNC_NAME s_scm_cdr' pairs.c:150:***pairs.c:155:***Missing or erroneous `#define FUNC_NAME s_scm_cddr' pairs.c:158:***pairs.c:163:***Missing or erroneous `#define FUNC_NAME s_scm_cadr' pairs.c:166:***pairs.c:171:***Missing or erroneous `#define FUNC_NAME s_scm_cdddr' pairs.c:174:***pairs.c:179:***Missing or erroneous `#define FUNC_NAME s_scm_cdadr' pairs.c:182:***pairs.c:187:***Missing or erroneous `#define FUNC_NAME s_scm_caddr' pairs.c:190:***pairs.c:195:***Missing or erroneous `#define FUNC_NAME s_scm_caadr' pairs.c:198:***pairs.c:203:***Missing or erroneous `#define FUNC_NAME s_scm_cddddr' pairs.c:206:***pairs.c:211:***Missing or erroneous `#define FUNC_NAME s_scm_cddadr' pairs.c:214:***pairs.c:219:***Missing or erroneous `#define FUNC_NAME s_scm_cdaddr' pairs.c:222:***pairs.c:227:***Missing or erroneous `#define FUNC_NAME s_scm_cdaadr' pairs.c:230:***pairs.c:235:***Missing or erroneous `#define FUNC_NAME s_scm_cadddr' pairs.c:238:***pairs.c:243:***Missing or erroneous `#define FUNC_NAME s_scm_cadadr' pairs.c:246:***pairs.c:251:***Missing or erroneous `#define FUNC_NAME s_scm_caaddr' pairs.c:254:***pairs.c:259:***Missing or erroneous `#define FUNC_NAME s_scm_caaadr' pairs.c:262:***Missing or erroneous #undef for scm_car: Missing or erroneous #undef for scm_cdar: Missing or erroneous #undef for scm_caar: Missing or erroneous #undef for scm_cddar: Missing or erroneous #undef for scm_cdaar: Missing or erroneous #undef for scm_cadar: Missing or erroneous #undef for scm_caaar: Missing or erroneous #undef for scm_cdddar: Missing or erroneous #undef for scm_cddaar: Missing or erroneous #undef for scm_cdadar: Missing or erroneous #undef for scm_cdaaar: Missing or erroneous #undef for scm_caddar: Missing or erroneous #undef for scm_cadaar: Missing or erroneous #undef for scm_caadar: Missing or erroneous #undef for scm_caaaar: SNARF ports.doc SNARF print.doc SNARF procprop.doc SNARF procs.doc SNARF promises.doc SNARF r6rs-ports.doc SNARF random.doc SNARF rdelim.doc SNARF read.doc SNARF root.doc SNARF rw.doc SNARF scmsigs.doc SNARF script.doc SNARF simpos.doc SNARF smob.doc SNARF sort.doc SNARF srcprop.doc SNARF srfi-1.doc SNARF srfi-4.doc SNARF srfi-13.doc SNARF srfi-14.doc SNARF srfi-60.doc SNARF stackchk.doc SNARF stacks.doc SNARF stime.doc SNARF strings.doc SNARF strorder.doc SNARF strports.doc SNARF struct.doc SNARF symbols.doc SNARF threads.doc SNARF throw.doc SNARF trees.doc SNARF uniform.doc SNARF values.doc SNARF variable.doc SNARF vectors.doc SNARF version.doc SNARF vports.doc SNARF weaks.doc SNARF net_db.doc SNARF socket.doc SNARF win32-uname.doc SNARF regex-posix.doc SNARF mkstemp.doc GEN guile-procedures.texi rm -f guile-procedures.txt makeinfo --force -o guile-procedures.txt guile-procedures.texi || test -f guile-procedures.txt /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9915: Cross reference to nonexistent node `Backslash Escapes' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9610: Cross reference to nonexistent node `Network Address Conversion' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9549: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9499: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9197: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9190: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9183: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9097: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8462: Cross reference to nonexistent node `Vtables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8080: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:7899: Cross reference to nonexistent node `Bitwise Operations' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6590: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6568: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6512: Cross reference to nonexistent node `Multiple Values' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5456: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5165: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5154: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5143: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3203: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3010: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2681: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2674: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2667: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2097: Cross reference to nonexistent node `Character Encoding of Source Files' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2091: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2073: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib' /bin/sh ../libtool --mode=install /bin/install -c libguile-2.0.la '/c/Users/shookie/guiletest/lib/lib' libtool: install: /bin/install -c .libs/libguile-2.0.lai /c/Users/shookie/guiletest/lib/lib/libguile-2.0.la libtool: install: /bin/install -c .libs/libguile-2.0.a /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: chmod 644 /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: ranlib /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/sh ../libtool --mode=install /bin/install -c guile.exe '/c/Users/shookie/guiletest/lib/bin' libtool: install: /bin/install -c guile.exe /c/Users/shookie/guiletest/lib/bin/guile.exe /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-snarf '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' rm -f /c/Users/shookie/guiletest/lib/bin/guile-snarf.awk make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 __scm.h alist.h arbiters.h array-handle.h array-map.h arrays.h async.h backtrace.h bdw-gc.h boolean.h bitvectors.h bytevectors.h chars.h control.h continuations.h debug-malloc.h debug.h deprecated.h deprecation.h dynl.h dynwind.h eq.h error.h eval.h evalext.h expand.h extensions.h feature.h finalizers.h filesys.h fluids.h foreign.h fports.h frames.h gc.h gdb_interface.h gdbint.h gettext.h generalized-arrays.h generalized-vectors.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 goops.h gsubr.h guardians.h hash.h hashtab.h hooks.h i18n.h init.h inline.h instructions.h ioext.h iselect.h keywords.h list.h load.h macros.h mallocs.h memoize.h modules.h net_db.h null-threads.h numbers.h objcodes.h objprop.h options.h pairs.h poll.h ports.h posix.h print.h procprop.h procs.h programs.h promises.h pthread-threads.h r6rs-ports.h random.h rdelim.h read.h regex-posix.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 root.h rw.h scmsigs.h script.h simpos.h smob.h snarf.h socket.h sort.h srcprop.h srfi-1.h srfi-4.h srfi-13.h srfi-14.h srfi-60.h stackchk.h stacks.h stime.h strings.h strorder.h strports.h struct.h symbols.h tags.h threads.h throw.h trees.h validate.h uniform.h values.h variable.h vectors.h vm-engine.h vm-expand.h vm.h vports.h weaks.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 version.h scmconfig.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0' /bin/install -c -m 644 guile-procedures.txt '/c/Users/shookie/guiletest/lib/share/guile/2.0' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' Making install in module make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' GUILEC scripts/autofrisk.go Backtrace: In ice-9/psyntax.scm: 1101: 19 [expand-top-sequence ((define (unglob pattern) (let # #))) () ...] 1259: 18 [#<procedure 21d8540 at ice-9/psyntax.scm:1067:36 ()>] 1605: 17 [expand-simple-lambda (# . #) () (()) ...] 1509: 16 [parse (((# #) . #(syntax-object # # #))) () () () () () ()] In ice-9/boot-9.scm: 627: 15 [map #<procedure 2205e10 at ice-9/psyntax.scm:1510:50 (x)> ((# . #))] In ice-9/psyntax.scm: 2114: 14 [expand-let (let # #) (# #) (# # #) ...] In ice-9/boot-9.scm: 627: 13 [map #<procedure 2204ec0 at ice-9/psyntax.scm:2114:49 (x)> (#)] In ice-9/psyntax.scm: 1257: 12 [#<procedure 2204ec0 at ice-9/psyntax.scm:2114:49 (x)> (open-input-pipe #)] 1186: 11 [syntax-type (open-input-pipe #) (# #) (# # #) ...] 579: 10 [syntax-type open-input-pipe (# #) (# # #) ...] 292: 9 [get-global-definition-hook open-input-pipe (hygiene scripts autofrisk)] In unknown file: ?: 8 [module-variable #<directory (scripts autofrisk) 21a8dc8> open-input-pipe] In ice-9/boot-9.scm: 2790: 7 [b #<autoload (ice-9 popen) 21a86c0> open-input-pipe #f] 2579: 6 [#<procedure 1d76530 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 popen) #f] 2191: 4 [save-module-excursion #<procedure 2205d20 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 2205d20 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1f55340 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1f55340 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." make[3]: *** [scripts/autofrisk.go] Error 1 GUILEC scripts/scan-api.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 1f143a0 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: scripts/scan-api.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g95}#) 1f5b900>] 180: 16 [lp # # # ...] In ice-9/boot-9.scm: 2191: 15 [save-module-excursion #<procedure 2114900 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 2114900 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # :use-module # ...)) () ((top)) ...] 976: 12 [scan ((define-module (scripts scan-api) :use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2741: 9 [define-module* (scripts scan-api) #:filename ...] 2716: 8 [resolve-imports (((ice-9 popen)) ((ice-9 rdelim)) ((ice-9 regex)))] 2654: 7 [resolve-interface (ice-9 popen) #:select ...] 2579: 6 [#<procedure 1d155d0 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 popen) #f] 2191: 4 [save-module-excursion #<procedure 21401c8 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 21401c8 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1f14340 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1f14340 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." make[3]: *** [scripts/scan-api.go] Error 1 make[3]: Target `install' not remade because of errors. make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' Making install in guile-readline make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0/' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' Making install in examples make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' Making install in emacs make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' Making install in test-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in standalone make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make install-am make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Nothing to be done for `install-exec-am'. make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' Making install in vm make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in benchmark-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' Making install in gc-benchmarks make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' Making install in am make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' Making install in doc make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' Making install in ref make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' MAKEINFO guile.info make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./guile.info ./guile.info-1 ./guile.info-2 ./guile.info-3 ./guile.info-4 ./guile.info-5 ./guile.info-6 ./guile.info-7 ./guile.info-8 ./guile.info-9 ./guile.info-10 '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/guile.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' Making install in r5rs make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./r5rs.info '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/r5rs.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/man/man1' /bin/install -c -m 644 guile.1 '/c/Users/shookie/guiletest/lib/share/man/man1' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0' /bin/install -c -m 644 libguile.h '/c/Users/shookie/guiletest/lib/include/guile/2.0' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 [-- Attachment #3: Type: text/plain, Size: 3 bytes --] [-- Attachment #4: build.log --] [-- Type: application/octet-stream, Size: 139070 bytes --] cd lib/guile-2.0 && ./configure --prefix=/c/Users/shookie/guiletest/lib --disable-shared --disable-fast-install --with-gnu-ld --disable-deprecated --enable-nls --with-libgmp-prefix=/c/Users/shookie/guiletest/lib LIBFFI_CFLAGS='-I/c/Users/shookie/guiletest/lib/lib/libffi-3.0.12/include' LIBFFI_LIBS='-lffi' BDW_GC_LIBS='-lgc' BDW_GC_CFLAGS='-I/c/Users/shookie/guiletest/lib' CPPFLAGS='-D HAVE_GC_SET_FINALIZER_NOTIFIER -D HAVE_GC_GET_FREE_SPACE_DIVISOR -D HAVE_GC_GET_HEAP_USAGE_SAFE -D HAVE_GC_SET_FINALIZE_ON_DEMAND' CFLAGS='-s' && make -k install checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking build system type... i686-pc-mingw32 checking host system type... i686-pc-mingw32 checking for as... as checking for dlltool... dlltool checking for objdump... objdump checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.exe checking for suffix of executables... .exe checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for Minix Amsterdam compiler... no checking for ar... ar checking for ranlib... ranlib checking whether gcc and cc understand -c and -o together... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... unknown checking for _LARGE_FILES value needed for large files... unknown configure: autobuild project... GNU Guile configure: autobuild revision... 2.0.7.187-b5870 configure: autobuild hostname... bias configure: autobuild timestamp... 20130311T084112Z checking how to run the C preprocessor... gcc -E checking for a sed that does not truncate output... /bin/sed checking for gawk... (cached) gawk checking whether ln -s works... no, using cp -pR checking the archiver (ar) interface... ar checking for sys/socket.h... no checking for arpa/inet.h... no checking for features.h... no checking for sys/param.h... yes checking for dirent.h... yes checking for xlocale.h... no checking for unistd.h... (cached) yes checking for sys/stat.h... (cached) yes checking for netdb.h... no checking for netinet/in.h... no checking for iconv.h... yes checking for langinfo.h... no checking for math.h... yes checking for sys/mman.h... no checking for poll.h... no checking for sys/ioctl.h... no checking for sys/filio.h... no checking for sys/select.h... no checking for sys/time.h... yes checking for wchar.h... yes checking for stdint.h... (cached) yes checking for sys/file.h... yes checking for sys/times.h... no checking for sys/uio.h... no checking for wctype.h... yes checking ws2tcpip.h usability... yes checking ws2tcpip.h presence... yes checking for ws2tcpip.h... yes checking whether the preprocessor supports include_next... yes checking whether system header files limit the line length... no checking whether <sys/socket.h> is self-contained... no checking for struct sockaddr_storage... yes checking for sa_family_t... no checking for struct sockaddr_storage.ss_family... yes checking winsock2.h usability... yes checking winsock2.h presence... yes checking for winsock2.h... yes checking whether socket is declared without a macro... no checking whether connect is declared without a macro... no checking whether accept is declared without a macro... no checking whether bind is declared without a macro... no checking whether getpeername is declared without a macro... no checking whether getsockname is declared without a macro... no checking whether getsockopt is declared without a macro... no checking whether listen is declared without a macro... no checking whether recv is declared without a macro... no checking whether send is declared without a macro... no checking whether recvfrom is declared without a macro... no checking whether sendto is declared without a macro... no checking whether setsockopt is declared without a macro... no checking whether shutdown is declared without a macro... no checking whether accept4 is declared without a macro... no checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking whether <wchar.h> uses 'inline' correctly... yes checking for btowc... yes checking for canonicalize_file_name... no checking for getcwd... yes checking for readlink... no checking for realpath... no checking for _set_invalid_parameter_handler... no checking for duplocale... no checking for symlink... no checking for flock... no checking for fcntl... no checking for alarm... no checking for getlogin... no checking for lstat... no checking for mbsinit... yes checking for mbrtowc... yes checking for mprotect... yes checking for nl_langinfo... no checking for pipe... no checking for pipe2... no checking for isblank... yes checking for iswctype... yes checking for wcscoll... yes checking for link... no checking for setenv... no checking for snprintf... yes checking for tzset... yes checking for localtime_r... no checking for times... no checking for vasnprintf... no checking for wcrtomb... yes checking for iswcntrl... yes checking for nl_langinfo and CODESET... no checking for a traditional french locale... French_France.1252 checking whether // is distinct from /... yes checking whether realpath works... no checking for wchar_t... yes checking whether NULL can be used in arbitrary expressions... yes checking whether locale.h conforms to POSIX:2001... no checking whether struct lconv is properly defined... no checking whether setlocale is declared without a macro... yes checking whether duplocale is declared without a macro... no checking if environ is properly declared... yes checking for complete errno.h... no checking for EMULTIHOP value... no checking for ENOLINK value... no checking for EOVERFLOW value... no checking for working fcntl.h... no checking for pid_t... yes checking for mode_t... yes checking whether frexp() can be used without linking with libm... yes checking whether stat file-mode macros are broken... no checking for 64-bit off_t... no checking for nlink_t... no checking whether fchmodat is declared without a macro... no checking whether fstat is declared without a macro... yes checking whether fstatat is declared without a macro... no checking whether futimens is declared without a macro... no checking whether lchmod is declared without a macro... no checking whether lstat is declared without a macro... no checking whether mkdirat is declared without a macro... no checking whether mkfifo is declared without a macro... no checking whether mkfifoat is declared without a macro... no checking whether mknod is declared without a macro... no checking whether mknodat is declared without a macro... no checking whether stat is declared without a macro... yes checking whether utimensat is declared without a macro... no checking whether getaddrinfo is declared without a macro... no checking whether freeaddrinfo is declared without a macro... no checking whether gai_strerror is declared without a macro... no checking whether getnameinfo is declared without a macro... no checking for library containing gethostbyname... no checking for gethostbyname... no checking for gethostbyname in winsock2.h and -lws2_32... yes checking for library containing getservbyname... no checking for getservbyname... no checking for getservbyname in winsock2.h and -lws2_32... yes checking for C/C++ restrict keyword... __restrict checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... no checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for shared library run path origin... done checking for iconv... yes checking for working iconv... yes checking how to link with libiconv... -liconv checking for iconv declaration... extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for inline... inline checking whether byte ordering is bigendian... no checking whether long double and double are the same... no checking where to find the exponent in a 'float'... word 0 bit 23 checking whether isnan(float) can be used without linking with libm... yes checking whether isnan(float) works... yes checking whether isnan(double) can be used without linking with libm... yes checking whether isnan(long double) can be used without linking with libm... yes checking whether isnanl works... no checking where to find the exponent in a 'double'... word 1 bit 20 checking whether ldexp() can be used without linking with libm... yes checking for libunistring... yes checking how to link with libunistring... -lunistring checking for libunistring version... 0.9.3 checking whether getc_unlocked is declared... no checking whether we are using the GNU C Library >= 2.1 or uClibc... no checking whether pow can be used without linking with libm... yes checking whether log works... yes checking whether round is declared... yes checking whether round works... yes checking whether lstat correctly handles trailing slash... guessing no checking whether malloc, realloc, calloc are POSIX compliant... no checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for unsigned long long int... yes checking for long long int... yes checking for mbstate_t... yes checking for a traditional japanese locale... none checking for a transitional chinese locale... none checking for a french Unicode locale... none checking for mmap... no checking whether memchr works... yes checking for promoted mode_t type... int checking whether poll is declared without a macro... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... yes checking for ssize_t... yes checking whether <sys/select.h> is self-contained... no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... no checking whether select is declared without a macro... no checking whether setenv is declared... no checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for sigset_t... yes checking for uid_t in sys/types.h... no checking whether snprintf returns a byte count as in C99... yes checking whether snprintf is declared... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking whether stdint.h conforms to C99... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_zone... no checking whether tzname is declared... yes checking for tzname... yes checking for struct tm.tm_gmtoff... no checking whether ffsl is declared without a macro... no checking whether ffsll is declared without a macro... no checking whether memmem is declared without a macro... no checking whether mempcpy is declared without a macro... no checking whether memrchr is declared without a macro... no checking whether rawmemchr is declared without a macro... no checking whether stpcpy is declared without a macro... no checking whether stpncpy is declared without a macro... no checking whether strchrnul is declared without a macro... no checking whether strdup is declared without a macro... yes checking whether strncat is declared without a macro... yes checking whether strndup is declared without a macro... no checking whether strnlen is declared without a macro... no checking whether strpbrk is declared without a macro... yes checking whether strsep is declared without a macro... no checking whether strcasestr is declared without a macro... no checking whether strtok_r is declared without a macro... no checking whether strerror_r is declared without a macro... no checking whether strsignal is declared without a macro... no checking whether strverscmp is declared without a macro... no checking for winsock2.h... (cached) yes checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking whether gettimeofday is declared without a macro... yes checking for struct timespec in <time.h>... no checking for struct timespec in <sys/time.h>... no checking for struct timespec in <pthread.h>... yes checking for wint_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking for snprintf... (cached) yes checking for strnlen... no checking for wcslen... yes checking for wcsnlen... no checking for mbrtowc... (cached) yes checking for wcrtomb... (cached) yes checking whether _snprintf is declared... yes checking whether vsnprintf is declared... yes checking whether inet_ntop is declared without a macro... no checking whether inet_pton is declared without a macro... no checking whether btowc(0) is correct... yes checking whether btowc(EOF) is correct... yes checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking for library containing clock_gettime... no checking for clock_gettime... no checking for clock_settime... no checking for clock_getcpuclockid... no checking for winsock2.h... (cached) yes checking whether alphasort is declared without a macro... no checking whether closedir is declared without a macro... yes checking whether dirfd is declared without a macro... no checking whether fdopendir is declared without a macro... no checking whether opendir is declared without a macro... yes checking whether readdir is declared without a macro... yes checking whether rewinddir is declared without a macro... yes checking whether scandir is declared without a macro... no checking for dirfd... no checking whether dirfd is declared... no checking whether dirfd is a macro... no checking how to get the file descriptor associated with an open DIR*... no_such_member checking whether // is distinct from /... (cached) yes checking whether dup2 works... no checking whether fcntl is declared without a macro... no checking whether openat is declared without a macro... no checking whether conversion from 'int' to 'long double' works... yes checking for struct flock.l_type... no checking whether frexp works... no checking whether __func__ is available... yes configure: checking how to do getaddrinfo, freeaddrinfo and getnameinfo checking for library containing getaddrinfo... no checking for getaddrinfo... no checking for getaddrinfo in ws2tcpip.h and -lws2_32... no checking whether gai_strerror is declared... yes checking whether gai_strerrorA is declared... yes checking for gai_strerror with POSIX signature... no checking for struct sockaddr.sa_len... no checking whether getaddrinfo is declared... no checking whether freeaddrinfo is declared... no checking whether getnameinfo is declared... no checking for struct addrinfo... yes checking for library containing gethostbyname... (cached) no checking for gethostbyname... (cached) no checking for gethostbyname in winsock2.h and -lws2_32... (cached) yes checking whether iconv supports conversion between UTF-8 and UTF-{16,32}{BE,LE}... yes checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... (cached) no checking for winsock2.h... (cached) yes checking whether inet_pton is declared... no checking whether the compiler generally respects inline... no checking whether isinf is declared... yes checking whether isinf(long double) works... yes checking whether isnan macro works... no checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(float) can be used without linking with libm... (cached) yes checking whether isnan(float) works... (cached) yes checking where to find the exponent in a 'float'... (cached) word 0 bit 23 checking whether isnan(long double) can be used without linking with libm... (cached) yes checking whether isnanl works... (cached) no checking where to find the exponent in a 'long double'... word 2 bit 0 checking whether nl_langinfo is declared without a macro... no checking if LD -Wl,--version-script works... yes checking whether the -Werror option is usable... yes checking for simple visibility declarations... yes checking whether locale.h conforms to POSIX:2001... (cached) no checking whether struct lconv is properly defined... (cached) no checking whether setlocale is declared without a macro... (cached) yes checking whether duplocale is declared without a macro... (cached) no checking for struct lconv.decimal_point... yes checking for log1p... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking whether NAN macro works... yes checking whether HUGE_VAL works... yes checking whether acosf is declared without a macro... yes checking whether acosl is declared without a macro... yes checking whether asinf is declared without a macro... yes checking whether asinl is declared without a macro... yes checking whether atanf is declared without a macro... yes checking whether atanl is declared without a macro... yes checking whether cbrt is declared without a macro... yes checking whether cbrtf is declared without a macro... yes checking whether cbrtl is declared without a macro... yes checking whether ceilf is declared without a macro... yes checking whether ceill is declared without a macro... yes checking whether copysign is declared without a macro... yes checking whether copysignf is declared without a macro... yes checking whether copysignl is declared without a macro... yes checking whether cosf is declared without a macro... yes checking whether cosl is declared without a macro... yes checking whether coshf is declared without a macro... yes checking whether expf is declared without a macro... yes checking whether expl is declared without a macro... yes checking whether exp2 is declared without a macro... yes checking whether exp2f is declared without a macro... yes checking whether exp2l is declared without a macro... yes checking whether expm1 is declared without a macro... yes checking whether expm1f is declared without a macro... yes checking whether expm1l is declared without a macro... yes checking whether fabsf is declared without a macro... yes checking whether fabsl is declared without a macro... yes checking whether floorf is declared without a macro... yes checking whether floorl is declared without a macro... yes checking whether fma is declared without a macro... yes checking whether fmaf is declared without a macro... yes checking whether fmal is declared without a macro... yes checking whether fmod is declared without a macro... yes checking whether fmodf is declared without a macro... yes checking whether fmodl is declared without a macro... yes checking whether frexpf is declared without a macro... yes checking whether frexpl is declared without a macro... yes checking whether hypotf is declared without a macro... yes checking whether hypotl is declared without a macro... yes checking whether ilogb is declared without a macro... yes checking whether ilogbf is declared without a macro... yes checking whether ilogbl is declared without a macro... yes checking whether ldexpf is declared without a macro... yes checking whether ldexpl is declared without a macro... yes checking whether log is declared without a macro... yes checking whether logf is declared without a macro... yes checking whether logl is declared without a macro... yes checking whether log10 is declared without a macro... yes checking whether log10f is declared without a macro... yes checking whether log10l is declared without a macro... yes checking whether log1p is declared without a macro... yes checking whether log1pf is declared without a macro... yes checking whether log1pl is declared without a macro... yes checking whether log2 is declared without a macro... yes checking whether log2f is declared without a macro... yes checking whether log2l is declared without a macro... yes checking whether logb is declared without a macro... yes checking whether logbf is declared without a macro... yes checking whether logbl is declared without a macro... yes checking whether modf is declared without a macro... yes checking whether modff is declared without a macro... yes checking whether modfl is declared without a macro... yes checking whether powf is declared without a macro... yes checking whether remainder is declared without a macro... yes checking whether remainderf is declared without a macro... yes checking whether remainderl is declared without a macro... yes checking whether rint is declared without a macro... yes checking whether rintf is declared without a macro... yes checking whether rintl is declared without a macro... yes checking whether round is declared without a macro... yes checking whether roundf is declared without a macro... yes checking whether roundl is declared without a macro... yes checking whether sinf is declared without a macro... yes checking whether sinl is declared without a macro... yes checking whether sinhf is declared without a macro... yes checking whether sqrtf is declared without a macro... yes checking whether sqrtl is declared without a macro... yes checking whether tanf is declared without a macro... yes checking whether tanl is declared without a macro... yes checking whether tanhf is declared without a macro... yes checking whether trunc is declared without a macro... yes checking whether truncf is declared without a macro... yes checking whether truncl is declared without a macro... yes checking whether mbrtowc handles incomplete characters... guessing yes checking whether mbrtowc works as well as mbtowc... guessing yes checking whether mbrtowc handles a NULL pwc argument... guessing yes checking whether mbrtowc handles a NULL string argument... guessing yes checking whether mbrtowc has a correct return value... no checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether getaddrinfo is declared without a macro... (cached) no checking whether freeaddrinfo is declared without a macro... (cached) no checking whether gai_strerror is declared without a macro... (cached) no checking whether getnameinfo is declared without a macro... (cached) no checking whether <netinet/in.h> is self-contained... no checking for netinet/in.h... (cached) no checking for sys/pstat.h... no checking for sys/sysmp.h... no checking for sys/param.h... (cached) yes checking for sys/sysctl.h... no checking for sched_getaffinity... no checking for sched_getaffinity_np... no checking for pstat_getdynamic... no checking for sysmp... no checking for sysctl... no checking for poll... (cached) no checking whether poll is declared without a macro... (cached) no checking for putenv compatible with GNU and SVID... no checking for _putenv... yes checking for raise... yes checking for working re_compile_pattern... no checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking whether isblank is declared... yes checking whether rename honors trailing slash on destination... no checking whether rename honors trailing slash on source... yes checking whether rename manages hard links correctly... yes checking whether rename manages existing destinations correctly... no checking whether rmdir works... no checking whether round is declared... (cached) yes checking whether round works... (cached) yes checking for library containing getservbyname... (cached) no checking for getservbyname... (cached) no checking for getservbyname in winsock2.h and -lws2_32... (cached) yes checking for volatile sig_atomic_t... yes checking for sighandler_t... no checking whether pthread_sigmask is declared without a macro... no checking whether sigaction is declared without a macro... no checking whether sigaddset is declared without a macro... no checking whether sigdelset is declared without a macro... no checking whether sigemptyset is declared without a macro... no checking whether sigfillset is declared without a macro... no checking whether sigismember is declared without a macro... no checking whether sigpending is declared without a macro... no checking whether sigprocmask is declared without a macro... no checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking for snprintf... (cached) yes checking whether snprintf respects a size of 1... yes checking whether printf supports POSIX/XSI format strings with positions... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... (cached) yes checking for socklen_t... yes checking for ssize_t... (cached) yes checking whether stat handles trailing slashes on directories... no checking whether stat handles trailing slashes on files... yes checking for struct stat.st_atim.tv_nsec... no checking for struct stat.st_atimespec.tv_nsec... no checking for struct stat.st_atimensec... no checking for struct stat.st_atim.st__tim.tv_nsec... no checking for struct stat.st_birthtimespec.tv_nsec... no checking for struct stat.st_birthtimensec... no checking for struct stat.st_birthtim.tv_nsec... no checking for working stdalign.h... yes checking whether NULL can be used in arbitrary expressions... (cached) yes checking whether dprintf is declared without a macro... no checking whether fpurge is declared without a macro... no checking whether fseeko is declared without a macro... no checking whether ftello is declared without a macro... no checking whether getdelim is declared without a macro... no checking whether getline is declared without a macro... no checking whether gets is declared without a macro... yes checking whether pclose is declared without a macro... yes checking whether popen is declared without a macro... yes checking whether renameat is declared without a macro... no checking whether snprintf is declared without a macro... yes checking whether tmpfile is declared without a macro... yes checking whether vdprintf is declared without a macro... no checking whether vsnprintf is declared without a macro... yes checking whether _Exit is declared without a macro... yes checking whether atoll is declared without a macro... yes checking whether canonicalize_file_name is declared without a macro... no checking whether getloadavg is declared without a macro... no checking whether getsubopt is declared without a macro... no checking whether grantpt is declared without a macro... no checking whether initstate is declared without a macro... no checking whether initstate_r is declared without a macro... no checking whether mkdtemp is declared without a macro... no checking whether mkostemp is declared without a macro... no checking whether mkostemps is declared without a macro... no checking whether mkstemp is declared without a macro... no checking whether mkstemps is declared without a macro... no checking whether posix_openpt is declared without a macro... no checking whether ptsname is declared without a macro... no checking whether ptsname_r is declared without a macro... no checking whether random is declared without a macro... no checking whether random_r is declared without a macro... no checking whether realpath is declared without a macro... no checking whether rpmatch is declared without a macro... no checking whether secure_getenv is declared without a macro... no checking whether setenv is declared without a macro... no checking whether setstate is declared without a macro... no checking whether setstate_r is declared without a macro... no checking whether srandom is declared without a macro... no checking whether srandom_r is declared without a macro... no checking whether strtod is declared without a macro... yes checking whether strtoll is declared without a macro... yes checking whether strtoull is declared without a macro... yes checking whether unlockpt is declared without a macro... no checking whether unsetenv is declared without a macro... no checking whether flock is declared without a macro... no checking whether <sys/select.h> is self-contained... (cached) no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... (cached) no checking whether select is declared without a macro... (cached) no checking whether <sys/socket.h> is self-contained... (cached) no checking for struct sockaddr_storage... (cached) yes checking for sa_family_t... (cached) no checking for struct sockaddr_storage.ss_family... (cached) yes checking for winsock2.h... (cached) yes checking whether socket is declared without a macro... (cached) no checking whether connect is declared without a macro... (cached) no checking whether accept is declared without a macro... (cached) no checking whether bind is declared without a macro... (cached) no checking whether getpeername is declared without a macro... (cached) no checking whether getsockname is declared without a macro... (cached) no checking whether getsockopt is declared without a macro... (cached) no checking whether listen is declared without a macro... (cached) no checking whether recv is declared without a macro... (cached) no checking whether send is declared without a macro... (cached) no checking whether recvfrom is declared without a macro... (cached) no checking whether sendto is declared without a macro... (cached) no checking whether setsockopt is declared without a macro... (cached) no checking whether shutdown is declared without a macro... (cached) no checking whether accept4 is declared without a macro... (cached) no checking for nlink_t... (cached) no checking whether fchmodat is declared without a macro... (cached) no checking whether fstat is declared without a macro... (cached) yes checking whether fstatat is declared without a macro... (cached) no checking whether futimens is declared without a macro... (cached) no checking whether lchmod is declared without a macro... (cached) no checking whether lstat is declared without a macro... (cached) no checking whether mkdirat is declared without a macro... (cached) no checking whether mkfifo is declared without a macro... (cached) no checking whether mkfifoat is declared without a macro... (cached) no checking whether mknod is declared without a macro... (cached) no checking whether mknodat is declared without a macro... (cached) no checking whether stat is declared without a macro... (cached) yes checking whether utimensat is declared without a macro... (cached) no checking whether times is declared without a macro... no checking whether localtime_r is declared... no checking whether trunc is declared... (cached) yes checking whether chdir is declared without a macro... yes checking whether chown is declared without a macro... no checking whether dup is declared without a macro... yes checking whether dup2 is declared without a macro... yes checking whether dup3 is declared without a macro... no checking whether environ is declared without a macro... no checking whether euidaccess is declared without a macro... no checking whether faccessat is declared without a macro... no checking whether fchdir is declared without a macro... no checking whether fchownat is declared without a macro... no checking whether fdatasync is declared without a macro... no checking whether fsync is declared without a macro... no checking whether ftruncate is declared without a macro... yes checking whether getcwd is declared without a macro... yes checking whether getdomainname is declared without a macro... no checking whether getdtablesize is declared without a macro... no checking whether getgroups is declared without a macro... no checking whether gethostname is declared without a macro... no checking whether getlogin is declared without a macro... no checking whether getlogin_r is declared without a macro... no checking whether getpagesize is declared without a macro... no checking whether getusershell is declared without a macro... no checking whether setusershell is declared without a macro... no checking whether endusershell is declared without a macro... no checking whether group_member is declared without a macro... no checking whether isatty is declared without a macro... yes checking whether lchown is declared without a macro... no checking whether link is declared without a macro... no checking whether linkat is declared without a macro... no checking whether lseek is declared without a macro... yes checking whether pipe is declared without a macro... no checking whether pipe2 is declared without a macro... no checking whether pread is declared without a macro... no checking whether pwrite is declared without a macro... no checking whether readlink is declared without a macro... no checking whether readlinkat is declared without a macro... no checking whether rmdir is declared without a macro... yes checking whether sethostname is declared without a macro... no checking whether sleep is declared without a macro... no checking whether symlink is declared without a macro... no checking whether symlinkat is declared without a macro... no checking whether ttyname_r is declared without a macro... no checking whether unlink is declared without a macro... yes checking whether unlinkat is declared without a macro... no checking whether usleep is declared without a macro... yes checking for ptrdiff_t... yes checking for vsnprintf... yes checking whether snprintf respects a size of 1... (cached) yes checking whether printf supports POSIX/XSI format strings with positions... (cached) no checking whether btowc is declared without a macro... yes checking whether wctob is declared without a macro... yes checking whether mbsinit is declared without a macro... yes checking whether mbrtowc is declared without a macro... yes checking whether mbrlen is declared without a macro... yes checking whether mbsrtowcs is declared without a macro... yes checking whether mbsnrtowcs is declared without a macro... no checking whether wcrtomb is declared without a macro... yes checking whether wcsrtombs is declared without a macro... yes checking whether wcsnrtombs is declared without a macro... no checking whether wcwidth is declared without a macro... no checking whether wmemchr is declared without a macro... yes checking whether wmemcmp is declared without a macro... yes checking whether wmemcpy is declared without a macro... yes checking whether wmemmove is declared without a macro... yes checking whether wmemset is declared without a macro... yes checking whether wcslen is declared without a macro... yes checking whether wcsnlen is declared without a macro... no checking whether wcscpy is declared without a macro... yes checking whether wcpcpy is declared without a macro... no checking whether wcsncpy is declared without a macro... yes checking whether wcpncpy is declared without a macro... no checking whether wcscat is declared without a macro... yes checking whether wcsncat is declared without a macro... yes checking whether wcscmp is declared without a macro... yes checking whether wcsncmp is declared without a macro... yes checking whether wcscasecmp is declared without a macro... no checking whether wcsncasecmp is declared without a macro... no checking whether wcscoll is declared without a macro... yes checking whether wcsxfrm is declared without a macro... yes checking whether wcsdup is declared without a macro... yes checking whether wcschr is declared without a macro... yes checking whether wcsrchr is declared without a macro... yes checking whether wcscspn is declared without a macro... yes checking whether wcsspn is declared without a macro... yes checking whether wcspbrk is declared without a macro... yes checking whether wcsstr is declared without a macro... yes checking whether wcstok is declared without a macro... yes checking whether wcswidth is declared without a macro... no checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether wcrtomb return value is correct... yes checking whether iswcntrl works... yes checking for towlower... yes checking for wctype_t... yes checking for wctrans_t... yes checking whether wctype is declared without a macro... yes checking whether iswctype is declared without a macro... yes checking whether wctrans is declared without a macro... yes checking whether towctrans is declared without a macro... yes checking for stdint.h... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for fgrep... /bin/grep -F checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /mingw/bin/nm checking the name lister (/mingw/bin/nm) interface... BSD nm checking the maximum length of command line arguments... 8192 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert i686-pc-mingw32 file names to i686-pc-mingw32 format... func_convert_file_msys_to_w32 checking how to convert i686-pc-mingw32 file names to toolchain format... func_convert_file_msys_to_w32 checking for c:/mingw/mingw32/bin/ld.exe option to reload object files... -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... func_cygming_dll_for_implib checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... (cached) ranlib checking command to parse /mingw/bin/nm output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... no checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (c:/mingw/mingw32/bin/ld.exe) supports shared libraries... yes checking dynamic linker characteristics... Win32 ld.exe checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking for libltdl... yes checking how to link with libltdl... -lltdl checking for makeinfo... yes checking for emacs... no checking for xemacs... no checking where .elc files should go... ${datadir}/emacs/site-lisp checking whether to use system and library "64" calls... yes checking for __uc_get_ar_bsp in -luca... no checking for an ANSI C-conforming const... yes checking for working volatile... yes checking for inline... (cached) inline checking for __uc_get_ar_bsp in -luca... (cached) no checking whether byte ordering is bigendian... (cached) no checking labels as values... yes checking size of char... 1 checking size of unsigned char... 1 checking size of short... 2 checking size of unsigned short... 2 checking size of int... 4 checking size of unsigned int... 4 checking size of long... 4 checking size of unsigned long... 4 checking size of size_t... 4 checking size of long long... 8 checking size of unsigned long long... 8 checking size of __int64... 8 checking size of unsigned __int64... 8 checking size of void *... 4 checking size of intptr_t... 4 checking size of uintptr_t... 4 checking size of ptrdiff_t... 4 checking size of size_t... (cached) 4 checking size of off_t... 4 checking for stdint.h... (cached) yes checking for inttypes.h... (cached) yes checking size of intmax_t... 8 checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... yes checking for uintptr_t... yes checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... (cached) yes checking for uintptr_t... (cached) yes checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for struct dirent64.d_name... no checking complex.h usability... yes checking complex.h presence... yes checking for complex.h... yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking io.h usability... yes checking io.h presence... yes checking for io.h... yes checking libc.h usability... no checking libc.h presence... no checking for libc.h... no checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for memory.h... (cached) yes checking process.h usability... yes checking process.h presence... yes checking for process.h... yes checking for string.h... (cached) yes checking sys/dir.h usability... no checking sys/dir.h presence... no checking for sys/dir.h... no checking for sys/ioctl.h... (cached) no checking for sys/select.h... (cached) no checking for sys/time.h... (cached) yes checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking for sys/times.h... (cached) no checking sys/stdtypes.h usability... no checking sys/stdtypes.h presence... no checking for sys/stdtypes.h... no checking for sys/types.h... (cached) yes checking sys/utime.h usability... yes checking sys/utime.h presence... yes checking for sys/utime.h... yes checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking for unistd.h... (cached) yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking pwd.h usability... no checking pwd.h presence... no checking for pwd.h... no checking grp.h usability... no checking grp.h presence... no checking for grp.h... no checking sys/utsname.h usability... no checking sys/utsname.h presence... no checking for sys/utsname.h... no checking direct.h usability... yes checking direct.h presence... yes checking for direct.h... yes checking machine/fpu.h usability... no checking machine/fpu.h presence... no checking for machine/fpu.h... no checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking for complex double... yes checking for socklen_t... (cached) yes checking for struct ip_mreq... no checking for libc.h... (cached) no checking for unistd.h... (cached) yes checking whether libc.h and unistd.h can be included together... no checking type of array argument to getgroups... int checking return type of signal handlers... void checking for mode_t... (cached) yes checking for cos in -lm... yes checking for gethostbyname... (cached) no checking for gethostbyname in -lnsl... no checking for connect... no checking for connect in -lsocket... no checking for winsock2.h... (cached) yes checking for main in -lws2_32... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking crt_externs.h usability... no checking crt_externs.h presence... no checking for crt_externs.h... no checking for DINFINITY... no checking for DQNAN... no checking for cexp... yes checking for chsize... yes checking for clog... yes checking for clog10... no checking for ctermid... no checking for fesetround... yes checking for ftime... yes checking for ftruncate... yes checking for fchown... no checking for fchmod... no checking for getcwd... (cached) yes checking for geteuid... no checking for getsid... no checking for gettimeofday... yes checking for gmtime_r... no checking for ioctl... no checking for lstat... (cached) no checking for mkdir... yes checking for mknod... no checking for nice... no checking for pipe... (cached) no checking for _pipe... yes checking for readdir_r... no checking for readdir64_r... no checking for readlink... (cached) no checking for rename... yes checking for rmdir... yes checking for select... no checking for setegid... no checking for seteuid... no checking for setlocale... yes checking for setpgid... no checking for setsid... no checking for sigaction... no checking for siginterrupt... no checking for stat64... no checking for strftime... yes checking for strptime... no checking for symlink... (cached) no checking for sync... no checking for sysconf... no checking for tcgetpgrp... no checking for tcsetpgrp... no checking for times... (cached) no checking for uname... no checking for waitpid... no checking for strdup... yes checking for system... yes checking for usleep... yes checking for atexit... yes checking for on_exit... no checking for chown... no checking for link... (cached) no checking for fcntl... (cached) no checking for ttyname... no checking for getpwent... no checking for getgrent... no checking for kill... no checking for getppid... no checking for getpgrp... no checking for fork... no checking for setitimer... no checking for getitimer... no checking for strchr... yes checking for strcmp... yes checking for index... no checking for bcopy... no checking for memcpy... yes checking for rindex... no checking for truncate... no checking for unsetenv... no checking for isblank... (cached) yes checking for _NSGetEnviron... no checking for strcoll... yes checking for strcoll_l... no checking for newlocale... no checking for utimensat... no checking for sched_getaffinity... (cached) no checking for sched_setaffinity... no checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking for netdb.h... (cached) no checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking pthread_np.h usability... no checking pthread_np.h presence... no checking for pthread_np.h... no checking for sys/param.h... (cached) yes checking sys/resource.h usability... no checking sys/resource.h presence... no checking for sys/resource.h... no checking for sys/file.h... (cached) yes checking for sys/mman.h... (cached) no checking for chroot... no checking for flock... (cached) no checking for getlogin... (cached) no checking for cuserid... no checking for getpriority... no checking for setpriority... no checking for getpass... no checking for sethostname... no checking for gethostname... no checking whether sethostname is declared... no checking whether hstrerror is declared... no checking whether cuserid is declared... no checking for library containing crypt... no checking for i... _Complex_I checking whether csqrt is usable... yes checking for libgmp... yes checking how to link with libgmp... /c/Users/shookie/guiletest/lib/lib/libgmp.a checking whether libunistring was built with iconv support... yes checking for pkg-config... no checking for LIBFFI... yes checking size of size_t... (cached) 4 checking size of ssize_t... 4 checking whether NLS is requested... yes checking for msgfmt... /mingw/bin/msgfmt checking for gmsgfmt... /mingw/bin/msgfmt checking for xgettext... /mingw/bin/xgettext checking for msgmerge... /mingw/bin/msgmerge checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking for GNU gettext in libc... no checking for iconv... (cached) yes checking for working iconv... (cached) yes checking how to link with libiconv... -liconv checking for GNU gettext in libintl... yes checking whether to use NLS... yes checking where the gettext function comes from... external libintl checking how to link with libintl... -lintl checking for sleep declaration... yes checking for usleep declaration... yes checking whether getlogin is declared... no checking whether alarm is declared... no checking whether strptime is declared... no checking return type of usleep... int checking sys/un.h usability... no checking sys/un.h presence... no checking for sys/un.h... no checking for getrlimit... no checking for setrlimit... no checking for socketpair... no checking for getgroups... no checking for setgroups... no checking for setpwent... no checking for pause... no checking for tzset... (cached) yes checking for sethostent... no checking for gethostent... no checking for endhostent... no checking for setnetent... no checking for getnetent... no checking for endnetent... no checking for setprotoent... no checking for getprotoent... no checking for endprotoent... no checking for setservent... no checking for getservent... no checking for endservent... no checking for getnetbyaddr... no checking for getnetbyname... no checking for inet_lnaof... no checking for inet_makeaddr... no checking for inet_netof... no checking for hstrerror... no checking for struct sockaddr_in.sin_len... no checking for __libc_stack_end... no checking whether netdb.h declares h_errno... no checking whether uint32_t is defined... no checking for working IPv6 support... no checking whether sockaddr_in6 has sin6_scope_id... no checking for struct sockaddr_in6.sin6_len... no checking whether localtime caches TZ... yes checking for strerror... yes checking for memmove... yes checking for mkstemp... no checking for asinh... yes checking for acosh... yes checking for atanh... yes checking for copysign... yes checking for finite... yes checking for sincos... no checking for trunc... yes checking for isinf... yes checking for isnan... yes checking for struct stat.st_rdev... yes checking for struct stat.st_blksize... no checking for struct stat.st_blocks... no checking for struct stat.st_atim... no checking for struct stat.st_mtim... no checking for struct stat.st_ctim... no checking for struct tm.tm_zone... (cached) no checking whether tzname is declared... (cached) yes checking for tzname... (cached) yes checking for struct tm.tm_gmtoff... (cached) no checking whether we need POSIX to get struct utimbuf... no checking the value of `iconveh_error'... 0 checking the value of `iconveh_question_mark'... 1 checking the value of `iconveh_escape_sequence'... 2 checking for BDW_GC... yes checking for GC_do_blocking... no checking for GC_call_with_gc_active... no checking for GC_pthread_exit... no checking for GC_pthread_cancel... no checking for GC_allow_register_threads... no checking for GC_pthread_sigmask... no checking for GC_set_start_callback... no checking for GC_get_heap_usage_safe... no checking for GC_get_free_space_divisor... no checking for GC_gcollect_and_unmap... no checking for GC_get_unmapped_bytes... no checking for GC_set_finalizer_notifier... no checking for GC_set_finalize_on_demand... no checking for GC_set_all_interior_pointers... no checking for GC_get_gc_no... no checking for GC_set_java_finalization... no checking whether GC_do_blocking is declared... yes checking for GC_fn_type... yes checking for struct GC_stack_base... yes checking size of float... 4 checking for struct linger... no checking for struct timespec... yes checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no checking whether pthreads work with -kthread... no checking for the pthreads library -llthread... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... no checking for pthread_attr_getstack... no checking for pthread_getattr_np... no checking for pthread_get_stackaddr_np... no checking for pthread_attr_get_np... no checking for pthread_sigmask... no checking whether PTHREAD_ONCE_INIT needs braces... no checking whether PTHREAD_MUTEX_INITIALIZER needs braces... no checking for library containing sched_yield... no checking what kind of threads to support... pthreads checking whether pthread_attr_getstack works for the main thread... no checking whether the `__thread' storage class is available... yes checking whether C compiler handles -Wall... yes checking whether C compiler handles -Wmissing-prototypes... yes checking whether C compiler handles -Wdeclaration-after-statement... yes checking whether C compiler handles -Wpointer-arith... yes checking whether C compiler handles -Wswitch-enum... yes checking whether C compiler handles -fno-strict-aliasing... yes checking whether the linker understands `-z relro'... no checking for tgoto in -lncurses... no checking for tgoto in -lcurses... no checking for tgoto in -ltermcap... no checking for tgoto in -lterminfo... no checking for tgoto in -ltermlib... no checking for tgoto in -lpdcurses... no checking how to link with libreadline... /c/Users/shookie/guiletest/lib/lib/libreadline.a checking for siginterrupt... (cached) no checking for rl_clear_signals... no checking for rl_cleanup_after_signal... no checking for rl_filename_completion_function... no checking whether rl_catch_signals is declared... yes checking whether rl_catch_sigwinch is declared... yes checking for rl_get_keymap... no checking for rl_getc_function pointer in readline... no configure: WARNING: *** GNU Readline is too old on your system. configure: WARNING: *** You need readline version 2.1 or later. checking for strdup... (cached) yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating libguile/gen-scmconfig.h config.status: creating Makefile config.status: creating am/Makefile config.status: creating lib/Makefile config.status: creating benchmark-suite/Makefile config.status: creating gc-benchmarks/Makefile config.status: creating doc/Makefile config.status: creating doc/r5rs/Makefile config.status: creating doc/ref/Makefile config.status: creating emacs/Makefile config.status: creating examples/Makefile config.status: creating libguile/Makefile config.status: creating libguile/version.h config.status: creating guile-readline/Makefile config.status: creating test-suite/Makefile config.status: creating test-suite/standalone/Makefile config.status: creating test-suite/vm/Makefile config.status: creating meta/Makefile config.status: creating module/Makefile config.status: creating meta/guile-2.0.pc config.status: creating meta/guile-2.0-uninstalled.pc config.status: creating doc/ref/effective-version.texi config.status: creating check-guile config.status: creating benchmark-guile config.status: creating meta/guile config.status: creating meta/uninstalled-env config.status: creating meta/gdb-uninstalled-guile config.status: creating meta/guild config.status: creating libguile/guile-snarf config.status: creating libguile/guile-snarf-docs config.status: creating test-suite/standalone/test-use-srfi config.status: creating test-suite/standalone/test-fast-slot-ref config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands config.status: executing po-directories commands make[1]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make install-recursive make[2]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' Making install in lib make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' GEN alloca.h GEN arpa/inet.h GEN byteswap.h GEN configmake.h GEN dirent.h GEN errno.h GEN fcntl.h GEN iconv.h GEN langinfo.h GEN locale.h GEN math.h GEN netdb.h GEN netinet/in.h GEN poll.h GEN signal.h GEN stdio.h GEN stdlib.h GEN string.h GEN sys/file.h GEN sys/select.h GEN sys/socket.h GEN sys/stat.h GEN sys/time.h GEN sys/times.h GEN sys/types.h GEN sys/uio.h GEN time.h GEN unistd.h GEN wchar.h GEN wctype.h make install-recursive make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' CC binary-io.lo CC dirname-lgpl.lo CC basename-lgpl.lo CC fd-hook.lo CC full-read.lo CC full-write.lo CC localcharset.lo CC malloca.lo CC math.lo CC nproc.lo CC pipe2.lo CC safe-read.lo CC safe-write.lo CC sockets.lo CC stat-time.lo CC strftime.lo CC striconveh.lo CC sys_socket.lo CC unistd.lo CC unistr/u8-mbtouc.lo CC unistr/u8-mbtouc-aux.lo CC unistr/u8-mbtouc-unsafe.lo CC unistr/u8-mbtouc-unsafe-aux.lo CC wctype-h.lo CC accept.lo CC bind.lo CC canonicalize-lgpl.lo CC close.lo CC connect.lo CC dirfd.lo CC dup2.lo CC flock.lo CC frexp.lo CC fstat.lo CC gai_strerror.lo CC getaddrinfo.lo CC getlogin.lo CC getpeername.lo CC getsockname.lo CC getsockopt.lo CC inet_ntop.lo CC inet_pton.lo CC isnand.lo CC isnanf.lo CC isnanl.lo CC listen.lo CC localeconv.lo CC malloc.lo CC mbrtowc.lo CC mbsinit.lo CC nl_langinfo.lo CC open.lo CC pipe.lo CC poll.lo CC printf-args.lo CC printf-parse.lo CC putenv.lo CC readlink.lo CC recv.lo CC recvfrom.lo CC regex.lo CC rename.lo CC rmdir.lo CC select.lo CC send.lo CC sendto.lo CC setenv.lo CC setsockopt.lo CC shutdown.lo CC snprintf.lo CC socket.lo CC stat.lo CC time_r.lo CC times.lo CC vasnprintf.lo CC vsnprintf.lo CCLD libgnu.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' if test no = no; then \ case 'mingw32' in \ darwin[56]*) \ need_charset_alias=true ;; \ darwin* | cygwin* | mingw* | pw32* | cegcc*) \ need_charset_alias=false ;; \ *) \ need_charset_alias=true ;; \ esac ; \ else \ need_charset_alias=false ; \ fi ; \ if $need_charset_alias; then \ /bin/sh /c/Users/shookie/guiletest/lib/guile-2.0/build-aux/install-sh -d /c/Users/shookie/guiletest/lib/lib ; \ fi ; \ if test -f /c/Users/shookie/guiletest/lib/lib/charset.alias; then \ sed -f ref-add.sed /c/Users/shookie/guiletest/lib/lib/charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ else \ if $need_charset_alias; then \ sed -f ref-add.sed charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ fi ; \ fi make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' Making install in meta make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guile="/c/Users/shookie/guiletest/lib/bin/`echo guile | /bin/sed -e 's,x,x,'`" ; \ cat ./guile-config.in \ | /bin/sed -e "s,@pkgconfigdir@,/c/Users/shookie/guiletest/lib/lib/pkgconfig,g ; \ s,@""PKG_CONFIG@,,g ; \ s,@installed_guile@,$guile,g" \ > guile-config.out mv guile-config.out guile-config chmod +x guile-config make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-config guild '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guild="`echo -n guild \ | /bin/sed -e 's,x,x,'`.exe" ; \ guile_tools="`echo -n guile-tools \ | /bin/sed -e 's,x,x,'`.exe" ; \ cd /c/Users/shookie/guiletest/lib/bin && rm -f "$guile_tools" && \ cp -pR "$guild" "$guile_tools" make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/install -c -m 644 guile.m4 '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/pkgconfig' /bin/install -c -m 644 guile-2.0.pc '/c/Users/shookie/guiletest/lib/lib/pkgconfig' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' Making install in libguile make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' GEN libpath.h SNARF alist.x SNARF arbiters.x SNARF array-handle.x SNARF array-map.x SNARF arrays.x SNARF async.x SNARF backtrace.x SNARF boolean.x SNARF bitvectors.x SNARF bytevectors.x SNARF chars.x SNARF control.x SNARF continuations.x SNARF debug.x SNARF deprecated.x SNARF deprecation.x SNARF dynl.x SNARF dynwind.x SNARF eq.x SNARF error.x SNARF eval.x SNARF evalext.x SNARF expand.x SNARF extensions.x SNARF feature.x SNARF filesys.x SNARF fluids.x SNARF foreign.x SNARF fports.x SNARF gc-malloc.x SNARF gc.x SNARF gettext.x SNARF generalized-arrays.x SNARF generalized-vectors.x SNARF goops.x SNARF gsubr.x SNARF guardians.x SNARF hash.x SNARF hashtab.x SNARF hooks.x SNARF i18n.x SNARF init.x SNARF ioext.x SNARF keywords.x SNARF list.x SNARF load.x SNARF macros.x SNARF mallocs.x SNARF memoize.x SNARF modules.x SNARF numbers.x SNARF objprop.x SNARF options.x SNARF pairs.x SNARF ports.x SNARF print.x SNARF procprop.x SNARF procs.x SNARF promises.x SNARF r6rs-ports.x SNARF random.x SNARF rdelim.x SNARF read.x SNARF root.x SNARF rw.x SNARF scmsigs.x SNARF script.x SNARF simpos.x SNARF smob.x SNARF sort.x SNARF srcprop.x SNARF srfi-1.x SNARF srfi-4.x SNARF srfi-13.x SNARF srfi-14.x SNARF srfi-60.x SNARF stackchk.x SNARF stacks.x SNARF stime.x SNARF strings.x SNARF strorder.x SNARF strports.x SNARF struct.x SNARF symbols.x SNARF threads.x SNARF throw.x SNARF trees.x SNARF uniform.x SNARF values.x SNARF variable.x SNARF vectors.x SNARF version.x SNARF vports.x SNARF weaks.x SNARF frames.x SNARF instructions.x SNARF objcodes.x SNARF programs.x SNARF vm.x SNARF posix.x SNARF net_db.x SNARF socket.x SNARF win32-uname.x SNARF regex-posix.x SNARF mkstemp.x make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' CC libguile_2.0_la-alist.lo CC libguile_2.0_la-arbiters.lo CC libguile_2.0_la-array-handle.lo CC libguile_2.0_la-array-map.lo CC libguile_2.0_la-arrays.lo CC libguile_2.0_la-async.lo CC libguile_2.0_la-backtrace.lo CC libguile_2.0_la-boolean.lo CC libguile_2.0_la-bitvectors.lo CC libguile_2.0_la-bytevectors.lo CC libguile_2.0_la-chars.lo CC libguile_2.0_la-control.lo CC libguile_2.0_la-continuations.lo CC libguile_2.0_la-debug.lo CC libguile_2.0_la-deprecated.lo CC libguile_2.0_la-deprecation.lo CC libguile_2.0_la-dynwind.lo CC libguile_2.0_la-eq.lo CC libguile_2.0_la-error.lo CC libguile_2.0_la-eval.lo CC libguile_2.0_la-evalext.lo CC libguile_2.0_la-expand.lo CC libguile_2.0_la-extensions.lo CC libguile_2.0_la-feature.lo CC libguile_2.0_la-filesys.lo CC libguile_2.0_la-finalizers.lo CC libguile_2.0_la-fluids.lo CC libguile_2.0_la-foreign.lo CC libguile_2.0_la-fports.lo CC libguile_2.0_la-frames.lo CC libguile_2.0_la-gc-malloc.lo CC libguile_2.0_la-gc.lo CC libguile_2.0_la-gdbint.lo CC libguile_2.0_la-gettext.lo CC libguile_2.0_la-generalized-arrays.lo CC libguile_2.0_la-generalized-vectors.lo CC libguile_2.0_la-goops.lo CC libguile_2.0_la-gsubr.lo CC libguile_2.0_la-guardians.lo CC libguile_2.0_la-hash.lo CC libguile_2.0_la-hashtab.lo CC libguile_2.0_la-hooks.lo CC libguile_2.0_la-i18n.lo CC libguile_2.0_la-init.lo CC libguile_2.0_la-inline.lo CC libguile_2.0_la-instructions.lo CC libguile_2.0_la-ioext.lo CC libguile_2.0_la-keywords.lo CC libguile_2.0_la-list.lo CC libguile_2.0_la-load.lo CC libguile_2.0_la-macros.lo CC libguile_2.0_la-mallocs.lo CC libguile_2.0_la-memoize.lo CC libguile_2.0_la-modules.lo CC libguile_2.0_la-null-threads.lo CC libguile_2.0_la-numbers.lo CC libguile_2.0_la-objcodes.lo CC libguile_2.0_la-objprop.lo CC libguile_2.0_la-options.lo CC libguile_2.0_la-pairs.lo CC libguile_2.0_la-poll.lo CC libguile_2.0_la-ports.lo CC libguile_2.0_la-print.lo CC libguile_2.0_la-procprop.lo CC libguile_2.0_la-procs.lo CC libguile_2.0_la-programs.lo CC libguile_2.0_la-promises.lo CC libguile_2.0_la-r6rs-ports.lo CC libguile_2.0_la-random.lo CC libguile_2.0_la-rdelim.lo CC libguile_2.0_la-read.lo CC libguile_2.0_la-root.lo CC libguile_2.0_la-rw.lo CC libguile_2.0_la-scmsigs.lo CC libguile_2.0_la-script.lo CC libguile_2.0_la-simpos.lo CC libguile_2.0_la-smob.lo CC libguile_2.0_la-sort.lo CC libguile_2.0_la-srcprop.lo CC libguile_2.0_la-srfi-1.lo CC libguile_2.0_la-srfi-4.lo CC libguile_2.0_la-srfi-13.lo CC libguile_2.0_la-srfi-14.lo CC libguile_2.0_la-srfi-60.lo CC libguile_2.0_la-stackchk.lo CC libguile_2.0_la-stacks.lo CC libguile_2.0_la-stime.lo CC libguile_2.0_la-strings.lo CC libguile_2.0_la-strorder.lo CC libguile_2.0_la-strports.lo CC libguile_2.0_la-struct.lo CC libguile_2.0_la-symbols.lo CC libguile_2.0_la-threads.lo threads.c: In function 'scm_cancel_thread': threads.c:1177:7: warning: statement with no effect [-Wunused-value] CC libguile_2.0_la-throw.lo CC libguile_2.0_la-trees.lo CC libguile_2.0_la-uniform.lo CC libguile_2.0_la-values.lo CC libguile_2.0_la-variable.lo CC libguile_2.0_la-vectors.lo CC libguile_2.0_la-version.lo CC libguile_2.0_la-vm.lo CC libguile_2.0_la-vports.lo CC libguile_2.0_la-weaks.lo CCLD libguile-2.0.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. copying selected object files to avoid basename conflicts... CC guile-guile.o CCLD guile.exe libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. GEN guile-procedures.texi rm -f guile-procedures.txt makeinfo --force -o guile-procedures.txt guile-procedures.texi || test -f guile-procedures.txt /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:10255: Cross reference to nonexistent node `Backslash Escapes' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9950: Cross reference to nonexistent node `Network Address Conversion' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9889: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9839: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9313: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9306: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9299: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9213: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8578: Cross reference to nonexistent node `Vtables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8196: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8015: Cross reference to nonexistent node `Bitwise Operations' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6706: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6684: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6628: Cross reference to nonexistent node `Multiple Values' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5572: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5281: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5270: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5259: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3319: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3126: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2797: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2790: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2783: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2213: Cross reference to nonexistent node `Character Encoding of Source Files' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2207: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2189: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:1575: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:1563: Cross reference to nonexistent node `Closing' (perhaps incorrect sectioning?). make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib' /bin/sh ../libtool --mode=install /bin/install -c libguile-2.0.la '/c/Users/shookie/guiletest/lib/lib' libtool: install: /bin/install -c .libs/libguile-2.0.lai /c/Users/shookie/guiletest/lib/lib/libguile-2.0.la libtool: install: /bin/install -c .libs/libguile-2.0.a /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: chmod 644 /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: ranlib /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/sh ../libtool --mode=install /bin/install -c guile.exe '/c/Users/shookie/guiletest/lib/bin' libtool: install: /bin/install -c guile.exe /c/Users/shookie/guiletest/lib/bin/guile.exe /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-snarf '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' rm -f /c/Users/shookie/guiletest/lib/bin/guile-snarf.awk make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 __scm.h alist.h arbiters.h array-handle.h array-map.h arrays.h async.h backtrace.h bdw-gc.h boolean.h bitvectors.h bytevectors.h chars.h control.h continuations.h debug-malloc.h debug.h deprecated.h deprecation.h dynl.h dynwind.h eq.h error.h eval.h evalext.h expand.h extensions.h feature.h finalizers.h filesys.h fluids.h foreign.h fports.h frames.h gc.h gdb_interface.h gdbint.h gettext.h generalized-arrays.h generalized-vectors.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 goops.h gsubr.h guardians.h hash.h hashtab.h hooks.h i18n.h init.h inline.h instructions.h ioext.h iselect.h keywords.h list.h load.h macros.h mallocs.h memoize.h modules.h net_db.h null-threads.h numbers.h objcodes.h objprop.h options.h pairs.h poll.h ports.h posix.h print.h procprop.h procs.h programs.h promises.h pthread-threads.h r6rs-ports.h random.h rdelim.h read.h regex-posix.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 root.h rw.h scmsigs.h script.h simpos.h smob.h snarf.h socket.h sort.h srcprop.h srfi-1.h srfi-4.h srfi-13.h srfi-14.h srfi-60.h stackchk.h stacks.h stime.h strings.h strorder.h strports.h struct.h symbols.h tags.h threads.h throw.h trees.h validate.h uniform.h values.h variable.h vectors.h vm-engine.h vm-expand.h vm.h vports.h weaks.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 version.h scmconfig.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0' /bin/install -c -m 644 guile-procedures.txt '/c/Users/shookie/guiletest/lib/share/guile/2.0' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' Making install in module make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' GUILEC scripts/autofrisk.go Backtrace: In ice-9/psyntax.scm: 1101: 19 [expand-top-sequence ((define (unglob pattern) (let # #))) () ...] 1259: 18 [#<procedure 223da80 at ice-9/psyntax.scm:1067:36 ()>] 1605: 17 [expand-simple-lambda (# . #) () (()) ...] 1509: 16 [parse (((# #) . #(syntax-object # # #))) () () () () () ()] In ice-9/boot-9.scm: 627: 15 [map #<procedure 224cf60 at ice-9/psyntax.scm:1510:50 (x)> ((# . #))] In ice-9/psyntax.scm: 2114: 14 [expand-let (let # #) (# #) (# # #) ...] In ice-9/boot-9.scm: 627: 13 [map #<procedure 223b5a0 at ice-9/psyntax.scm:2114:49 (x)> (#)] In ice-9/psyntax.scm: 1257: 12 [#<procedure 223b5a0 at ice-9/psyntax.scm:2114:49 (x)> (open-input-pipe #)] 1186: 11 [syntax-type (open-input-pipe #) (# #) (# # #) ...] 579: 10 [syntax-type open-input-pipe (# #) (# # #) ...] 292: 9 [get-global-definition-hook open-input-pipe (hygiene scripts autofrisk)] In unknown file: ?: 8 [module-variable #<directory (scripts autofrisk) 2164d80> open-input-pipe] In ice-9/boot-9.scm: 2790: 7 [b #<autoload (ice-9 popen) 2200510> open-input-pipe #f] 2579: 6 [#<procedure 1d4f120 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 popen) #f] 2191: 4 [save-module-excursion #<procedure 224ce70 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 224ce70 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 201ada0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 201ada0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." make[3]: *** [scripts/autofrisk.go] Error 1 GUILEC scripts/compile.go wrote `scripts/compile.go' GUILEC scripts/disassemble.go wrote `scripts/disassemble.go' GUILEC scripts/display-commentary.go wrote `scripts/display-commentary.go' GUILEC scripts/doc-snarf.go wrote `scripts/doc-snarf.go' GUILEC scripts/frisk.go wrote `scripts/frisk.go' GUILEC scripts/generate-autoload.go wrote `scripts/generate-autoload.go' GUILEC scripts/help.go wrote `scripts/help.go' GUILEC scripts/lint.go wrote `scripts/lint.go' GUILEC scripts/list.go wrote `scripts/list.go' GUILEC scripts/punify.go wrote `scripts/punify.go' GUILEC scripts/read-scheme-source.go wrote `scripts/read-scheme-source.go' GUILEC scripts/read-text-outline.go wrote `scripts/read-text-outline.go' GUILEC scripts/use2dot.go wrote `scripts/use2dot.go' GUILEC scripts/snarf-check-and-output-texi.go wrote `scripts/snarf-check-and-output-texi.go' GUILEC scripts/summarize-guile-TODO.go wrote `scripts/summarize-guile-TODO.go' GUILEC scripts/scan-api.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 1f59400 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: scripts/scan-api.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g96}#) 1f9b900>] 180: 16 [lp # # # ...] In ice-9/boot-9.scm: 2191: 15 [save-module-excursion #<procedure 215e960 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 215e960 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # :use-module # ...)) () ((top)) ...] 976: 12 [scan ((define-module (scripts scan-api) :use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2741: 9 [define-module* (scripts scan-api) #:filename ...] 2716: 8 [resolve-imports (((ice-9 popen)) ((ice-9 rdelim)) ((ice-9 regex)))] 2654: 7 [resolve-interface (ice-9 popen) #:select ...] 2579: 6 [#<procedure 1db2e40 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] 2850: 5 [try-module-autoload (ice-9 popen) #f] 2191: 4 [save-module-excursion #<procedure 218d228 at ice-9/boot-9.scm:2851:17 ()>] 2870: 3 [#<procedure 218d228 at ice-9/boot-9.scm:2851:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1f593a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1f593a0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." make[3]: *** [scripts/scan-api.go] Error 1 GUILEC scripts/api-diff.go wrote `scripts/api-diff.go' GUILEC scripts/read-rfc822.go wrote `scripts/read-rfc822.go' GUILEC scripts/snarf-guile-m4-docs.go wrote `scripts/snarf-guile-m4-docs.go' GUILEC language/ecmascript/tokenize.go wrote `language/ecmascript/tokenize.go' GUILEC language/ecmascript/parse.go %% Shift/Reduce conflict (shift 36, reduce 82) on 'lbrace' in state 437 %% Shift/Reduce conflict (shift 35, reduce 82) on 'lparen' in state 437 %% Shift/Reduce conflict (shift 34, reduce 82) on 'lbracket' in state 437 %% Shift/Reduce conflict (shift 33, reduce 82) on 'dot' in state 437 %% Shift/Reduce conflict (shift 32, reduce 82) on 'semicolon' in state 437 %% Shift/Reduce conflict (shift 31, reduce 82) on '+' in state 437 %% Shift/Reduce conflict (shift 30, reduce 82) on '-' in state 437 %% Shift/Reduce conflict (shift 29, reduce 82) on '++' in state 437 %% Shift/Reduce conflict (shift 28, reduce 82) on '--' in state 437 %% Shift/Reduce conflict (shift 27, reduce 82) on '!' in state 437 %% Shift/Reduce conflict (shift 26, reduce 82) on '~' in state 437 %% Shift/Reduce conflict (shift 25, reduce 82) on 'break' in state 437 %% Shift/Reduce conflict (shift 24, reduce 82) on 'new' in state 437 %% Shift/Reduce conflict (shift 23, reduce 82) on 'var' in state 437 %% Shift/Reduce conflict (shift 22, reduce 82) on 'return' in state 437 %% Shift/Reduce conflict (shift 21, reduce 82) on 'void' in state 437 %% Shift/Reduce conflict (shift 20, reduce 82) on 'for' in state 437 %% Shift/Reduce conflict (shift 19, reduce 82) on 'switch' in state 437 %% Shift/Reduce conflict (shift 18, reduce 82) on 'while' in state 437 %% Shift/Reduce conflict (shift 17, reduce 82) on 'continue' in state 437 %% Shift/Reduce conflict (shift 82, reduce 82) on 'function' in state 437 %% Shift/Reduce conflict (shift 15, reduce 82) on 'this' in state 437 %% Shift/Reduce conflict (shift 14, reduce 82) on 'with' in state 437 %% Shift/Reduce conflict (shift 13, reduce 82) on 'if' in state 437 %% Shift/Reduce conflict (shift 12, reduce 82) on 'throw' in state 437 %% Shift/Reduce conflict (shift 11, reduce 82) on 'delete' in state 437 %% Shift/Reduce conflict (shift 10, reduce 82) on 'try' in state 437 %% Shift/Reduce conflict (shift 9, reduce 82) on 'do' in state 437 %% Shift/Reduce conflict (shift 8, reduce 82) on 'typeof' in state 437 %% Shift/Reduce conflict (shift 7, reduce 82) on 'null' in state 437 %% Shift/Reduce conflict (shift 6, reduce 82) on 'true' in state 437 %% Shift/Reduce conflict (shift 5, reduce 82) on 'false' in state 437 %% Shift/Reduce conflict (shift 4, reduce 82) on 'Identifier' in state 437 %% Shift/Reduce conflict (shift 3, reduce 82) on 'StringLiteral' in state 437 %% Shift/Reduce conflict (shift 2, reduce 82) on 'NumericLiteral' in state 437 %% Shift/Reduce conflict (shift 1, reduce 82) on 'RegexpLiteral' in state 437 %% Shift/Reduce conflict (shift 36, reduce 81) on 'lbrace' in state 424 %% Shift/Reduce conflict (shift 35, reduce 81) on 'lparen' in state 424 %% Shift/Reduce conflict (shift 34, reduce 81) on 'lbracket' in state 424 %% Shift/Reduce conflict (shift 33, reduce 81) on 'dot' in state 424 %% Shift/Reduce conflict (shift 32, reduce 81) on 'semicolon' in state 424 %% Shift/Reduce conflict (shift 31, reduce 81) on '+' in state 424 %% Shift/Reduce conflict (shift 30, reduce 81) on '-' in state 424 %% Shift/Reduce conflict (shift 29, reduce 81) on '++' in state 424 %% Shift/Reduce conflict (shift 28, reduce 81) on '--' in state 424 %% Shift/Reduce conflict (shift 27, reduce 81) on '!' in state 424 %% Shift/Reduce conflict (shift 26, reduce 81) on '~' in state 424 %% Shift/Reduce conflict (shift 25, reduce 81) on 'break' in state 424 %% Shift/Reduce conflict (shift 24, reduce 81) on 'new' in state 424 %% Shift/Reduce conflict (shift 23, reduce 81) on 'var' in state 424 %% Shift/Reduce conflict (shift 22, reduce 81) on 'return' in state 424 %% Shift/Reduce conflict (shift 21, reduce 81) on 'void' in state 424 %% Shift/Reduce conflict (shift 20, reduce 81) on 'for' in state 424 %% Shift/Reduce conflict (shift 19, reduce 81) on 'switch' in state 424 %% Shift/Reduce conflict (shift 18, reduce 81) on 'while' in state 424 %% Shift/Reduce conflict (shift 17, reduce 81) on 'continue' in state 424 %% Shift/Reduce conflict (shift 82, reduce 81) on 'function' in state 424 %% Shift/Reduce conflict (shift 15, reduce 81) on 'this' in state 424 %% Shift/Reduce conflict (shift 14, reduce 81) on 'with' in state 424 %% Shift/Reduce conflict (shift 13, reduce 81) on 'if' in state 424 %% Shift/Reduce conflict (shift 12, reduce 81) on 'throw' in state 424 %% Shift/Reduce conflict (shift 11, reduce 81) on 'delete' in state 424 %% Shift/Reduce conflict (shift 10, reduce 81) on 'try' in state 424 %% Shift/Reduce conflict (shift 9, reduce 81) on 'do' in state 424 %% Shift/Reduce conflict (shift 8, reduce 81) on 'typeof' in state 424 %% Shift/Reduce conflict (shift 7, reduce 81) on 'null' in state 424 %% Shift/Reduce conflict (shift 6, reduce 81) on 'true' in state 424 %% Shift/Reduce conflict (shift 5, reduce 81) on 'false' in state 424 %% Shift/Reduce conflict (shift 4, reduce 81) on 'Identifier' in state 424 %% Shift/Reduce conflict (shift 3, reduce 81) on 'StringLiteral' in state 424 %% Shift/Reduce conflict (shift 2, reduce 81) on 'NumericLiteral' in state 424 %% Shift/Reduce conflict (shift 1, reduce 81) on 'RegexpLiteral' in state 424 %% Shift/Reduce conflict (shift 36, reduce 84) on 'lbrace' in state 423 %% Shift/Reduce conflict (shift 35, reduce 84) on 'lparen' in state 423 %% Shift/Reduce conflict (shift 34, reduce 84) on 'lbracket' in state 423 %% Shift/Reduce conflict (shift 33, reduce 84) on 'dot' in state 423 %% Shift/Reduce conflict (shift 32, reduce 84) on 'semicolon' in state 423 %% Shift/Reduce conflict (shift 31, reduce 84) on '+' in state 423 %% Shift/Reduce conflict (shift 30, reduce 84) on '-' in state 423 %% Shift/Reduce conflict (shift 29, reduce 84) on '++' in state 423 %% Shift/Reduce conflict (shift 28, reduce 84) on '--' in state 423 %% Shift/Reduce conflict (shift 27, reduce 84) on '!' in state 423 %% Shift/Reduce conflict (shift 26, reduce 84) on '~' in state 423 %% Shift/Reduce conflict (shift 25, reduce 84) on 'break' in state 423 %% Shift/Reduce conflict (shift 24, reduce 84) on 'new' in state 423 %% Shift/Reduce conflict (shift 23, reduce 84) on 'var' in state 423 %% Shift/Reduce conflict (shift 22, reduce 84) on 'return' in state 423 %% Shift/Reduce conflict (shift 21, reduce 84) on 'void' in state 423 %% Shift/Reduce conflict (shift 20, reduce 84) on 'for' in state 423 %% Shift/Reduce conflict (shift 19, reduce 84) on 'switch' in state 423 %% Shift/Reduce conflict (shift 18, reduce 84) on 'while' in state 423 %% Shift/Reduce conflict (shift 17, reduce 84) on 'continue' in state 423 %% Shift/Reduce conflict (shift 82, reduce 84) on 'function' in state 423 %% Shift/Reduce conflict (shift 15, reduce 84) on 'this' in state 423 %% Shift/Reduce conflict (shift 14, reduce 84) on 'with' in state 423 %% Shift/Reduce conflict (shift 13, reduce 84) on 'if' in state 423 %% Shift/Reduce conflict (shift 12, reduce 84) on 'throw' in state 423 %% Shift/Reduce conflict (shift 11, reduce 84) on 'delete' in state 423 %% Shift/Reduce conflict (shift 10, reduce 84) on 'try' in state 423 %% Shift/Reduce conflict (shift 9, reduce 84) on 'do' in state 423 %% Shift/Reduce conflict (shift 8, reduce 84) on 'typeof' in state 423 %% Shift/Reduce conflict (shift 7, reduce 84) on 'null' in state 423 %% Shift/Reduce conflict (shift 6, reduce 84) on 'true' in state 423 %% Shift/Reduce conflict (shift 5, reduce 84) on 'false' in state 423 %% Shift/Reduce conflict (shift 4, reduce 84) on 'Identifier' in state 423 %% Shift/Reduce conflict (shift 3, reduce 84) on 'StringLiteral' in state 423 %% Shift/Reduce conflict (shift 2, reduce 84) on 'NumericLiteral' in state 423 %% Shift/Reduce conflict (shift 1, reduce 84) on 'RegexpLiteral' in state 423 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '--' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '++' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '-' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '+' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'semicolon' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'dot' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lbracket' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lparen' in state 422 %% Shift/Reduce conflict (shift 36, reduce 83) on 'lbrace' in state 400 %% Shift/Reduce conflict (shift 35, reduce 83) on 'lparen' in state 400 %% Shift/Reduce conflict (shift 34, reduce 83) on 'lbracket' in state 400 %% Shift/Reduce conflict (shift 33, reduce 83) on 'dot' in state 400 %% Shift/Reduce conflict (shift 32, reduce 83) on 'semicolon' in state 400 %% Shift/Reduce conflict (shift 31, reduce 83) on '+' in state 400 %% Shift/Reduce conflict (shift 30, reduce 83) on '-' in state 400 %% Shift/Reduce conflict (shift 29, reduce 83) on '++' in state 400 %% Shift/Reduce conflict (shift 28, reduce 83) on '--' in state 400 %% Shift/Reduce conflict (shift 27, reduce 83) on '!' in state 400 %% Shift/Reduce conflict (shift 26, reduce 83) on '~' in state 400 %% Shift/Reduce conflict (shift 25, reduce 83) on 'break' in state 400 %% Shift/Reduce conflict (shift 24, reduce 83) on 'new' in state 400 %% Shift/Reduce conflict (shift 23, reduce 83) on 'var' in state 400 %% Shift/Reduce conflict (shift 22, reduce 83) on 'return' in state 400 %% Shift/Reduce conflict (shift 21, reduce 83) on 'void' in state 400 %% Shift/Reduce conflict (shift 20, reduce 83) on 'for' in state 400 %% Shift/Reduce conflict (shift 19, reduce 83) on 'switch' in state 400 %% Shift/Reduce conflict (shift 18, reduce 83) on 'while' in state 400 %% Shift/Reduce conflict (shift 17, reduce 83) on 'continue' in state 400 %% Shift/Reduce conflict (shift 82, reduce 83) on 'function' in state 400 %% Shift/Reduce conflict (shift 15, reduce 83) on 'this' in state 400 %% Shift/Reduce conflict (shift 14, reduce 83) on 'with' in state 400 %% Shift/Reduce conflict (shift 13, reduce 83) on 'if' in state 400 %% Shift/Reduce conflict (shift 12, reduce 83) on 'throw' in state 400 %% Shift/Reduce conflict (shift 11, reduce 83) on 'delete' in state 400 %% Shift/Reduce conflict (shift 10, reduce 83) on 'try' in state 400 %% Shift/Reduce conflict (shift 9, reduce 83) on 'do' in state 400 %% Shift/Reduce conflict (shift 8, reduce 83) on 'typeof' in state 400 %% Shift/Reduce conflict (shift 7, reduce 83) on 'null' in state 400 %% Shift/Reduce conflict (shift 6, reduce 83) on 'true' in state 400 %% Shift/Reduce conflict (shift 5, reduce 83) on 'false' in state 400 %% Shift/Reduce conflict (shift 4, reduce 83) on 'Identifier' in state 400 %% Shift/Reduce conflict (shift 3, reduce 83) on 'StringLiteral' in state 400 %% Shift/Reduce conflict (shift 2, reduce 83) on 'NumericLiteral' in state 400 %% Shift/Reduce conflict (shift 1, reduce 83) on 'RegexpLiteral' in state 400 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '--' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '++' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '-' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '+' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'semicolon' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'dot' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lbracket' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lparen' in state 397 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 393 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 393 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 393 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 393 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 393 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 393 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 393 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 393 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 393 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 393 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 393 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 393 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 393 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 393 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 393 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 393 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 393 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 393 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 393 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 393 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 393 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 393 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 393 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 393 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 393 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 393 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 393 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 393 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 393 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 393 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 393 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 393 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 393 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 393 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 393 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 393 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 369 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 369 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 369 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 369 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 369 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 369 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 369 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 369 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 369 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 369 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 369 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 369 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 369 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 369 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 369 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 369 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 369 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 369 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 369 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 369 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 369 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 369 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 369 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 369 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 369 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 369 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 369 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 369 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 369 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 369 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 369 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 369 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 369 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 369 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 369 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 369 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 363 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 363 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 363 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 363 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 363 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 363 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 363 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 363 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 363 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 363 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 363 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 363 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 363 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 363 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 363 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 363 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 363 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 363 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 363 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 363 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 363 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 363 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 363 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 363 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 363 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 363 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 363 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 363 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 363 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 363 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 363 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 363 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 363 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 363 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 363 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 363 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 338 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 338 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 338 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 338 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 338 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 338 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 338 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 338 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 338 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 338 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 338 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 338 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 338 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 338 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 326 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 326 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 326 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 326 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 326 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 326 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 326 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 326 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 326 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 326 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 326 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 326 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 326 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 326 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 326 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 326 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 326 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 326 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 326 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 326 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 326 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 326 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 326 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 326 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 326 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 326 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 326 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 326 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 326 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 326 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 326 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 326 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 326 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 326 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 326 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 326 %% Shift/Reduce conflict (shift 36, reduce 16) on 'lbrace' in state 324 %% Shift/Reduce conflict (shift 35, reduce 16) on 'lparen' in state 324 %% Shift/Reduce conflict (shift 34, reduce 16) on 'lbracket' in state 324 %% Shift/Reduce conflict (shift 33, reduce 16) on 'dot' in state 324 %% Shift/Reduce conflict (shift 32, reduce 16) on 'semicolon' in state 324 %% Shift/Reduce conflict (shift 31, reduce 16) on '+' in state 324 %% Shift/Reduce conflict (shift 30, reduce 16) on '-' in state 324 %% Shift/Reduce conflict (shift 29, reduce 16) on '++' in state 324 %% Shift/Reduce conflict (shift 28, reduce 16) on '--' in state 324 %% Shift/Reduce conflict (shift 27, reduce 16) on '!' in state 324 %% Shift/Reduce conflict (shift 26, reduce 16) on '~' in state 324 %% Shift/Reduce conflict (shift 25, reduce 16) on 'break' in state 324 %% Shift/Reduce conflict (shift 24, reduce 16) on 'new' in state 324 %% Shift/Reduce conflict (shift 23, reduce 16) on 'var' in state 324 %% Shift/Reduce conflict (shift 22, reduce 16) on 'return' in state 324 %% Shift/Reduce conflict (shift 21, reduce 16) on 'void' in state 324 %% Shift/Reduce conflict (shift 20, reduce 16) on 'for' in state 324 %% Shift/Reduce conflict (shift 19, reduce 16) on 'switch' in state 324 %% Shift/Reduce conflict (shift 18, reduce 16) on 'while' in state 324 %% Shift/Reduce conflict (shift 17, reduce 16) on 'continue' in state 324 %% Shift/Reduce conflict (shift 16, reduce 16) on 'function' in state 324 %% Shift/Reduce conflict (shift 15, reduce 16) on 'this' in state 324 %% Shift/Reduce conflict (shift 14, reduce 16) on 'with' in state 324 %% Shift/Reduce conflict (shift 13, reduce 16) on 'if' in state 324 %% Shift/Reduce conflict (shift 12, reduce 16) on 'throw' in state 324 %% Shift/Reduce conflict (shift 11, reduce 16) on 'delete' in state 324 %% Shift/Reduce conflict (shift 10, reduce 16) on 'try' in state 324 %% Shift/Reduce conflict (shift 9, reduce 16) on 'do' in state 324 %% Shift/Reduce conflict (shift 8, reduce 16) on 'typeof' in state 324 %% Shift/Reduce conflict (shift 7, reduce 16) on 'null' in state 324 %% Shift/Reduce conflict (shift 6, reduce 16) on 'true' in state 324 %% Shift/Reduce conflict (shift 5, reduce 16) on 'false' in state 324 %% Shift/Reduce conflict (shift 4, reduce 16) on 'Identifier' in state 324 %% Shift/Reduce conflict (shift 3, reduce 16) on 'StringLiteral' in state 324 %% Shift/Reduce conflict (shift 2, reduce 16) on 'NumericLiteral' in state 324 %% Shift/Reduce conflict (shift 1, reduce 16) on 'RegexpLiteral' in state 324 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 321 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 321 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 321 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 321 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 321 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 321 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 321 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 321 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 321 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 321 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 321 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 321 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 321 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 321 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 321 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 321 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 321 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 321 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 321 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 321 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 321 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 321 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 321 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 321 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 321 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 321 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 321 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 321 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 321 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 321 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 321 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 321 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 321 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 321 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 321 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 321 %% Shift/Reduce conflict (shift 367, reduce 49) on 'else' in state 319 %% Shift/Reduce conflict (shift 216, reduce 42) on '=' in state 279 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 274 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 274 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 274 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 274 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 274 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 274 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 274 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 274 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 274 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 274 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 274 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 274 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 274 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 274 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 274 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 274 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 274 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 274 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 274 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 274 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 274 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 274 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 274 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 274 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 274 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 274 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 274 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 274 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 274 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 274 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 274 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 274 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 274 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 274 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 274 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 274 %% Shift/Reduce conflict (shift 144, reduce 177) on 'in' in state 242 %% Shift/Reduce conflict (shift 144, reduce 178) on 'in' in state 241 %% Shift/Reduce conflict (shift 144, reduce 179) on 'in' in state 240 %% Shift/Reduce conflict (shift 144, reduce 180) on 'in' in state 239 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 214 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 214 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 214 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 214 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 214 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 214 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 214 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 214 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 214 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 214 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 214 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 214 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 214 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 214 %% Shift/Reduce conflict (shift 301, reduce 139) on 'in' in state 214 %% Shift/Reduce conflict (shift 188, reduce 87) on 'finally' in state 190 %% Shift/Reduce conflict (shift 80, reduce 119) on 'colon' in state 125 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 107 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 107 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 107 %% Shift/Reduce conflict (shift 216, reduce 40) on '=' in state 103 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 85 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 85 %% Shift/Reduce conflict (shift 36, reduce 2) on 'lbrace' in state 75 %% Shift/Reduce conflict (shift 35, reduce 2) on 'lparen' in state 75 %% Shift/Reduce conflict (shift 34, reduce 2) on 'lbracket' in state 75 %% Shift/Reduce conflict (shift 33, reduce 2) on 'dot' in state 75 %% Shift/Reduce conflict (shift 32, reduce 2) on 'semicolon' in state 75 %% Shift/Reduce conflict (shift 31, reduce 2) on '+' in state 75 %% Shift/Reduce conflict (shift 30, reduce 2) on '-' in state 75 %% Shift/Reduce conflict (shift 29, reduce 2) on '++' in state 75 %% Shift/Reduce conflict (shift 28, reduce 2) on '--' in state 75 %% Shift/Reduce conflict (shift 27, reduce 2) on '!' in state 75 %% Shift/Reduce conflict (shift 26, reduce 2) on '~' in state 75 %% Shift/Reduce conflict (shift 25, reduce 2) on 'break' in state 75 %% Shift/Reduce conflict (shift 24, reduce 2) on 'new' in state 75 %% Shift/Reduce conflict (shift 23, reduce 2) on 'var' in state 75 %% Shift/Reduce conflict (shift 22, reduce 2) on 'return' in state 75 %% Shift/Reduce conflict (shift 21, reduce 2) on 'void' in state 75 %% Shift/Reduce conflict (shift 20, reduce 2) on 'for' in state 75 %% Shift/Reduce conflict (shift 19, reduce 2) on 'switch' in state 75 %% Shift/Reduce conflict (shift 18, reduce 2) on 'while' in state 75 %% Shift/Reduce conflict (shift 17, reduce 2) on 'continue' in state 75 %% Shift/Reduce conflict (shift 16, reduce 2) on 'function' in state 75 %% Shift/Reduce conflict (shift 15, reduce 2) on 'this' in state 75 %% Shift/Reduce conflict (shift 14, reduce 2) on 'with' in state 75 %% Shift/Reduce conflict (shift 13, reduce 2) on 'if' in state 75 %% Shift/Reduce conflict (shift 12, reduce 2) on 'throw' in state 75 %% Shift/Reduce conflict (shift 11, reduce 2) on 'delete' in state 75 %% Shift/Reduce conflict (shift 10, reduce 2) on 'try' in state 75 %% Shift/Reduce conflict (shift 9, reduce 2) on 'do' in state 75 %% Shift/Reduce conflict (shift 8, reduce 2) on 'typeof' in state 75 %% Shift/Reduce conflict (shift 7, reduce 2) on 'null' in state 75 %% Shift/Reduce conflict (shift 6, reduce 2) on 'true' in state 75 %% Shift/Reduce conflict (shift 5, reduce 2) on 'false' in state 75 %% Shift/Reduce conflict (shift 4, reduce 2) on 'Identifier' in state 75 %% Shift/Reduce conflict (shift 3, reduce 2) on 'StringLiteral' in state 75 %% Shift/Reduce conflict (shift 2, reduce 2) on 'NumericLiteral' in state 75 %% Shift/Reduce conflict (shift 1, reduce 2) on 'RegexpLiteral' in state 75 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 56 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 56 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 56 %% Shift/Reduce conflict (shift 174, reduce 138) on 'lparen' in state 54 %% Shift/Reduce conflict (shift 173, reduce 138) on 'lbracket' in state 54 %% Shift/Reduce conflict (shift 172, reduce 138) on 'dot' in state 54 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 53 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 53 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 53 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 53 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 53 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 53 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 53 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 53 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 53 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 53 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 53 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 53 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 53 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 53 %% Shift/Reduce conflict (shift 153, reduce 159) on '+' in state 49 %% Shift/Reduce conflict (shift 152, reduce 159) on '-' in state 49 %% Shift/Reduce conflict (shift 144, reduce 176) on 'in' in state 47 wrote `language/ecmascript/parse.go' GUILEC language/ecmascript/impl.go wrote `language/ecmascript/impl.go' GUILEC language/ecmascript/base.go language/ecmascript/base.scm:227:22: warning: possibly unbound variable `Boolean' language/ecmascript/base.scm:228:21: warning: possibly unbound variable `String' language/ecmascript/base.scm:229:21: warning: possibly unbound variable `Number' wrote `language/ecmascript/base.go' GUILEC language/ecmascript/function.go language/ecmascript/function.scm:40:9: warning: possibly unbound variable `<js-array-object>' language/ecmascript/function.scm:44:43: warning: possibly unbound variable `js-array-vector' wrote `language/ecmascript/function.go' GUILEC language/ecmascript/array.go wrote `language/ecmascript/array.go' GUILEC language/ecmascript/compile-tree-il.go wrote `language/ecmascript/compile-tree-il.go' GUILEC language/ecmascript/spec.go wrote `language/ecmascript/spec.go' GUILEC language/elisp/lexer.go wrote `language/elisp/lexer.go' GUILEC language/elisp/parser.go wrote `language/elisp/parser.go' GUILEC language/elisp/bindings.go wrote `language/elisp/bindings.go' GUILEC language/elisp/compile-tree-il.go wrote `language/elisp/compile-tree-il.go' GUILEC language/elisp/runtime.go wrote `language/elisp/runtime.go' GUILEC language/elisp/runtime/function-slot.go WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `if' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let*' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `while' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `defmacro' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `quote' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `lambda' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `when' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `unless' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `cond' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `and' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `or' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `catch' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `max' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `min' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `abs' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1+}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1-}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `+' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `-' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `*' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `car' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cdr' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `length' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cons' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `list' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `make-list' WARNING: (language elisp runtime function-slot): importewrote `language/elisp/runtime/function-slot.go' d module (language elisp runtime subrs) overrides core binding `append' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `reverse' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `copy-tree' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `apply' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `throw' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `not' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `eval' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `load' GUILEC language/elisp/runtime/value-slot.go wrote `language/elisp/runtime/value-slot.go' GUILEC language/elisp/runtime/macros.go wrote `language/elisp/runtime/macros.go' GUILEC language/elisp/runtime/subrs.go wrote `language/elisp/runtime/subrs.go' GUILEC language/elisp/spec.go wrote `language/elisp/spec.go' GUILEC language/brainfuck/parse.go wrote `language/brainfuck/parse.go' GUILEC language/brainfuck/compile-scheme.go wrote `language/brainfuck/compile-scheme.go' GUILEC language/brainfuck/compile-tree-il.go wrote `language/brainfuck/compile-tree-il.go' GUILEC language/brainfuck/spec.go wrote `language/brainfuck/spec.go' GUILEC statprof.go statprof.scm:303:8: warning: possibly unbound variable `setitimer' statprof.scm:303:8: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:355:12: warning: possibly unbound variable `setitimer' statprof.scm:355:12: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:356:12: warning: possibly unbound variable `setitimer' statprof.scm:356:12: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:380:34: warning: possibly unbound variable `setitimer' statprof.scm:380:34: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:404:2: warning: possibly unbound variable `SIGPROF' wrote `statprof.go' GUILEC sxml/apply-templates.go wrote `sxml/apply-templates.go' GUILEC sxml/fold.go wrote `sxml/fold.go' GUILEC sxml/match.go wrote `sxml/match.go' GUILEC sxml/simple.go wrote `sxml/simple.go' GUILEC sxml/ssax/input-parse.go wrote `sxml/ssax/input-parse.go' GUILEC sxml/ssax.go wrote `sxml/ssax.go' GUILEC sxml/transform.go wrote `sxml/transform.go' GUILEC sxml/xpath.go wrote `sxml/xpath.go' GUILEC texinfo.go wrote `texinfo.go' GUILEC texinfo/docbook.go wrote `texinfo/docbook.go' GUILEC texinfo/html.go wrote `texinfo/html.go' GUILEC texinfo/indexing.go wrote `texinfo/indexing.go' GUILEC texinfo/string-utils.go wrote `texinfo/string-utils.go' GUILEC texinfo/plain-text.go wrote `texinfo/plain-text.go' GUILEC texinfo/reflection.go wrote `texinfo/reflection.go' GUILEC texinfo/serialize.go wrote `texinfo/serialize.go' GUILEC web/client.go wrote `web/client.go' GUILEC web/http.go wrote `web/http.go' GUILEC web/request.go wrote `web/request.go' GUILEC web/response.go wrote `web/response.go' GUILEC web/server.go wrote `web/server.go' GUILEC web/server/http.go web/server/http.scm:67:2: warning: possibly unbound variable `SIGPIPE' wrote `web/server/http.go' GUILEC web/uri.go wrote `web/uri.go' make[3]: Target `install' not remade because of errors. make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' Making install in guile-readline make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0/' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' Making install in examples make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' Making install in emacs make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' Making install in test-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in standalone make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make install-am make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Nothing to be done for `install-exec-am'. make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' Making install in vm make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in benchmark-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' Making install in gc-benchmarks make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' Making install in am make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' Making install in doc make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' Making install in ref make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' MAKEINFO guile.info make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./guile.info ./guile.info-1 ./guile.info-2 ./guile.info-3 ./guile.info-4 ./guile.info-5 ./guile.info-6 ./guile.info-7 ./guile.info-8 ./guile.info-9 ./guile.info-10 '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/guile.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' Making install in r5rs make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./r5rs.info '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/r5rs.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/man/man1' /bin/install -c -m 644 guile.1 '/c/Users/shookie/guiletest/lib/share/man/man1' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0' /bin/install -c -m 644 libguile.h '/c/Users/shookie/guiletest/lib/include/guile/2.0' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 [-- Attachment #5: Type: text/plain, Size: 2844 bytes --] On 11.03.2013, at 09:26, Andy Wingo <wingo@pobox.com> wrote: > On Mon 11 Mar 2013 02:43, shookie@email.de writes: > >> GUILEC scripts/autofrisk.go >> Backtrace: >> In ice-9/psyntax.scm: >> 1101: 19 [expand-top-sequence ((define (unglob pattern) (let # #))) () ...] >> 1259: 18 [#<procedure 2205150 at ice-9/psyntax.scm:1067:36 ()>] >> 1605: 17 [expand-simple-lambda (# . #) () (()) ...] >> 1509: 16 [parse (((# #) . #(syntax-object # # #))) () () () () () ()] >> In ice-9/boot-9.scm: >> 627: 15 [map #<procedure 223e8d0 at ice-9/psyntax.scm:1510:50 (x)> ((# . #))] >> In ice-9/psyntax.scm: >> 2114: 14 [expand-let (let # #) (# #) (# # #) ...] >> In ice-9/boot-9.scm: >> 627: 13 [map #<procedure 223ab20 at ice-9/psyntax.scm:2114:49 (x)> (#)] >> In ice-9/psyntax.scm: >> 1257: 12 [#<procedure 223ab20 at ice-9/psyntax.scm:2114:49 (x)> (open-input-pipe #)] >> 1186: 11 [syntax-type (open-input-pipe #) (# #) (# # #) ...] >> 579: 10 [syntax-type open-input-pipe (# #) (# # #) ...] >> 292: 9 [get-global-definition-hook open-input-pipe (hygiene scripts autofrisk)] >> In unknown file: >> ?: 8 [module-variable #<directory (scripts autofrisk) 2184d80> open-input-pipe] >> In ice-9/boot-9.scm: >> 2790: 7 [b #<autoload (ice-9 popen) 2216d80> open-input-pipe #f] >> 2579: 6 [#<procedure 1d05530 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] >> 2850: 5 [try-module-autoload (ice-9 popen) #f] >> 2191: 4 [save-module-excursion #<procedure 223e7e0 at ice-9/boot-9.scm:2851:17 ()>] >> 2870: 3 [#<procedure 223e7e0 at ice-9/boot-9.scm:2851:17 ()>] >> In unknown file: >> ?: 2 [primitive-load-path "ice-9\\popen" ...] >> ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] >> In ice-9/boot-9.scm: >> 106: 0 [#<procedure 200ace0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] >> >> ice-9/boot-9.scm:106:20: In procedure #<procedure 200ace0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: >> ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." >> make[3]: *** [scripts/autofrisk.go] Error 1 >> make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' >> make[2]: *** [install-recursive] Error 1 >> make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' >> make[1]: *** [install] Error 2 >> make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' >> make: *** [lib/lib/libguile-2.0.a] Error 2 > > Interesting; seems to be an instance of > http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12202. > > Can you try "make -k" and see what other errors you uncover? At this > point it has compiled pretty much all of the needed code, using the > built guile, so we're really close. > > Andy > -- > http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-11 9:30 ` shookie @ 2013-03-13 9:30 ` Andy Wingo 2013-03-13 19:04 ` bug#13848: Aw: " Jan Schukat 2013-03-16 1:36 ` Jan Schukat 0 siblings, 2 replies; 42+ messages in thread From: Andy Wingo @ 2013-03-13 9:30 UTC (permalink / raw) To: shookie; +Cc: Ludovic Courtès, 13848-done Hi, On Mon 11 Mar 2013 10:30, shookie@email.de writes: > GUILEC scripts/autofrisk.go > Backtrace: > In ice-9/psyntax.scm: > 1101: 19 [expand-top-sequence ((define (unglob pattern) (let # #))) () ...] > 1259: 18 [#<procedure 21d8540 at ice-9/psyntax.scm:1067:36 ()>] > 1605: 17 [expand-simple-lambda (# . #) () (()) ...] > 1509: 16 [parse (((# #) . #(syntax-object # # #))) () () () () () ()] > In ice-9/boot-9.scm: > 627: 15 [map #<procedure 2205e10 at ice-9/psyntax.scm:1510:50 (x)> ((# . #))] > In ice-9/psyntax.scm: > 2114: 14 [expand-let (let # #) (# #) (# # #) ...] > In ice-9/boot-9.scm: > 627: 13 [map #<procedure 2204ec0 at ice-9/psyntax.scm:2114:49 (x)> (#)] > In ice-9/psyntax.scm: > 1257: 12 [#<procedure 2204ec0 at ice-9/psyntax.scm:2114:49 (x)> (open-input-pipe #)] > 1186: 11 [syntax-type (open-input-pipe #) (# #) (# # #) ...] > 579: 10 [syntax-type open-input-pipe (# #) (# # #) ...] > 292: 9 [get-global-definition-hook open-input-pipe (hygiene scripts autofrisk)] > In unknown file: > ?: 8 [module-variable #<directory (scripts autofrisk) 21a8dc8> open-input-pipe] > In ice-9/boot-9.scm: > 2790: 7 [b #<autoload (ice-9 popen) 21a86c0> open-input-pipe #f] > 2579: 6 [#<procedure 1d76530 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] > 2850: 5 [try-module-autoload (ice-9 popen) #f] > 2191: 4 [save-module-excursion #<procedure 2205d20 at ice-9/boot-9.scm:2851:17 ()>] > 2870: 3 [#<procedure 2205d20 at ice-9/boot-9.scm:2851:17 ()>] > In unknown file: > ?: 2 [primitive-load-path "ice-9\\popen" ...] > ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] > In ice-9/boot-9.scm: > 106: 0 [#<procedure 1f55340 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] > > ice-9/boot-9.scm:106:20: In procedure #<procedure 1f55340 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: > ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." > make[3]: *** [scripts/autofrisk.go] Error 1 I believe I have fixed this one (and the scan-api one). You will see a warning when building these two files but that is all. I think at this point the build should complete. New tarball: http://wingolog.org/priv/guile-2.0.7.194-dfd1d.tar.gz This has been a very long bug report, but productive. Thank you for following through with these tests, and for checking the above tarball. The next step, after moving on to actually build your application ;), is to get the test suite working. I suspect you will run into some issues. Will you please run a make check -k, and send the resulting log (if it has errors) to bug-guile@gnu.org? Thanks :-) Please include check-guile.log as well. I'll close this report, in optimistic hope that these fixes do indeed allow the build to complete. Let me know how it goes, and happy hacking! (Actually while I'm at it: would you also mail the complete set of patches that you locally apply to your copy? They'll be helpful in future reports. Thanks!) Andy -- http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Aw: Re: bug#13848: Statically linking guile-2.0. 2013-03-13 9:30 ` Andy Wingo @ 2013-03-13 19:04 ` Jan Schukat 2013-03-16 1:36 ` Jan Schukat 1 sibling, 0 replies; 42+ messages in thread From: Jan Schukat @ 2013-03-13 19:04 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848-done [-- Attachment #1: Type: text/html, Size: 5010 bytes --] ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-13 9:30 ` Andy Wingo 2013-03-13 19:04 ` bug#13848: Aw: " Jan Schukat @ 2013-03-16 1:36 ` Jan Schukat 2013-03-29 19:35 ` Ludovic Courtès 1 sibling, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-03-16 1:36 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848-done [-- Attachment #1: Type: text/plain, Size: 3497 bytes --] Ok finally got to it. Made 3 builds from the 194-dfd1d tarball: mingw with posix and threads, without posix and threads and linux with posix and threads. All three still have problems compiling the scheme code. All three have problems with scan-api and two of them with popen. All 3 build logs attached. Regards Jan Schukat On 03/13/2013 10:30 AM, Andy Wingo wrote: > Hi, > > On Mon 11 Mar 2013 10:30, shookie@email.de writes: > >> GUILEC scripts/autofrisk.go >> Backtrace: >> In ice-9/psyntax.scm: >> 1101: 19 [expand-top-sequence ((define (unglob pattern) (let # #))) () ...] >> 1259: 18 [#<procedure 21d8540 at ice-9/psyntax.scm:1067:36 ()>] >> 1605: 17 [expand-simple-lambda (# . #) () (()) ...] >> 1509: 16 [parse (((# #) . #(syntax-object # # #))) () () () () () ()] >> In ice-9/boot-9.scm: >> 627: 15 [map #<procedure 2205e10 at ice-9/psyntax.scm:1510:50 (x)> ((# . #))] >> In ice-9/psyntax.scm: >> 2114: 14 [expand-let (let # #) (# #) (# # #) ...] >> In ice-9/boot-9.scm: >> 627: 13 [map #<procedure 2204ec0 at ice-9/psyntax.scm:2114:49 (x)> (#)] >> In ice-9/psyntax.scm: >> 1257: 12 [#<procedure 2204ec0 at ice-9/psyntax.scm:2114:49 (x)> (open-input-pipe #)] >> 1186: 11 [syntax-type (open-input-pipe #) (# #) (# # #) ...] >> 579: 10 [syntax-type open-input-pipe (# #) (# # #) ...] >> 292: 9 [get-global-definition-hook open-input-pipe (hygiene scripts autofrisk)] >> In unknown file: >> ?: 8 [module-variable #<directory (scripts autofrisk) 21a8dc8> open-input-pipe] >> In ice-9/boot-9.scm: >> 2790: 7 [b #<autoload (ice-9 popen) 21a86c0> open-input-pipe #f] >> 2579: 6 [#<procedure 1d76530 at ice-9/boot-9.scm:2567:4 (name #:optional autoload version #:key ensure)> # ...] >> 2850: 5 [try-module-autoload (ice-9 popen) #f] >> 2191: 4 [save-module-excursion #<procedure 2205d20 at ice-9/boot-9.scm:2851:17 ()>] >> 2870: 3 [#<procedure 2205d20 at ice-9/boot-9.scm:2851:17 ()>] >> In unknown file: >> ?: 2 [primitive-load-path "ice-9\\popen" ...] >> ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] >> In ice-9/boot-9.scm: >> 106: 0 [#<procedure 1f55340 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] >> >> ice-9/boot-9.scm:106:20: In procedure #<procedure 1f55340 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: >> ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." >> make[3]: *** [scripts/autofrisk.go] Error 1 > I believe I have fixed this one (and the scan-api one). You will see a > warning when building these two files but that is all. I think at this > point the build should complete. > > New tarball: > > http://wingolog.org/priv/guile-2.0.7.194-dfd1d.tar.gz > > This has been a very long bug report, but productive. Thank you for > following through with these tests, and for checking the above tarball. > > The next step, after moving on to actually build your application ;), is > to get the test suite working. I suspect you will run into some issues. > Will you please run a make check -k, and send the resulting log (if it > has errors) to bug-guile@gnu.org? Thanks :-) Please include > check-guile.log as well. > > I'll close this report, in optimistic hope that these fixes do indeed > allow the build to complete. Let me know how it goes, and happy hacking! > > (Actually while I'm at it: would you also mail the complete set of > patches that you locally apply to your copy? They'll be helpful in > future reports. Thanks!) > > Andy [-- Attachment #2: build_linux.log --] [-- Type: text/x-log, Size: 155965 bytes --] cd lib/guile-2.0 && ./configure --prefix=/home/shookie/guiletest/lib --disable-shared --disable-fast-install --with-gnu-ld --disable-posix --without-threads --disable-deprecated --enable-nls --with-libgmp-prefix=/home/shookie/guiletest/lib LIBFFI_CFLAGS='-I/home/shookie/guiletest/lib/lib/libffi-3.0.12/include' LIBFFI_LIBS='-lffi' BDW_GC_LIBS='-lgc' BDW_GC_CFLAGS='-I/home/shookie/guiletest/lib' CPPFLAGS='-D HAVE_GC_SET_FINALIZER_NOTIFIER -D HAVE_GC_GET_FREE_SPACE_DIVISOR -D HAVE_GC_GET_HEAP_USAGE_SAFE -D HAVE_GC_SET_FINALIZE_ON_DEMAND' CFLAGS='-s' && make -k install checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for Minix Amsterdam compiler... no checking for ar... ar checking for ranlib... ranlib checking whether gcc and cc understand -c and -o together... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... 64 configure: autobuild project... GNU Guile configure: autobuild revision... 2.0.7.194-dfd1d configure: autobuild hostname... solon configure: autobuild timestamp... 20130316T003102Z checking how to run the C preprocessor... gcc -E checking for a sed that does not truncate output... /bin/sed checking for gawk... (cached) gawk checking whether ln -s works... yes checking the archiver (ar) interface... ar checking for sys/socket.h... yes checking for arpa/inet.h... yes checking for features.h... yes checking for sys/param.h... yes checking for dirent.h... yes checking for xlocale.h... yes checking for unistd.h... (cached) yes checking for sys/stat.h... (cached) yes checking for netdb.h... yes checking for netinet/in.h... yes checking for iconv.h... yes checking for langinfo.h... yes checking for math.h... yes checking for sys/mman.h... yes checking for poll.h... yes checking for sys/ioctl.h... yes checking for sys/filio.h... no checking for sys/select.h... yes checking for sys/time.h... yes checking for wchar.h... yes checking for stdint.h... (cached) yes checking for sys/file.h... yes checking for sys/times.h... yes checking for sys/uio.h... yes checking for wctype.h... yes checking whether the preprocessor supports include_next... yes checking whether system header files limit the line length... no checking whether <sys/socket.h> is self-contained... yes checking for shutdown... yes checking whether <sys/socket.h> defines the SHUT_* macros... yes checking for struct sockaddr_storage... yes checking for sa_family_t... yes checking for struct sockaddr_storage.ss_family... yes checking whether socket is declared without a macro... yes checking whether connect is declared without a macro... yes checking whether accept is declared without a macro... yes checking whether bind is declared without a macro... yes checking whether getpeername is declared without a macro... yes checking whether getsockname is declared without a macro... yes checking whether getsockopt is declared without a macro... yes checking whether listen is declared without a macro... yes checking whether recv is declared without a macro... yes checking whether send is declared without a macro... yes checking whether recvfrom is declared without a macro... yes checking whether sendto is declared without a macro... yes checking whether setsockopt is declared without a macro... yes checking whether shutdown is declared without a macro... yes checking whether accept4 is declared without a macro... yes checking for size_t... yes checking for working alloca.h... yes checking for alloca... yes checking whether <wchar.h> uses 'inline' correctly... yes checking for btowc... yes checking for canonicalize_file_name... yes checking for getcwd... yes checking for readlink... yes checking for realpath... yes checking for _set_invalid_parameter_handler... no checking for duplocale... yes checking for symlink... yes checking for flock... yes checking for fcntl... yes checking for alarm... yes checking for getlogin... yes checking for lstat... yes checking for mbsinit... yes checking for mbrtowc... yes checking for mprotect... yes checking for nl_langinfo... yes checking for pipe... yes checking for pipe2... yes checking for isblank... yes checking for iswctype... yes checking for wcscoll... yes checking for link... yes checking for setenv... yes checking for snprintf... yes checking for tzset... yes checking for localtime_r... yes checking for times... yes checking for vasnprintf... no checking for wcrtomb... yes checking for iswcntrl... yes checking for nl_langinfo and CODESET... yes checking for a traditional french locale... none checking whether // is distinct from /... no checking whether realpath works... yes checking for wchar_t... yes checking whether NULL can be used in arbitrary expressions... yes checking whether locale.h conforms to POSIX:2001... yes checking whether locale.h defines locale_t... yes checking whether struct lconv is properly defined... yes checking whether setlocale is declared without a macro... yes checking whether duplocale is declared without a macro... yes checking if environ is properly declared... yes checking for complete errno.h... yes checking for working fcntl.h... yes checking for pid_t... yes checking for mode_t... yes checking whether frexp() can be used without linking with libm... yes checking whether stat file-mode macros are broken... no checking for nlink_t... yes checking whether fchmodat is declared without a macro... yes checking whether fstat is declared without a macro... yes checking whether fstatat is declared without a macro... yes checking whether futimens is declared without a macro... yes checking whether lchmod is declared without a macro... yes checking whether lstat is declared without a macro... yes checking whether mkdirat is declared without a macro... yes checking whether mkfifo is declared without a macro... yes checking whether mkfifoat is declared without a macro... yes checking whether mknod is declared without a macro... yes checking whether mknodat is declared without a macro... yes checking whether stat is declared without a macro... yes checking whether utimensat is declared without a macro... yes checking whether getaddrinfo is declared without a macro... yes checking whether freeaddrinfo is declared without a macro... yes checking whether gai_strerror is declared without a macro... yes checking whether getnameinfo is declared without a macro... yes checking for library containing gethostbyname... none required checking for gethostbyname... yes checking for library containing getservbyname... none required checking for getservbyname... yes checking for C/C++ restrict keyword... __restrict checking for library containing inet_ntop... none required checking whether inet_ntop is declared... yes checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for shared library run path origin... done checking for iconv... yes checking for working iconv... yes checking for iconv declaration... extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for inline... inline checking whether byte ordering is bigendian... no checking whether long double and double are the same... no checking where to find the exponent in a 'float'... word 0 bit 23 checking whether isnan(float) can be used without linking with libm... yes checking whether isnan(float) works... yes checking whether isnan(double) can be used without linking with libm... yes checking whether isnan(long double) can be used without linking with libm... yes checking whether isnanl works... no checking where to find the exponent in a 'double'... word 1 bit 20 checking whether ldexp() can be used without linking with libm... yes checking for libunistring... yes checking how to link with libunistring... -lunistring checking for libunistring version... 0.9.3 checking whether getc_unlocked is declared... yes checking whether we are using the GNU C Library >= 2.1 or uClibc... yes checking whether pow can be used without linking with libm... no checking whether pow can be used with libm... yes checking whether log works... yes checking whether round is declared... yes checking whether round works... yes checking whether lstat correctly handles trailing slash... yes checking whether malloc, realloc, calloc are POSIX compliant... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for unsigned long long int... yes checking for long long int... yes checking for mbstate_t... yes checking for a traditional japanese locale... none checking for a transitional chinese locale... none checking for a french Unicode locale... none checking for mmap... yes checking for MAP_ANONYMOUS... yes checking whether memchr works... yes checking for promoted mode_t type... mode_t checking whether poll is declared without a macro... yes checking for library containing setsockopt... none needed checking for ssize_t... yes checking whether <sys/select.h> is self-contained... yes checking whether pselect is declared without a macro... yes checking whether select is declared without a macro... yes checking whether setenv is declared... yes checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for sigset_t... yes checking for uid_t in sys/types.h... yes checking whether snprintf returns a byte count as in C99... yes checking whether snprintf is declared... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking whether stdint.h conforms to C99... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_zone... yes checking for struct tm.tm_gmtoff... yes checking whether ffsl is declared without a macro... yes checking whether ffsll is declared without a macro... yes checking whether memmem is declared without a macro... yes checking whether mempcpy is declared without a macro... yes checking whether memrchr is declared without a macro... yes checking whether rawmemchr is declared without a macro... yes checking whether stpcpy is declared without a macro... yes checking whether stpncpy is declared without a macro... yes checking whether strchrnul is declared without a macro... yes checking whether strdup is declared without a macro... yes checking whether strncat is declared without a macro... yes checking whether strndup is declared without a macro... yes checking whether strnlen is declared without a macro... yes checking whether strpbrk is declared without a macro... yes checking whether strsep is declared without a macro... yes checking whether strcasestr is declared without a macro... yes checking whether strtok_r is declared without a macro... yes checking whether strerror_r is declared without a macro... yes checking whether strsignal is declared without a macro... yes checking whether strverscmp is declared without a macro... yes checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking whether gettimeofday is declared without a macro... yes checking for struct timespec in <time.h>... yes checking for wint_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking for snprintf... (cached) yes checking for strnlen... yes checking for wcslen... yes checking for wcsnlen... yes checking for mbrtowc... (cached) yes checking for wcrtomb... (cached) yes checking whether _snprintf is declared... no checking whether vsnprintf is declared... yes checking for alloca as a compiler built-in... yes checking whether inet_ntop is declared without a macro... yes checking whether inet_pton is declared without a macro... yes checking whether btowc(0) is correct... yes checking whether btowc(EOF) is correct... guessing yes checking byteswap.h usability... yes checking byteswap.h presence... yes checking for byteswap.h... yes checking for library containing clock_gettime... -lrt checking for clock_gettime... yes checking for clock_settime... yes checking for clock_getcpuclockid... yes checking whether alphasort is declared without a macro... yes checking whether closedir is declared without a macro... yes checking whether dirfd is declared without a macro... yes checking whether fdopendir is declared without a macro... yes checking whether opendir is declared without a macro... yes checking whether readdir is declared without a macro... yes checking whether rewinddir is declared without a macro... yes checking whether scandir is declared without a macro... yes checking for dirfd... yes checking whether dirfd is declared... (cached) yes checking whether dirfd is a macro... no checking whether // is distinct from /... (cached) no checking whether dup2 works... yes checking whether duplocale(LC_GLOBAL_LOCALE) works... yes checking whether fcntl is declared without a macro... yes checking whether openat is declared without a macro... yes checking whether conversion from 'int' to 'long double' works... yes checking whether frexp works... yes checking whether __func__ is available... yes configure: checking how to do getaddrinfo, freeaddrinfo and getnameinfo checking for library containing getaddrinfo... none required checking for getaddrinfo... yes checking whether gai_strerror is declared... (cached) yes checking whether gai_strerrorA is declared... no checking for gai_strerror with POSIX signature... yes checking for struct sockaddr.sa_len... no checking whether getaddrinfo is declared... (cached) yes checking whether freeaddrinfo is declared... (cached) yes checking whether getnameinfo is declared... (cached) yes checking for struct addrinfo... yes checking for library containing gethostbyname... (cached) none required checking for gethostbyname... (cached) yes checking whether iconv supports conversion between UTF-8 and UTF-{16,32}{BE,LE}... yes checking for library containing inet_ntop... (cached) none required checking whether inet_ntop is declared... (cached) yes checking for library containing inet_pton... none required checking whether inet_pton is declared... (cached) yes checking whether the compiler generally respects inline... no checking whether isinf is declared... yes checking whether isinf(long double) works... yes checking whether isnan macro works... no checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(float) can be used without linking with libm... (cached) yes checking whether isnan(float) works... (cached) yes checking where to find the exponent in a 'float'... (cached) word 0 bit 23 checking whether isnan(long double) can be used without linking with libm... (cached) yes checking whether isnanl works... (cached) no checking where to find the exponent in a 'long double'... word 2 bit 0 checking whether langinfo.h defines CODESET... yes checking whether langinfo.h defines T_FMT_AMPM... yes checking whether langinfo.h defines ERA... yes checking whether langinfo.h defines YESEXPR... yes checking whether nl_langinfo is declared without a macro... yes checking if LD -Wl,--version-script works... yes checking whether the -Werror option is usable... yes checking for simple visibility declarations... yes checking whether locale.h conforms to POSIX:2001... (cached) yes checking whether locale.h defines locale_t... (cached) yes checking whether struct lconv is properly defined... (cached) yes checking whether setlocale is declared without a macro... (cached) yes checking whether duplocale is declared without a macro... (cached) yes checking for log1p... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking whether NAN macro works... yes checking whether HUGE_VAL works... yes checking whether acosf is declared without a macro... yes checking whether acosl is declared without a macro... yes checking whether asinf is declared without a macro... yes checking whether asinl is declared without a macro... yes checking whether atanf is declared without a macro... yes checking whether atanl is declared without a macro... yes checking whether cbrt is declared without a macro... yes checking whether cbrtf is declared without a macro... yes checking whether cbrtl is declared without a macro... yes checking whether ceilf is declared without a macro... yes checking whether ceill is declared without a macro... yes checking whether copysign is declared without a macro... yes checking whether copysignf is declared without a macro... yes checking whether copysignl is declared without a macro... yes checking whether cosf is declared without a macro... yes checking whether cosl is declared without a macro... yes checking whether coshf is declared without a macro... yes checking whether expf is declared without a macro... yes checking whether expl is declared without a macro... yes checking whether exp2 is declared without a macro... yes checking whether exp2f is declared without a macro... yes checking whether exp2l is declared without a macro... yes checking whether expm1 is declared without a macro... yes checking whether expm1f is declared without a macro... yes checking whether expm1l is declared without a macro... yes checking whether fabsf is declared without a macro... yes checking whether fabsl is declared without a macro... yes checking whether floorf is declared without a macro... yes checking whether floorl is declared without a macro... yes checking whether fma is declared without a macro... yes checking whether fmaf is declared without a macro... yes checking whether fmal is declared without a macro... yes checking whether fmod is declared without a macro... yes checking whether fmodf is declared without a macro... yes checking whether fmodl is declared without a macro... yes checking whether frexpf is declared without a macro... yes checking whether frexpl is declared without a macro... yes checking whether hypotf is declared without a macro... yes checking whether hypotl is declared without a macro... yes checking whether ilogb is declared without a macro... yes checking whether ilogbf is declared without a macro... yes checking whether ilogbl is declared without a macro... yes checking whether ldexpf is declared without a macro... yes checking whether ldexpl is declared without a macro... yes checking whether log is declared without a macro... yes checking whether logf is declared without a macro... yes checking whether logl is declared without a macro... yes checking whether log10 is declared without a macro... yes checking whether log10f is declared without a macro... yes checking whether log10l is declared without a macro... yes checking whether log1p is declared without a macro... yes checking whether log1pf is declared without a macro... yes checking whether log1pl is declared without a macro... yes checking whether log2 is declared without a macro... yes checking whether log2f is declared without a macro... yes checking whether log2l is declared without a macro... yes checking whether logb is declared without a macro... yes checking whether logbf is declared without a macro... yes checking whether logbl is declared without a macro... yes checking whether modf is declared without a macro... yes checking whether modff is declared without a macro... yes checking whether modfl is declared without a macro... yes checking whether powf is declared without a macro... yes checking whether remainder is declared without a macro... yes checking whether remainderf is declared without a macro... yes checking whether remainderl is declared without a macro... yes checking whether rint is declared without a macro... yes checking whether rintf is declared without a macro... yes checking whether rintl is declared without a macro... yes checking whether round is declared without a macro... yes checking whether roundf is declared without a macro... yes checking whether roundl is declared without a macro... yes checking whether sinf is declared without a macro... yes checking whether sinl is declared without a macro... yes checking whether sinhf is declared without a macro... yes checking whether sqrtf is declared without a macro... yes checking whether sqrtl is declared without a macro... yes checking whether tanf is declared without a macro... yes checking whether tanl is declared without a macro... yes checking whether tanhf is declared without a macro... yes checking whether trunc is declared without a macro... yes checking whether truncf is declared without a macro... yes checking whether truncl is declared without a macro... yes checking whether mbrtowc handles incomplete characters... guessing yes checking whether mbrtowc works as well as mbtowc... guessing yes checking whether mbrtowc handles a NULL pwc argument... guessing yes checking whether mbrtowc handles a NULL string argument... guessing yes checking whether mbrtowc has a correct return value... guessing yes checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether getaddrinfo is declared without a macro... (cached) yes checking whether freeaddrinfo is declared without a macro... (cached) yes checking whether gai_strerror is declared without a macro... (cached) yes checking whether getnameinfo is declared without a macro... (cached) yes checking whether <netinet/in.h> is self-contained... yes checking whether YESEXPR works... yes checking for sys/pstat.h... no checking for sys/sysmp.h... no checking for sys/param.h... (cached) yes checking for sys/sysctl.h... yes checking for sched_getaffinity... yes checking for sched_getaffinity_np... no checking for pstat_getdynamic... no checking for sysmp... no checking for sysctl... yes checking for glibc compatible sched_getaffinity... yes checking whether open recognizes a trailing slash... yes checking for poll... yes checking whether poll is declared without a macro... (cached) yes checking for putenv compatible with GNU and SVID... yes checking for raise... yes checking whether readlink signature is correct... yes checking whether readlink handles trailing slash correctly... yes checking for working re_compile_pattern... no checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking whether isblank is declared... yes checking whether rename honors trailing slash on destination... yes checking whether rename honors trailing slash on source... yes checking whether rename manages hard links correctly... yes checking whether rename manages existing destinations correctly... yes checking whether rmdir works... yes checking whether round is declared... (cached) yes checking whether round works... (cached) yes checking whether select supports a 0 argument... yes checking whether select detects invalid fds... yes checking for library containing getservbyname... (cached) none required checking for getservbyname... (cached) yes checking whether setenv validates arguments... yes checking for volatile sig_atomic_t... yes checking for sighandler_t... yes checking whether pthread_sigmask is declared without a macro... yes checking whether sigaction is declared without a macro... yes checking whether sigaddset is declared without a macro... yes checking whether sigdelset is declared without a macro... yes checking whether sigemptyset is declared without a macro... yes checking whether sigfillset is declared without a macro... yes checking whether sigismember is declared without a macro... yes checking whether sigpending is declared without a macro... yes checking whether sigprocmask is declared without a macro... yes checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking for snprintf... (cached) yes checking whether snprintf respects a size of 1... yes checking whether printf supports POSIX/XSI format strings with positions... yes checking for library containing setsockopt... (cached) none needed checking for socklen_t... yes checking for ssize_t... (cached) yes checking whether stat handles trailing slashes on directories... yes checking whether stat handles trailing slashes on files... yes checking for struct stat.st_atim.tv_nsec... yes checking whether struct stat.st_atim is of type struct timespec... yes checking for struct stat.st_birthtimespec.tv_nsec... no checking for struct stat.st_birthtimensec... no checking for struct stat.st_birthtim.tv_nsec... no checking for working stdalign.h... no checking whether NULL can be used in arbitrary expressions... (cached) yes checking whether dprintf is declared without a macro... yes checking whether fpurge is declared without a macro... no checking whether fseeko is declared without a macro... yes checking whether ftello is declared without a macro... yes checking whether getdelim is declared without a macro... yes checking whether getline is declared without a macro... yes checking whether gets is declared without a macro... yes checking whether pclose is declared without a macro... yes checking whether popen is declared without a macro... yes checking whether renameat is declared without a macro... yes checking whether snprintf is declared without a macro... yes checking whether tmpfile is declared without a macro... yes checking whether vdprintf is declared without a macro... yes checking whether vsnprintf is declared without a macro... yes checking whether _Exit is declared without a macro... yes checking whether atoll is declared without a macro... yes checking whether canonicalize_file_name is declared without a macro... yes checking whether getloadavg is declared without a macro... yes checking whether getsubopt is declared without a macro... yes checking whether grantpt is declared without a macro... yes checking whether initstate is declared without a macro... yes checking whether initstate_r is declared without a macro... yes checking whether mkdtemp is declared without a macro... yes checking whether mkostemp is declared without a macro... yes checking whether mkostemps is declared without a macro... yes checking whether mkstemp is declared without a macro... yes checking whether mkstemps is declared without a macro... yes checking whether posix_openpt is declared without a macro... yes checking whether ptsname is declared without a macro... yes checking whether ptsname_r is declared without a macro... yes checking whether random is declared without a macro... yes checking whether random_r is declared without a macro... yes checking whether realpath is declared without a macro... yes checking whether rpmatch is declared without a macro... yes checking whether secure_getenv is declared without a macro... no checking whether setenv is declared without a macro... yes checking whether setstate is declared without a macro... yes checking whether setstate_r is declared without a macro... yes checking whether srandom is declared without a macro... yes checking whether srandom_r is declared without a macro... yes checking whether strtod is declared without a macro... yes checking whether strtoll is declared without a macro... yes checking whether strtoull is declared without a macro... yes checking whether unlockpt is declared without a macro... yes checking whether unsetenv is declared without a macro... yes checking whether flock is declared without a macro... yes checking whether <sys/select.h> is self-contained... (cached) yes checking whether pselect is declared without a macro... (cached) yes checking whether select is declared without a macro... (cached) yes checking whether <sys/socket.h> is self-contained... (cached) yes checking for shutdown... (cached) yes checking whether <sys/socket.h> defines the SHUT_* macros... (cached) yes checking for struct sockaddr_storage... (cached) yes checking for sa_family_t... (cached) yes checking for struct sockaddr_storage.ss_family... (cached) yes checking whether socket is declared without a macro... (cached) yes checking whether connect is declared without a macro... (cached) yes checking whether accept is declared without a macro... (cached) yes checking whether bind is declared without a macro... (cached) yes checking whether getpeername is declared without a macro... (cached) yes checking whether getsockname is declared without a macro... (cached) yes checking whether getsockopt is declared without a macro... (cached) yes checking whether listen is declared without a macro... (cached) yes checking whether recv is declared without a macro... (cached) yes checking whether send is declared without a macro... (cached) yes checking whether recvfrom is declared without a macro... (cached) yes checking whether sendto is declared without a macro... (cached) yes checking whether setsockopt is declared without a macro... (cached) yes checking whether shutdown is declared without a macro... (cached) yes checking whether accept4 is declared without a macro... (cached) yes checking for nlink_t... (cached) yes checking whether fchmodat is declared without a macro... (cached) yes checking whether fstat is declared without a macro... (cached) yes checking whether fstatat is declared without a macro... (cached) yes checking whether futimens is declared without a macro... (cached) yes checking whether lchmod is declared without a macro... (cached) yes checking whether lstat is declared without a macro... (cached) yes checking whether mkdirat is declared without a macro... (cached) yes checking whether mkfifo is declared without a macro... (cached) yes checking whether mkfifoat is declared without a macro... (cached) yes checking whether mknod is declared without a macro... (cached) yes checking whether mknodat is declared without a macro... (cached) yes checking whether stat is declared without a macro... (cached) yes checking whether utimensat is declared without a macro... (cached) yes checking for struct tms... yes checking whether times is declared without a macro... yes checking whether localtime_r is declared... yes checking whether localtime_r is compatible with its POSIX signature... yes checking whether trunc is declared... (cached) yes checking whether chdir is declared without a macro... yes checking whether chown is declared without a macro... yes checking whether dup is declared without a macro... yes checking whether dup2 is declared without a macro... yes checking whether dup3 is declared without a macro... yes checking whether environ is declared without a macro... yes checking whether euidaccess is declared without a macro... yes checking whether faccessat is declared without a macro... yes checking whether fchdir is declared without a macro... yes checking whether fchownat is declared without a macro... yes checking whether fdatasync is declared without a macro... yes checking whether fsync is declared without a macro... yes checking whether ftruncate is declared without a macro... yes checking whether getcwd is declared without a macro... yes checking whether getdomainname is declared without a macro... yes checking whether getdtablesize is declared without a macro... yes checking whether getgroups is declared without a macro... yes checking whether gethostname is declared without a macro... yes checking whether getlogin is declared without a macro... yes checking whether getlogin_r is declared without a macro... yes checking whether getpagesize is declared without a macro... yes checking whether getusershell is declared without a macro... yes checking whether setusershell is declared without a macro... yes checking whether endusershell is declared without a macro... yes checking whether group_member is declared without a macro... yes checking whether isatty is declared without a macro... yes checking whether lchown is declared without a macro... yes checking whether link is declared without a macro... yes checking whether linkat is declared without a macro... yes checking whether lseek is declared without a macro... yes checking whether pipe is declared without a macro... yes checking whether pipe2 is declared without a macro... yes checking whether pread is declared without a macro... yes checking whether pwrite is declared without a macro... yes checking whether readlink is declared without a macro... yes checking whether readlinkat is declared without a macro... yes checking whether rmdir is declared without a macro... yes checking whether sethostname is declared without a macro... yes checking whether sleep is declared without a macro... yes checking whether symlink is declared without a macro... yes checking whether symlinkat is declared without a macro... yes checking whether ttyname_r is declared without a macro... yes checking whether unlink is declared without a macro... yes checking whether unlinkat is declared without a macro... yes checking whether usleep is declared without a macro... yes checking for ptrdiff_t... yes checking for vsnprintf... yes checking whether snprintf respects a size of 1... (cached) yes checking whether printf supports POSIX/XSI format strings with positions... (cached) yes checking whether btowc is declared without a macro... yes checking whether wctob is declared without a macro... yes checking whether mbsinit is declared without a macro... yes checking whether mbrtowc is declared without a macro... yes checking whether mbrlen is declared without a macro... yes checking whether mbsrtowcs is declared without a macro... yes checking whether mbsnrtowcs is declared without a macro... yes checking whether wcrtomb is declared without a macro... yes checking whether wcsrtombs is declared without a macro... yes checking whether wcsnrtombs is declared without a macro... yes checking whether wcwidth is declared without a macro... yes checking whether wmemchr is declared without a macro... yes checking whether wmemcmp is declared without a macro... yes checking whether wmemcpy is declared without a macro... yes checking whether wmemmove is declared without a macro... yes checking whether wmemset is declared without a macro... yes checking whether wcslen is declared without a macro... yes checking whether wcsnlen is declared without a macro... yes checking whether wcscpy is declared without a macro... yes checking whether wcpcpy is declared without a macro... yes checking whether wcsncpy is declared without a macro... yes checking whether wcpncpy is declared without a macro... yes checking whether wcscat is declared without a macro... yes checking whether wcsncat is declared without a macro... yes checking whether wcscmp is declared without a macro... yes checking whether wcsncmp is declared without a macro... yes checking whether wcscasecmp is declared without a macro... yes checking whether wcsncasecmp is declared without a macro... yes checking whether wcscoll is declared without a macro... yes checking whether wcsxfrm is declared without a macro... yes checking whether wcsdup is declared without a macro... yes checking whether wcschr is declared without a macro... yes checking whether wcsrchr is declared without a macro... yes checking whether wcscspn is declared without a macro... yes checking whether wcsspn is declared without a macro... yes checking whether wcspbrk is declared without a macro... yes checking whether wcsstr is declared without a macro... yes checking whether wcstok is declared without a macro... yes checking whether wcswidth is declared without a macro... yes checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether wcrtomb return value is correct... guessing yes checking whether iswcntrl works... yes checking for towlower... yes checking for wctype_t... yes checking for wctrans_t... yes checking whether wctype is declared without a macro... yes checking whether iswctype is declared without a macro... yes checking whether wctrans is declared without a macro... yes checking whether towctrans is declared without a macro... yes checking for stdint.h... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for fgrep... /bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking the maximum length of command line arguments... 805306365 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop checking how to convert i686-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... dlltool checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... no checking for dlopen in -ldl... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking for libltdl... yes checking how to link with libltdl... -lltdl checking for makeinfo... yes checking for emacs... emacs checking where .elc files should go... ${datadir}/emacs/site-lisp checking whether to use system and library "64" calls... yes checking for __uc_get_ar_bsp in -luca... no checking for an ANSI C-conforming const... yes checking for working volatile... yes checking for inline... (cached) inline checking for __uc_get_ar_bsp in -luca... (cached) no checking whether byte ordering is bigendian... (cached) no checking labels as values... yes checking size of char... 1 checking size of unsigned char... 1 checking size of short... 2 checking size of unsigned short... 2 checking size of int... 4 checking size of unsigned int... 4 checking size of long... 4 checking size of unsigned long... 4 checking size of size_t... 4 checking size of long long... 8 checking size of unsigned long long... 8 checking size of __int64... 0 checking size of unsigned __int64... 0 checking size of void *... 4 checking size of intptr_t... 4 checking size of uintptr_t... 4 checking size of ptrdiff_t... 4 checking size of size_t... (cached) 4 checking size of off_t... 8 checking for stdint.h... (cached) yes checking for inttypes.h... (cached) yes checking size of intmax_t... 8 checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... yes checking for uintptr_t... yes checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... (cached) yes checking for uintptr_t... (cached) yes checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for struct dirent64.d_name... yes checking complex.h usability... yes checking complex.h presence... yes checking for complex.h... yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking io.h usability... no checking io.h presence... no checking for io.h... no checking libc.h usability... no checking libc.h presence... no checking for libc.h... no checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for memory.h... (cached) yes checking process.h usability... no checking process.h presence... no checking for process.h... no checking for string.h... (cached) yes checking sys/dir.h usability... yes checking sys/dir.h presence... yes checking for sys/dir.h... yes checking for sys/ioctl.h... (cached) yes checking for sys/select.h... (cached) yes checking for sys/time.h... (cached) yes checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking for sys/times.h... (cached) yes checking sys/stdtypes.h usability... no checking sys/stdtypes.h presence... no checking for sys/stdtypes.h... no checking for sys/types.h... (cached) yes checking sys/utime.h usability... no checking sys/utime.h presence... no checking for sys/utime.h... no checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking for unistd.h... (cached) yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking grp.h usability... yes checking grp.h presence... yes checking for grp.h... yes checking sys/utsname.h usability... yes checking sys/utsname.h presence... yes checking for sys/utsname.h... yes checking direct.h usability... no checking direct.h presence... no checking for direct.h... no checking machine/fpu.h usability... no checking machine/fpu.h presence... no checking for machine/fpu.h... no checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking for complex double... yes checking for socklen_t... (cached) yes checking for struct ip_mreq... yes checking for libc.h... (cached) no checking for unistd.h... (cached) yes checking whether libc.h and unistd.h can be included together... no checking type of array argument to getgroups... gid_t checking return type of signal handlers... void checking for mode_t... (cached) yes checking for cos in -lm... yes checking for gethostbyname... (cached) yes checking for connect... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking crt_externs.h usability... no checking crt_externs.h presence... no checking for crt_externs.h... no checking for DINFINITY... no checking for DQNAN... no checking for cexp... yes checking for chsize... no checking for clog... yes checking for clog10... yes checking for ctermid... yes checking for fesetround... yes checking for ftime... yes checking for ftruncate... yes checking for fchown... yes checking for fchmod... yes checking for getcwd... (cached) yes checking for geteuid... yes checking for getsid... yes checking for gettimeofday... yes checking for gmtime_r... yes checking for ioctl... yes checking for lstat... (cached) yes checking for mkdir... yes checking for mknod... yes checking for nice... yes checking for pipe... (cached) yes checking for _pipe... no checking for readdir_r... yes checking for readdir64_r... yes checking for readlink... (cached) yes checking for rename... yes checking for rmdir... yes checking for select... yes checking for setegid... yes checking for seteuid... yes checking for setlocale... yes checking for setpgid... yes checking for setsid... yes checking for sigaction... yes checking for siginterrupt... yes checking for stat64... yes checking for strftime... yes checking for strptime... yes checking for symlink... (cached) yes checking for sync... yes checking for sysconf... yes checking for tcgetpgrp... yes checking for tcsetpgrp... yes checking for times... (cached) yes checking for uname... yes checking for waitpid... yes checking for strdup... yes checking for system... yes checking for usleep... yes checking for atexit... yes checking for on_exit... yes checking for chown... yes checking for link... (cached) yes checking for fcntl... (cached) yes checking for ttyname... yes checking for getpwent... yes checking for getgrent... yes checking for kill... yes checking for getppid... yes checking for getpgrp... yes checking for fork... yes checking for setitimer... yes checking for getitimer... yes checking for strchr... yes checking for strcmp... yes checking for index... yes checking for bcopy... yes checking for memcpy... yes checking for rindex... yes checking for truncate... yes checking for unsetenv... yes checking for isblank... (cached) yes checking for _NSGetEnviron... no checking for strcoll... yes checking for strcoll_l... yes checking for newlocale... yes checking for utimensat... yes checking for sched_getaffinity... (cached) yes checking for sched_setaffinity... yes checking crypt.h usability... yes checking crypt.h presence... yes checking for crypt.h... yes checking for netdb.h... (cached) yes checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking pthread_np.h usability... no checking pthread_np.h presence... no checking for pthread_np.h... no checking for sys/param.h... (cached) yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking for sys/file.h... (cached) yes checking for sys/mman.h... (cached) yes checking for chroot... yes checking for flock... (cached) yes checking for getlogin... (cached) yes checking for cuserid... yes checking for getpriority... yes checking for setpriority... yes checking for getpass... yes checking for sethostname... yes checking for gethostname... yes checking whether sethostname is declared... (cached) yes checking whether hstrerror is declared... no checking whether cuserid is declared... yes checking for library containing crypt... -lcrypt checking for i... _Complex_I checking whether csqrt is usable... yes checking for libgmp... yes checking how to link with libgmp... /home/shookie/guiletest/lib/lib/libgmp.a checking whether libunistring was built with iconv support... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for LIBFFI... yes checking size of size_t... (cached) 4 checking size of ssize_t... 4 checking whether NLS is requested... yes checking for msgfmt... /usr/bin/msgfmt checking for gmsgfmt... /usr/bin/msgfmt checking for xgettext... /usr/bin/xgettext checking for msgmerge... /usr/bin/msgmerge checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking for GNU gettext in libc... yes checking whether to use NLS... yes checking where the gettext function comes from... libc checking for sleep declaration... yes checking for usleep declaration... yes checking whether getlogin is declared... (cached) yes checking whether alarm is declared... yes checking whether strptime is declared... yes checking return type of usleep... int checking sys/un.h usability... yes checking sys/un.h presence... yes checking for sys/un.h... yes checking for getrlimit... yes checking for setrlimit... yes checking for socketpair... yes checking for getgroups... yes checking for setgroups... yes checking for setpwent... yes checking for pause... yes checking for tzset... (cached) yes checking for sethostent... yes checking for gethostent... yes checking for endhostent... yes checking for setnetent... yes checking for getnetent... yes checking for endnetent... yes checking for setprotoent... yes checking for getprotoent... yes checking for endprotoent... yes checking for setservent... yes checking for getservent... yes checking for endservent... yes checking for getnetbyaddr... yes checking for getnetbyname... yes checking for inet_lnaof... yes checking for inet_makeaddr... yes checking for inet_netof... yes checking for hstrerror... yes checking for struct sockaddr_in.sin_len... no checking for __libc_stack_end... yes checking whether netdb.h declares h_errno... yes checking whether uint32_t is defined... yes checking for working IPv6 support... yes checking whether sockaddr_in6 has sin6_scope_id... yes checking for struct sockaddr_in6.sin6_len... no checking whether localtime caches TZ... no checking for strerror... yes checking for memmove... yes checking for mkstemp... yes checking for asinh... yes checking for acosh... yes checking for atanh... yes checking for copysign... yes checking for finite... yes checking for sincos... yes checking for trunc... yes checking for isinf... yes checking for isnan... yes checking for struct stat.st_rdev... yes checking for struct stat.st_blksize... yes checking for struct stat.st_blocks... yes checking for struct stat.st_atim... yes checking for struct stat.st_mtim... yes checking for struct stat.st_ctim... yes checking for struct tm.tm_zone... (cached) yes checking for struct tm.tm_gmtoff... (cached) yes checking whether we need POSIX to get struct utimbuf... no checking the value of `iconveh_error'... 0 checking the value of `iconveh_question_mark'... 1 checking the value of `iconveh_escape_sequence'... 2 checking for BDW_GC... yes checking for GC_do_blocking... yes checking for GC_call_with_gc_active... no checking for GC_pthread_exit... no checking for GC_pthread_cancel... no checking for GC_allow_register_threads... no checking for GC_pthread_sigmask... yes checking for GC_set_start_callback... no checking for GC_get_heap_usage_safe... no checking for GC_get_free_space_divisor... no checking for GC_gcollect_and_unmap... no checking for GC_get_unmapped_bytes... no checking for GC_set_finalizer_notifier... no checking for GC_set_finalize_on_demand... no checking for GC_set_all_interior_pointers... no checking for GC_get_gc_no... no checking for GC_set_java_finalization... no checking whether GC_do_blocking is declared... yes checking for GC_fn_type... yes checking for struct GC_stack_base... yes checking size of float... 4 checking for struct linger... yes checking for struct timespec... yes checking what kind of threads to support... null-threads checking whether C compiler handles -Wall... yes checking whether C compiler handles -Wmissing-prototypes... yes checking whether C compiler handles -Wdeclaration-after-statement... yes checking whether C compiler handles -Wpointer-arith... yes checking whether C compiler handles -Wswitch-enum... yes checking whether C compiler handles -fno-strict-aliasing... yes checking whether the linker understands `-z relro'... yes checking for tgoto in -lncurses... yes checking how to link with libreadline... /home/shookie/guiletest/lib/lib/libreadline.a checking for siginterrupt... (cached) yes checking for rl_clear_signals... yes checking for rl_cleanup_after_signal... yes checking for rl_filename_completion_function... yes checking whether rl_catch_signals is declared... yes checking whether rl_catch_sigwinch is declared... yes checking for rl_get_keymap... yes checking for rl_getc_function pointer in readline... yes checking for strdup... (cached) yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating libguile/gen-scmconfig.h config.status: creating Makefile config.status: creating am/Makefile config.status: creating lib/Makefile config.status: creating benchmark-suite/Makefile config.status: creating gc-benchmarks/Makefile config.status: creating doc/Makefile config.status: creating doc/r5rs/Makefile config.status: creating doc/ref/Makefile config.status: creating emacs/Makefile config.status: creating examples/Makefile config.status: creating libguile/Makefile config.status: creating libguile/version.h config.status: creating guile-readline/Makefile config.status: creating test-suite/Makefile config.status: creating test-suite/standalone/Makefile config.status: creating test-suite/vm/Makefile config.status: creating meta/Makefile config.status: creating module/Makefile config.status: creating meta/guile-2.0.pc config.status: creating meta/guile-2.0-uninstalled.pc config.status: creating doc/ref/effective-version.texi config.status: creating check-guile config.status: creating benchmark-guile config.status: creating meta/guile config.status: creating meta/uninstalled-env config.status: creating meta/gdb-uninstalled-guile config.status: creating meta/guild config.status: creating libguile/guile-snarf config.status: creating libguile/guile-snarf-docs config.status: creating test-suite/standalone/test-use-srfi config.status: creating test-suite/standalone/test-fast-slot-ref config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands config.status: executing po-directories commands make[1]: Entering directory `/home/shookie/guiletest/lib/guile-2.0' make install-recursive make[2]: Entering directory `/home/shookie/guiletest/lib/guile-2.0' Making install in lib make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/lib' GEN alloca.h GEN c++defs.h GEN warn-on-use.h GEN arg-nonnull.h GEN arpa/inet.h GEN configmake.h GEN dirent.h GEN fcntl.h GEN iconv.h GEN langinfo.h GEN locale.h GEN math.h GEN netdb.h GEN poll.h GEN signal.h GEN unused-parameter.h GEN stdalign.h GEN stdio.h GEN stdlib.h GEN string.h GEN sys/file.h GEN sys/select.h GEN sys/socket.h GEN sys/stat.h GEN sys/time.h GEN sys/times.h GEN sys/types.h GEN sys/uio.h GEN time.h GEN unistd.h GEN wchar.h GEN wctype.h make install-recursive make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/lib' make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/lib' CC binary-io.lo CC c-ctype.lo CC c-strcasecmp.lo CC c-strncasecmp.lo CC dirname-lgpl.lo CC basename-lgpl.lo CC stripslash.lo CC fd-hook.lo CC full-read.lo CC full-write.lo CC localcharset.lo CC malloca.lo CC math.lo CC nproc.lo CC pipe2.lo CC safe-read.lo CC safe-write.lo CC sockets.lo CC stat-time.lo CC strftime.lo CC striconveh.lo CC sys_socket.lo CC unistd.lo CC unistr/u8-mbtouc.lo CC unistr/u8-mbtouc-aux.lo CC unistr/u8-mbtouc-unsafe.lo CC unistr/u8-mbtouc-unsafe-aux.lo CC wctype-h.lo CC xsize.lo CC asnprintf.lo CC isnand.lo CC isnanf.lo CC isnanl.lo CC printf-args.lo CC printf-parse.lo CC regex.lo CC vasnprintf.lo CCLD libgnu.la GEN charset.alias GEN ref-add.sed GEN ref-del.sed make[6]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/lib' if test yes = no; then \ case 'linux-gnu' in \ darwin[56]*) \ need_charset_alias=true ;; \ darwin* | cygwin* | mingw* | pw32* | cegcc*) \ need_charset_alias=false ;; \ *) \ need_charset_alias=true ;; \ esac ; \ else \ need_charset_alias=false ; \ fi ; \ if $need_charset_alias; then \ /bin/bash /home/shookie/guiletest/lib/guile-2.0/build-aux/install-sh -d /home/shookie/guiletest/lib/lib ; \ fi ; \ if test -f /home/shookie/guiletest/lib/lib/charset.alias; then \ sed -f ref-add.sed /home/shookie/guiletest/lib/lib/charset.alias > /home/shookie/guiletest/lib/lib/charset.tmp ; \ /usr/bin/install -c -m 644 /home/shookie/guiletest/lib/lib/charset.tmp /home/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /home/shookie/guiletest/lib/lib/charset.tmp ; \ else \ if $need_charset_alias; then \ sed -f ref-add.sed charset.alias > /home/shookie/guiletest/lib/lib/charset.tmp ; \ /usr/bin/install -c -m 644 /home/shookie/guiletest/lib/lib/charset.tmp /home/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /home/shookie/guiletest/lib/lib/charset.tmp ; \ fi ; \ fi make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/lib' make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/lib' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/lib' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/lib' Making install in meta make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/meta' guile="/home/shookie/guiletest/lib/bin/`echo guile | /bin/sed -e 's,x,x,'`" ; \ cat ./guile-config.in \ | /bin/sed -e "s,@pkgconfigdir@,/home/shookie/guiletest/lib/lib/pkgconfig,g ; \ s,@""PKG_CONFIG@,/usr/bin/pkg-config,g ; \ s,@installed_guile@,$guile,g" \ > guile-config.out mv guile-config.out guile-config chmod +x guile-config make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/home/shookie/guiletest/lib/bin' /usr/bin/install -c guile-config guild '/home/shookie/guiletest/lib/bin' make install-exec-hook make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/meta' guild="`echo -n guild \ | /bin/sed -e 's,x,x,'`" ; \ guile_tools="`echo -n guile-tools \ | /bin/sed -e 's,x,x,'`" ; \ cd /home/shookie/guiletest/lib/bin && rm -f "$guile_tools" && \ ln -s "$guild" "$guile_tools" make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/home/shookie/guiletest/lib/share/aclocal' /usr/bin/install -c -m 644 guile.m4 '/home/shookie/guiletest/lib/share/aclocal' /bin/mkdir -p '/home/shookie/guiletest/lib/lib/pkgconfig' /usr/bin/install -c -m 644 guile-2.0.pc '/home/shookie/guiletest/lib/lib/pkgconfig' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/meta' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/meta' Making install in libguile make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/libguile' GEN libpath.h GEN gen-scmconfig.o GEN gen-scmconfig GEN scmconfig.h GEN vm-i-system.i GEN vm-i-scheme.i GEN vm-i-loader.i SNARF alist.x SNARF arbiters.x SNARF array-handle.x SNARF array-map.x SNARF arrays.x SNARF async.x SNARF backtrace.x SNARF boolean.x SNARF bitvectors.x SNARF bytevectors.x SNARF chars.x SNARF control.x SNARF continuations.x SNARF debug.x SNARF deprecated.x SNARF deprecation.x SNARF dynl.x SNARF dynwind.x SNARF eq.x SNARF error.x SNARF eval.x SNARF evalext.x SNARF expand.x SNARF extensions.x SNARF feature.x SNARF filesys.x SNARF fluids.x SNARF foreign.x SNARF fports.x SNARF gc-malloc.x SNARF gc.x SNARF gettext.x SNARF generalized-arrays.x SNARF generalized-vectors.x SNARF goops.x SNARF gsubr.x SNARF guardians.x SNARF hash.x SNARF hashtab.x SNARF hooks.x SNARF i18n.x SNARF init.x SNARF ioext.x SNARF keywords.x SNARF list.x SNARF load.x SNARF macros.x SNARF mallocs.x SNARF memoize.x SNARF modules.x SNARF numbers.x SNARF objprop.x SNARF options.x SNARF pairs.x SNARF ports.x SNARF print.x SNARF procprop.x SNARF procs.x SNARF promises.x SNARF r6rs-ports.x SNARF random.x SNARF rdelim.x SNARF read.x SNARF root.x SNARF rw.x SNARF scmsigs.x SNARF script.x SNARF simpos.x SNARF smob.x SNARF sort.x SNARF srcprop.x SNARF srfi-1.x SNARF srfi-4.x SNARF srfi-13.x SNARF srfi-14.x SNARF srfi-60.x SNARF stackchk.x SNARF stacks.x SNARF stime.x SNARF strings.x SNARF strorder.x SNARF strports.x SNARF struct.x SNARF symbols.x SNARF threads.x SNARF throw.x SNARF trees.x SNARF uniform.x SNARF values.x SNARF variable.x SNARF vectors.x SNARF version.x SNARF vports.x SNARF weaks.x SNARF frames.x SNARF instructions.x SNARF objcodes.x SNARF programs.x SNARF vm.x SNARF net_db.x SNARF socket.x SNARF regex-posix.x make install-am make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/libguile' CC libguile_2.0_la-alist.lo CC libguile_2.0_la-arbiters.lo CC libguile_2.0_la-array-handle.lo CC libguile_2.0_la-array-map.lo CC libguile_2.0_la-arrays.lo CC libguile_2.0_la-async.lo CC libguile_2.0_la-backtrace.lo CC libguile_2.0_la-boolean.lo CC libguile_2.0_la-bitvectors.lo CC libguile_2.0_la-bytevectors.lo CC libguile_2.0_la-chars.lo CC libguile_2.0_la-control.lo CC libguile_2.0_la-continuations.lo CC libguile_2.0_la-debug.lo CC libguile_2.0_la-deprecated.lo CC libguile_2.0_la-deprecation.lo CC libguile_2.0_la-dynwind.lo CC libguile_2.0_la-eq.lo CC libguile_2.0_la-error.lo CC libguile_2.0_la-eval.lo CC libguile_2.0_la-evalext.lo CC libguile_2.0_la-expand.lo CC libguile_2.0_la-extensions.lo CC libguile_2.0_la-feature.lo CC libguile_2.0_la-filesys.lo CC libguile_2.0_la-finalizers.lo CC libguile_2.0_la-fluids.lo CC libguile_2.0_la-foreign.lo CC libguile_2.0_la-fports.lo CC libguile_2.0_la-frames.lo CC libguile_2.0_la-gc-malloc.lo CC libguile_2.0_la-gc.lo CC libguile_2.0_la-gdbint.lo CC libguile_2.0_la-gettext.lo CC libguile_2.0_la-generalized-arrays.lo CC libguile_2.0_la-generalized-vectors.lo CC libguile_2.0_la-goops.lo CC libguile_2.0_la-gsubr.lo CC libguile_2.0_la-guardians.lo CC libguile_2.0_la-hash.lo CC libguile_2.0_la-hashtab.lo CC libguile_2.0_la-hooks.lo CC libguile_2.0_la-i18n.lo CC libguile_2.0_la-init.lo CC libguile_2.0_la-inline.lo CC libguile_2.0_la-instructions.lo CC libguile_2.0_la-ioext.lo CC libguile_2.0_la-keywords.lo CC libguile_2.0_la-list.lo CC libguile_2.0_la-load.lo CC libguile_2.0_la-macros.lo CC libguile_2.0_la-mallocs.lo CC libguile_2.0_la-memoize.lo CC libguile_2.0_la-modules.lo CC libguile_2.0_la-null-threads.lo CC libguile_2.0_la-numbers.lo CC libguile_2.0_la-objcodes.lo CC libguile_2.0_la-objprop.lo CC libguile_2.0_la-options.lo CC libguile_2.0_la-pairs.lo CC libguile_2.0_la-poll.lo CC libguile_2.0_la-ports.lo CC libguile_2.0_la-print.lo CC libguile_2.0_la-procprop.lo CC libguile_2.0_la-procs.lo CC libguile_2.0_la-programs.lo CC libguile_2.0_la-promises.lo CC libguile_2.0_la-r6rs-ports.lo CC libguile_2.0_la-random.lo CC libguile_2.0_la-rdelim.lo CC libguile_2.0_la-read.lo CC libguile_2.0_la-root.lo CC libguile_2.0_la-rw.lo CC libguile_2.0_la-scmsigs.lo CC libguile_2.0_la-script.lo CC libguile_2.0_la-simpos.lo CC libguile_2.0_la-smob.lo CC libguile_2.0_la-sort.lo CC libguile_2.0_la-srcprop.lo CC libguile_2.0_la-srfi-1.lo CC libguile_2.0_la-srfi-4.lo CC libguile_2.0_la-srfi-13.lo CC libguile_2.0_la-srfi-14.lo CC libguile_2.0_la-srfi-60.lo CC libguile_2.0_la-stackchk.lo CC libguile_2.0_la-stacks.lo CC libguile_2.0_la-stime.lo CC libguile_2.0_la-strings.lo CC libguile_2.0_la-strorder.lo CC libguile_2.0_la-strports.lo CC libguile_2.0_la-struct.lo CC libguile_2.0_la-symbols.lo CC libguile_2.0_la-threads.lo threads.c: In function 'scm_cancel_thread': threads.c:1171:7: warning: statement with no effect [-Wunused-value] CC libguile_2.0_la-throw.lo CC libguile_2.0_la-trees.lo CC libguile_2.0_la-uniform.lo CC libguile_2.0_la-values.lo CC libguile_2.0_la-variable.lo CC libguile_2.0_la-vectors.lo CC libguile_2.0_la-version.lo CC libguile_2.0_la-vm.lo CC libguile_2.0_la-vports.lo CC libguile_2.0_la-weaks.lo CC dynl.lo CC net_db.lo CC socket.lo CC regex-posix.lo CCLD libguile-2.0.la CC guile-guile.o CCLD guile GEN c-tokenize.o GEN guile_filter_doc_snarfage SNARF alist.doc SNARF arbiters.doc SNARF array-handle.doc SNARF array-map.doc SNARF arrays.doc SNARF async.doc SNARF backtrace.doc SNARF boolean.doc SNARF bitvectors.doc SNARF bytevectors.doc SNARF chars.doc SNARF control.doc SNARF continuations.doc SNARF debug.doc SNARF deprecated.doc SNARF deprecation.doc SNARF dynl.doc SNARF dynwind.doc SNARF eq.doc SNARF error.doc SNARF eval.doc SNARF evalext.doc SNARF expand.doc SNARF extensions.doc SNARF feature.doc SNARF filesys.doc SNARF fluids.doc SNARF foreign.doc SNARF fports.doc SNARF gc-malloc.doc SNARF gc.doc SNARF gettext.doc SNARF generalized-arrays.doc generalized-arrays.c:139:***Mismatching FUNC_NAME. Should be: `#define FUNC_NAME s_scm_array_length' SNARF generalized-vectors.doc SNARF goops.doc SNARF gsubr.doc SNARF guardians.doc SNARF hash.doc SNARF hashtab.doc SNARF hooks.doc SNARF i18n.doc SNARF init.doc SNARF ioext.doc SNARF keywords.doc SNARF list.doc SNARF load.doc SNARF macros.doc SNARF mallocs.doc SNARF memoize.doc memoize.c:515:***Mismatching FUNC_NAME. Should be: `#define FUNC_NAME s_"@prompt"' SNARF modules.doc SNARF numbers.doc SNARF objprop.doc SNARF options.doc SNARF pairs.doc pairs.c:147:***Missing or erroneous `#define FUNC_NAME s_scm_cdr' pairs.c:150:***pairs.c:155:***Missing or erroneous `#define FUNC_NAME s_scm_cddr' pairs.c:158:***pairs.c:163:***Missing or erroneous `#define FUNC_NAME s_scm_cadr' pairs.c:166:***pairs.c:171:***Missing or erroneous `#define FUNC_NAME s_scm_cdddr' pairs.c:174:***pairs.c:179:***Missing or erroneous `#define FUNC_NAME s_scm_cdadr' pairs.c:182:***pairs.c:187:***Missing or erroneous `#define FUNC_NAME s_scm_caddr' pairs.c:190:***pairs.c:195:***Missing or erroneous `#define FUNC_NAME s_scm_caadr' pairs.c:198:***pairs.c:203:***Missing or erroneous `#define FUNC_NAME s_scm_cddddr' pairs.c:206:***pairs.c:211:***Missing or erroneous `#define FUNC_NAME s_scm_cddadr' pairs.c:214:***pairs.c:219:***Missing or erroneous `#define FUNC_NAME s_scm_cdaddr' pairs.c:222:***pairs.c:227:***Missing or erroneous `#define FUNC_NAME s_scm_cdaadr' pairs.c:230:***pairs.c:235:***Missing or erroneous `#define FUNC_NAME s_scm_cadddr' pairs.c:238:***pairs.c:243:***Missing or erroneous `#define FUNC_NAME s_scm_cadadr' pairs.c:246:***pairs.c:251:***Missing or erroneous `#define FUNC_NAME s_scm_caaddr' pairs.c:254:***pairs.c:259:***Missing or erroneous `#define FUNC_NAME s_scm_caaadr' pairs.c:262:***Missing or erroneous #undef for scm_car: Missing or erroneous #undef for scm_cdar: Missing or erroneous #undef for scm_caar: Missing or erroneous #undef for scm_cddar: Missing or erroneous #undef for scm_cdaar: Missing or erroneous #undef for scm_cadar: Missing or erroneous #undef for scm_caaar: Missing or erroneous #undef for scm_cdddar: Missing or erroneous #undef for scm_cddaar: Missing or erroneous #undef for scm_cdadar: Missing or erroneous #undef for scm_cdaaar: Missing or erroneous #undef for scm_caddar: Missing or erroneous #undef for scm_cadaar: Missing or erroneous #undef for scm_caadar: Missing or erroneous #undef for scm_caaaar: SNARF ports.doc SNARF print.doc SNARF procprop.doc SNARF procs.doc SNARF promises.doc SNARF r6rs-ports.doc SNARF random.doc SNARF rdelim.doc SNARF read.doc SNARF root.doc SNARF rw.doc SNARF scmsigs.doc SNARF script.doc SNARF simpos.doc SNARF smob.doc SNARF sort.doc SNARF srcprop.doc SNARF srfi-1.doc SNARF srfi-4.doc SNARF srfi-13.doc SNARF srfi-14.doc SNARF srfi-60.doc SNARF stackchk.doc SNARF stacks.doc SNARF stime.doc SNARF strings.doc SNARF strorder.doc SNARF strports.doc SNARF struct.doc SNARF symbols.doc SNARF threads.doc SNARF throw.doc SNARF trees.doc SNARF uniform.doc SNARF values.doc SNARF variable.doc SNARF vectors.doc SNARF version.doc SNARF vports.doc SNARF weaks.doc SNARF net_db.doc SNARF socket.doc SNARF regex-posix.doc GEN guile-procedures.texi rm -f guile-procedures.txt makeinfo --force -o guile-procedures.txt guile-procedures.texi || test -f guile-procedures.txt /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:10189: Cross reference to nonexistent node `Backslash Escapes' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9884: Cross reference to nonexistent node `Network Address Conversion' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9823: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9773: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9344: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9337: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9330: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9244: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8609: Cross reference to nonexistent node `Vtables' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8212: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8005: Cross reference to nonexistent node `Bitwise Operations' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6696: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6674: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6618: Cross reference to nonexistent node `Multiple Values' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5483: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5192: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5181: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5170: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3211: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3018: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2689: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2682: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2675: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2105: Cross reference to nonexistent node `Character Encoding of Source Files' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2099: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /home/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2081: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/home/shookie/guiletest/lib/lib' /bin/bash ../libtool --mode=install /usr/bin/install -c libguile-2.0.la '/home/shookie/guiletest/lib/lib' libtool: install: /usr/bin/install -c .libs/libguile-2.0.lai /home/shookie/guiletest/lib/lib/libguile-2.0.la libtool: install: /usr/bin/install -c .libs/libguile-2.0.a /home/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: chmod 644 /home/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: ranlib /home/shookie/guiletest/lib/lib/libguile-2.0.a libtool: finish: PATH="/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/sbin" ldconfig -n /home/shookie/guiletest/lib/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/shookie/guiletest/lib/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /bin/mkdir -p '/home/shookie/guiletest/lib/bin' /bin/bash ../libtool --mode=install /usr/bin/install -c guile '/home/shookie/guiletest/lib/bin' libtool: install: /usr/bin/install -c guile /home/shookie/guiletest/lib/bin/guile /bin/mkdir -p '/home/shookie/guiletest/lib/bin' /usr/bin/install -c guile-snarf '/home/shookie/guiletest/lib/bin' make install-exec-hook make[6]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/libguile' rm -f /home/shookie/guiletest/lib/bin/guile-snarf.awk make[6]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/home/shookie/guiletest/lib/include/guile/2.0/libguile' /usr/bin/install -c -m 644 __scm.h alist.h arbiters.h array-handle.h array-map.h arrays.h async.h backtrace.h bdw-gc.h boolean.h bitvectors.h bytevectors.h chars.h control.h continuations.h debug-malloc.h debug.h deprecated.h deprecation.h dynl.h dynwind.h eq.h error.h eval.h evalext.h expand.h extensions.h feature.h finalizers.h filesys.h fluids.h foreign.h fports.h frames.h gc.h gdb_interface.h gdbint.h gettext.h generalized-arrays.h generalized-vectors.h '/home/shookie/guiletest/lib/include/guile/2.0/libguile' /usr/bin/install -c -m 644 goops.h gsubr.h guardians.h hash.h hashtab.h hooks.h i18n.h init.h inline.h instructions.h ioext.h iselect.h keywords.h list.h load.h macros.h mallocs.h memoize.h modules.h net_db.h null-threads.h numbers.h objcodes.h objprop.h options.h pairs.h poll.h ports.h posix.h print.h procprop.h procs.h programs.h promises.h pthread-threads.h r6rs-ports.h random.h rdelim.h read.h regex-posix.h '/home/shookie/guiletest/lib/include/guile/2.0/libguile' /usr/bin/install -c -m 644 root.h rw.h scmsigs.h script.h simpos.h smob.h snarf.h socket.h sort.h srcprop.h srfi-1.h srfi-4.h srfi-13.h srfi-14.h srfi-60.h stackchk.h stacks.h stime.h strings.h strorder.h strports.h struct.h symbols.h tags.h threads.h throw.h trees.h validate.h uniform.h values.h variable.h vectors.h vm-engine.h vm-expand.h vm.h vports.h weaks.h '/home/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/home/shookie/guiletest/lib/include/guile/2.0/libguile' /usr/bin/install -c -m 644 version.h scmconfig.h '/home/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/home/shookie/guiletest/lib/share/guile/2.0' /usr/bin/install -c -m 644 guile-procedures.txt '/home/shookie/guiletest/lib/share/guile/2.0' make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/libguile' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/libguile' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/libguile' Making install in module make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/module' GUILEC ice-9/eval.go wrote `ice-9/eval.go' GUILEC ice-9/psyntax-pp.go wrote `ice-9/psyntax-pp.go' GUILEC ice-9/boot-9.go ice-9/boot-9.scm:1343:9: warning: possibly unbound variable `close' ice-9/boot-9.scm:1424:6: warning: possibly unbound variable `putenv' ice-9/boot-9.scm:1425:6: warning: possibly unbound variable `putenv' ice-9/boot-9.scm:1429:2: warning: possibly unbound variable `putenv' ice-9/boot-9.scm:1518:61: warning: possibly unbound variable `getuid' wrote `ice-9/boot-9.go' GUILEC ice-9/vlist.go wrote `ice-9/vlist.go' GUILEC srfi/srfi-1.go wrote `srfi/srfi-1.go' GUILEC language/tree-il/peval.go wrote `language/tree-il/peval.go' GUILEC language/tree-il/cse.go wrote `language/tree-il/cse.go' GUILEC language/tree-il.go wrote `language/tree-il.go' GUILEC language/glil.go wrote `language/glil.go' GUILEC language/assembly.go wrote `language/assembly.go' GUILEC language/tree-il/primitives.go wrote `language/tree-il/primitives.go' GUILEC language/tree-il/effects.go wrote `language/tree-il/effects.go' GUILEC language/tree-il/fix-letrec.go wrote `language/tree-il/fix-letrec.go' GUILEC language/tree-il/optimize.go wrote `language/tree-il/optimize.go' GUILEC language/tree-il/canonicalize.go wrote `language/tree-il/canonicalize.go' GUILEC language/tree-il/analyze.go wrote `language/tree-il/analyze.go' GUILEC language/tree-il/inline.go wrote `language/tree-il/inline.go' GUILEC language/tree-il/compile-glil.go wrote `language/tree-il/compile-glil.go' GUILEC language/tree-il/debug.go wrote `language/tree-il/debug.go' GUILEC language/tree-il/spec.go wrote `language/tree-il/spec.go' GUILEC language/glil/spec.go wrote `language/glil/spec.go' GUILEC language/glil/compile-assembly.go wrote `language/glil/compile-assembly.go' GUILEC language/assembly/spec.go wrote `language/assembly/spec.go' GUILEC language/assembly/compile-bytecode.go wrote `language/assembly/compile-bytecode.go' GUILEC language/assembly/decompile-bytecode.go wrote `language/assembly/decompile-bytecode.go' GUILEC language/assembly/disassemble.go wrote `language/assembly/disassemble.go' GUILEC language/bytecode/spec.go wrote `language/bytecode/spec.go' GUILEC language/objcode/spec.go wrote `language/objcode/spec.go' GUILEC language/value/spec.go wrote `language/value/spec.go' GUILEC language/scheme/spec.go wrote `language/scheme/spec.go' GUILEC language/scheme/compile-tree-il.go wrote `language/scheme/compile-tree-il.go' GUILEC language/scheme/decompile-tree-il.go wrote `language/scheme/decompile-tree-il.go' GUILEC system/base/pmatch.go wrote `system/base/pmatch.go' GUILEC system/base/syntax.go wrote `system/base/syntax.go' GUILEC system/base/compile.go wrote `system/base/compile.go' GUILEC system/base/language.go wrote `system/base/language.go' GUILEC system/base/lalr.go wrote `system/base/lalr.go' GUILEC system/base/message.go wrote `system/base/message.go' GUILEC system/base/target.go wrote `system/base/target.go' GUILEC system/base/ck.go wrote `system/base/ck.go' GUILEC ice-9/r4rs.go wrote `ice-9/r4rs.go' GUILEC ice-9/r5rs.go wrote `ice-9/r5rs.go' GUILEC ice-9/deprecated.go wrote `ice-9/deprecated.go' ice-9/deprecated.scm:119:18: warning: possibly unbound variable `c-registered-modules' ice-9/deprecated.scm:120:4: warning: possibly unbound variable `c-clear-registered-modules' ice-9/deprecated.scm:904:8: warning: possibly unbound variable `standard-eval-closure' GUILEC ice-9/and-let-star.go wrote `ice-9/and-let-star.go' GUILEC ice-9/binary-ports.go wrote `ice-9/binary-ports.go' GUILEC ice-9/calling.go wrote `ice-9/calling.go' GUILEC ice-9/command-line.go wrote `ice-9/command-line.go' GUILEC ice-9/common-list.go wrote `ice-9/common-list.go' GUILEC ice-9/control.go wrote `ice-9/control.go' GUILEC ice-9/curried-definitions.go wrote `ice-9/curried-definitions.go' GUILEC ice-9/debug.go wrote `ice-9/debug.go' GUILEC ice-9/documentation.go wrote `ice-9/documentation.go' GUILEC ice-9/eval-string.go wrote `ice-9/eval-string.go' GUILEC ice-9/expect.go wrote `ice-9/expect.go' ice-9/expect.scm:151:21: warning: possibly unbound variable `select' GUILEC ice-9/format.go wrote `ice-9/format.go' GUILEC ice-9/futures.go wrote `ice-9/futures.go' GUILEC ice-9/getopt-long.go wrote `ice-9/getopt-long.go' GUILEC ice-9/hcons.go wrote `ice-9/hcons.go' GUILEC ice-9/i18n.go wrote `ice-9/i18n.go' GUILEC ice-9/iconv.go wrote `ice-9/iconv.go' GUILEC ice-9/lineio.go wrote `ice-9/lineio.go' GUILEC ice-9/ls.go wrote `ice-9/ls.go' GUILEC ice-9/mapping.go wrote `ice-9/mapping.go' GUILEC ice-9/match.go wrote `ice-9/match.go' GUILEC ice-9/networking.go wrote `ice-9/networking.go' GUILEC ice-9/null.go wrote `ice-9/null.go' GUILEC ice-9/occam-channel.go wrote `ice-9/occam-channel.go' GUILEC ice-9/optargs.go wrote `ice-9/optargs.go' GUILEC ice-9/poe.go wrote `ice-9/poe.go' GUILEC ice-9/poll.go wrote `ice-9/poll.go' GUILEC ice-9/posix.go ice-9/posix.scm:63:19: warning: possibly unbound variable `getpw' ice-9/posix.scm:64:19: warning: possibly unbound variable `setpw' ice-9/posix.scm:65:19: warning: possibly unbound variable `setpw' ice-9/posix.scm:67:24: warning: possibly unbound variable `getpw' ice-9/posix.scm:68:23: warning: possibly unbound variable `getpw' ice-9/posix.scm:70:19: warning: possibly unbound variable `getgr' ice-9/posix.scm:71:19: warning: possibly unbound variable `setgr' ice-9/posix.scm:72:19: warning: possibly unbound variable `setgr' ice-9/posix.scm:74:24: warning: possibly unbound variable `getgr' ice-9/posix.scm:75:22: warning: possibly unbound variable `getgr' wrote `ice-9/posix.go' GUILEC ice-9/q.go wrote `ice-9/q.go' GUILEC ice-9/rdelim.go wrote `ice-9/rdelim.go' GUILEC ice-9/receive.go wrote `ice-9/receive.go' GUILEC ice-9/regex.go wrote `ice-9/regex.go' GUILEC ice-9/runq.go ice-9/runq.scm:93:8: warning: possibly unbound variable `apply-to-args' wrote `ice-9/runq.go' GUILEC ice-9/rw.go wrote `ice-9/rw.go' GUILEC ice-9/safe-r5rs.go wrote `ice-9/safe-r5rs.go' GUILEC ice-9/safe.go wrote `ice-9/safe.go' GUILEC ice-9/save-stack.go wrote `ice-9/save-stack.go' GUILEC ice-9/scm-style-repl.go wrote `ice-9/scm-style-repl.go' GUILEC ice-9/session.go ice-9/session.scm:241:11: warning: non-literal format string wrote `ice-9/session.go' GUILEC ice-9/slib.go wrote `ice-9/slib.go' GUILEC ice-9/stack-catch.go wrote `ice-9/stack-catch.go' GUILEC ice-9/streams.go wrote `ice-9/streams.go' GUILEC ice-9/string-fun.go wrote `ice-9/string-fun.go' GUILEC ice-9/syncase.go wrote `ice-9/syncase.go' GUILEC ice-9/threads.go wrote `ice-9/threads.go' GUILEC ice-9/top-repl.go ice-9/top-repl.scm:36:20: warning: possibly unbound variable `SIGINT' ice-9/top-repl.scm:44:18: warning: possibly unbound variable `SIGINT' ice-9/top-repl.scm:46:18: warning: possibly unbound variable `SIGINT' ice-9/top-repl.scm:70:16: warning: possibly unbound variable `setlocale' ice-9/top-repl.scm:70:16: warning: possibly unbound variable `LC_ALL' wrote `ice-9/top-repl.go' GUILEC ice-9/buffered-input.go wrote `ice-9/buffered-input.go' GUILEC ice-9/time.go wrote `ice-9/time.go' GUILEC ice-9/history.go wrote `ice-9/history.go' GUILEC ice-9/channel.go wrote `ice-9/channel.go' GUILEC ice-9/pretty-print.go wrote `ice-9/pretty-print.go' GUILEC ice-9/ftw.go ice-9/ftw.scm:256:13: warning: possibly unbound variable `getuid' ice-9/ftw.scm:257:13: warning: possibly unbound variable `getgid' ice-9/ftw.scm:307:46: warning: possibly unbound variable `getuid' ice-9/ftw.scm:307:55: warning: possibly unbound variable `getgid' ice-9/ftw.scm:337:33: warning: possibly unbound variable `chdir' ice-9/ftw.scm:339:29: warning: possibly unbound variable `chdir' ice-9/ftw.scm:343:39: warning: possibly unbound variable `chdir' ice-9/ftw.scm:353:52: warning: possibly unbound variable `getuid' ice-9/ftw.scm:353:61: warning: possibly unbound variable `getgid' ice-9/ftw.scm:384:8: warning: possibly unbound variable `chdir' wrote `ice-9/ftw.go' GUILEC ice-9/gap-buffer.go wrote `ice-9/gap-buffer.go' GUILEC ice-9/weak-vector.go wrote `ice-9/weak-vector.go' GUILEC ice-9/list.go wrote `ice-9/list.go' GUILEC ice-9/serialize.go wrote `ice-9/serialize.go' GUILEC ice-9/local-eval.go wrote `ice-9/local-eval.go' GUILEC ice-9/popen.go Backtrace: In ice-9/eval.scm: 387: 19 [eval # #] In srfi/srfi-1.scm: 619: 18 [for-each #<procedure 8997de0 at ice-9/eval.scm:416:20 (a)> #] In ice-9/eval.scm: 387: 17 [eval # #] 481: 16 [lp (#<fluid 23>) ("")] In system/base/target.scm: 59: 15 [with-target "i686-pc-linux-gnu" ...] In system/base/compile.scm: 150: 14 [compile-file "ice-9/popen.scm" #:output-file ...] 43: 13 [call-once #<procedure 8829e40 at system/base/compile.scm:56:5 ()>] In ice-9/boot-9.scm: 171: 12 [with-throw-handler #t ...] In system/base/compile.scm: 59: 11 [#<procedure 8829e20 at system/base/compile.scm:58:9 ()>] 153: 10 [#<procedure 8829e60 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 9 [read-and-compile #<input: ice-9/popen.scm 5> #:from ...] 232: 8 [lp (#<tree-il (let # # ...)>) #<directory (ice-9 popen) 8af3948> ...] 180: 7 [lp (#<procedure compile-tree-il (x e opts)>) (eval-when # #) ...] In ice-9/boot-9.scm: 2207: 6 [save-module-excursion #<procedure 8ad9348 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 5 [#<procedure 8ad9348 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 4 [expand-top-sequence ((eval-when # #)) () ((top)) ...] 976: 3 [scan ((eval-when # #)) () ((top)) ...] 270: 2 [scan ((load-extension # "scm_init_popen")) () ((top)) ...] In unknown file: ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 8829e00 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 8829e00 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-pointer: Symbol not found: scm_init_popen make[3]: *** [ice-9/popen.go] Error 1 GUILEC srfi/srfi-2.go wrote `srfi/srfi-2.go' GUILEC srfi/srfi-4.go wrote `srfi/srfi-4.go' GUILEC srfi/srfi-4/gnu.go wrote `srfi/srfi-4/gnu.go' GUILEC srfi/srfi-6.go wrote `srfi/srfi-6.go' GUILEC srfi/srfi-8.go wrote `srfi/srfi-8.go' GUILEC srfi/srfi-9.go wrote `srfi/srfi-9.go' GUILEC srfi/srfi-9/gnu.go wrote `srfi/srfi-9/gnu.go' GUILEC srfi/srfi-10.go wrote `srfi/srfi-10.go' GUILEC srfi/srfi-11.go wrote `srfi/srfi-11.go' GUILEC srfi/srfi-13.go wrote `srfi/srfi-13.go' GUILEC srfi/srfi-14.go wrote `srfi/srfi-14.go' GUILEC srfi/srfi-16.go wrote `srfi/srfi-16.go' GUILEC srfi/srfi-17.go wrote `srfi/srfi-17.go' GUILEC srfi/srfi-18.go wrote `srfi/srfi-18.go' GUILEC srfi/srfi-19.go wrote `srfi/srfi-19.go' GUILEC srfi/srfi-26.go wrote `srfi/srfi-26.go' GUILEC srfi/srfi-27.go wrote `srfi/srfi-27.go' GUILEC srfi/srfi-31.go wrote `srfi/srfi-31.go' GUILEC srfi/srfi-34.go wrote `srfi/srfi-34.go' GUILEC srfi/srfi-35.go wrote `srfi/srfi-35.go' GUILEC srfi/srfi-37.go wrote `srfi/srfi-37.go' GUILEC srfi/srfi-38.go wrote `srfi/srfi-38.go' GUILEC srfi/srfi-42.go wrote `srfi/srfi-42.go' GUILEC srfi/srfi-39.go wrote `srfi/srfi-39.go' GUILEC srfi/srfi-45.go wrote `srfi/srfi-45.go' GUILEC srfi/srfi-60.go wrote `srfi/srfi-60.go' GUILEC srfi/srfi-67.go wrote `srfi/srfi-67.go' GUILEC srfi/srfi-69.go wrote `srfi/srfi-69.go' GUILEC srfi/srfi-88.go wrote `srfi/srfi-88.go' GUILEC srfi/srfi-98.go wrote `srfi/srfi-98.go' srfi/srfi-98.scm:44:34: warning: possibly unbound variable `environ' GUILEC rnrs/base.go wrote `rnrs/base.go' GUILEC rnrs/conditions.go wrote `rnrs/conditions.go' GUILEC rnrs/control.go wrote `rnrs/control.go' GUILEC rnrs/enums.go wrote `rnrs/enums.go' GUILEC rnrs/eval.go wrote `rnrs/eval.go' GUILEC rnrs/exceptions.go wrote `rnrs/exceptions.go' GUILEC rnrs/files.go wrote `rnrs/files.go' GUILEC rnrs/hashtables.go wrote `rnrs/hashtables.go' GUILEC rnrs/lists.go wrote `rnrs/lists.go' GUILEC rnrs/mutable-pairs.go wrote `rnrs/mutable-pairs.go' GUILEC rnrs/mutable-strings.go wrote `rnrs/mutable-strings.go' GUILEC rnrs/programs.go wrote `rnrs/programs.go' GUILEC rnrs/r5rs.go wrote `rnrs/r5rs.go' GUILEC rnrs/sorting.go wrote `rnrs/sorting.go' GUILEC rnrs/syntax-case.go wrote `rnrs/syntax-case.go' GUILEC rnrs/unicode.go wrote `rnrs/unicode.go' GUILEC rnrs/arithmetic/bitwise.go wrote `rnrs/arithmetic/bitwise.go' GUILEC rnrs/arithmetic/fixnums.go wrote `rnrs/arithmetic/fixnums.go' GUILEC rnrs/arithmetic/flonums.go wrote `rnrs/arithmetic/flonums.go' GUILEC rnrs/bytevectors.go wrote `rnrs/bytevectors.go' GUILEC rnrs/io/simple.go wrote `rnrs/io/simple.go' GUILEC rnrs/io/ports.go wrote `rnrs/io/ports.go' rnrs/io/ports.scm:311:0: warning: possibly unbound variable `open' rnrs/io/ports.scm:320:0: warning: possibly unbound variable `O_CREAT' rnrs/io/ports.scm:320:0: warning: possibly unbound variable `O_TRUNC' rnrs/io/ports.scm:320:0: warning: possibly unbound variable `O_EXCL' rnrs/io/ports.scm:332:0: warning: possibly unbound variable `O_RDONLY' rnrs/io/ports.scm:340:0: warning: possibly unbound variable `O_RDWR' rnrs/io/ports.scm:359:0: warning: possibly unbound variable `O_WRONLY' GUILEC rnrs/records/inspection.go wrote `rnrs/records/inspection.go' GUILEC rnrs/records/procedural.go wrote `rnrs/records/procedural.go' GUILEC rnrs/records/syntactic.go wrote `rnrs/records/syntactic.go' GUILEC rnrs.go wrote `rnrs.go' GUILEC oop/goops.go wrote `oop/goops.go' GUILEC oop/goops/active-slot.go wrote `oop/goops/active-slot.go' GUILEC oop/goops/compile.go wrote `oop/goops/compile.go' GUILEC oop/goops/composite-slot.go wrote `oop/goops/composite-slot.go' GUILEC oop/goops/describe.go wrote `oop/goops/describe.go' GUILEC oop/goops/dispatch.go wrote `oop/goops/dispatch.go' GUILEC oop/goops/internal.go wrote `oop/goops/internal.go' GUILEC oop/goops/save.go wrote `oop/goops/save.go' GUILEC oop/goops/stklos.go wrote `oop/goops/stklos.go' GUILEC oop/goops/util.go wrote `oop/goops/util.go' GUILEC oop/goops/accessors.go wrote `oop/goops/accessors.go' GUILEC oop/goops/simple.go wrote `oop/goops/simple.go' GUILEC system/vm/inspect.go wrote `system/vm/inspect.go' GUILEC system/vm/coverage.go wrote `system/vm/coverage.go' GUILEC system/vm/frame.go wrote `system/vm/frame.go' GUILEC system/vm/instruction.go wrote `system/vm/instruction.go' GUILEC system/vm/objcode.go wrote `system/vm/objcode.go' GUILEC system/vm/program.go wrote `system/vm/program.go' GUILEC system/vm/trace.go wrote `system/vm/trace.go' GUILEC system/vm/traps.go wrote `system/vm/traps.go' GUILEC system/vm/trap-state.go wrote `system/vm/trap-state.go' GUILEC system/vm/vm.go wrote `system/vm/vm.go' GUILEC system/foreign.go wrote `system/foreign.go' GUILEC system/xref.go wrote `system/xref.go' GUILEC system/repl/debug.go wrote `system/repl/debug.go' GUILEC system/repl/error-handling.go wrote `system/repl/error-handling.go' GUILEC system/repl/common.go wrote `system/repl/common.go' GUILEC system/repl/command.go wrote `system/repl/command.go' GUILEC system/repl/repl.go wrote `system/repl/repl.go' GUILEC system/repl/server.go system/repl/server.scm:57:41: warning: possibly unbound variable `inet-aton' system/repl/server.scm:78:20: warning: possibly unbound variable `SIGINT' system/repl/server.scm:83:18: warning: possibly unbound variable `SIGINT' system/repl/server.scm:85:18: warning: possibly unbound variable `SIGINT' system/repl/server.scm:106:2: warning: possibly unbound variable `SIGPIPE' wrote `system/repl/server.go' GUILEC scripts/autofrisk.go wrote `scripts/autofrisk.go' ;;; Failed to autoload open-input-pipe in (ice-9 popen): ;;; ERROR: In procedure dynamic-pointer: Symbol not found: scm_init_popen scripts/autofrisk.scm:185:2: warning: non-literal format string GUILEC scripts/compile.go wrote `scripts/compile.go' GUILEC scripts/disassemble.go wrote `scripts/disassemble.go' GUILEC scripts/display-commentary.go wrote `scripts/display-commentary.go' GUILEC scripts/doc-snarf.go wrote `scripts/doc-snarf.go' GUILEC scripts/frisk.go wrote `scripts/frisk.go' GUILEC scripts/generate-autoload.go wrote `scripts/generate-autoload.go' GUILEC scripts/help.go wrote `scripts/help.go' GUILEC scripts/lint.go wrote `scripts/lint.go' GUILEC scripts/list.go wrote `scripts/list.go' GUILEC scripts/punify.go wrote `scripts/punify.go' GUILEC scripts/read-scheme-source.go wrote `scripts/read-scheme-source.go' GUILEC scripts/read-text-outline.go wrote `scripts/read-text-outline.go' GUILEC scripts/use2dot.go wrote `scripts/use2dot.go' GUILEC scripts/snarf-check-and-output-texi.go wrote `scripts/snarf-check-and-output-texi.go' GUILEC scripts/summarize-guile-TODO.go wrote `scripts/summarize-guile-TODO.go' GUILEC scripts/scan-api.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 9264940 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: scripts/scan-api.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g166}#) 9307870>] 180: 16 [lp # # # ...] In ice-9/boot-9.scm: 2207: 15 [save-module-excursion #<procedure 9410948 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 9410948 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # :use-module # ...)) () ((top)) ...] 976: 12 [scan ((define-module (scripts scan-api) :use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2757: 9 [define-module* (scripts scan-api) #:filename ...] 2732: 8 [resolve-imports (((ice-9 popen)) ((ice-9 rdelim)) ((ice-9 regex)))] 2670: 7 [resolve-interface (ice-9 popen) #:select ...] 2595: 6 [#<procedure 9194140 at ice-9/boot-9.scm:2583:4 (name #:optional autoload version #:key ensure)> # ...] 2868: 5 [try-module-autoload (ice-9 popen) #f] 2207: 4 [save-module-excursion #<procedure 9430210 at ice-9/boot-9.scm:2869:17 ()>] 2888: 3 [#<procedure 9430210 at ice-9/boot-9.scm:2869:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9/popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 92648e0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 92648e0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-pointer: Symbol not found: scm_init_popen make[3]: *** [scripts/scan-api.go] Error 1 GUILEC scripts/api-diff.go wrote `scripts/api-diff.go' GUILEC scripts/read-rfc822.go wrote `scripts/read-rfc822.go' GUILEC scripts/snarf-guile-m4-docs.go wrote `scripts/snarf-guile-m4-docs.go' GUILEC language/ecmascript/tokenize.go wrote `language/ecmascript/tokenize.go' GUILEC language/ecmascript/parse.go %% Shift/Reduce conflict (shift 36, reduce 82) on 'lbrace' in state 437 %% Shift/Reduce conflict (shift 35, reduce 82) on 'lparen' in state 437 %% Shift/Reduce conflict (shift 34, reduce 82) on 'lbracket' in state 437 %% Shift/Reduce conflict (shift 33, reduce 82) on 'dot' in state 437 %% Shift/Reduce conflict (shift 32, reduce 82) on 'semicolon' in state 437 %% Shift/Reduce conflict (shift 31, reduce 82) on '+' in state 437 %% Shift/Reduce conflict (shift 30, reduce 82) on '-' in state 437 %% Shift/Reduce conflict (shift 29, reduce 82) on '++' in state 437 %% Shift/Reduce conflict (shift 28, reduce 82) on '--' in state 437 %% Shift/Reduce conflict (shift 27, reduce 82) on '!' in state 437 %% Shift/Reduce conflict (shift 26, reduce 82) on '~' in state 437 %% Shift/Reduce conflict (shift 25, reduce 82) on 'break' in state 437 %% Shift/Reduce conflict (shift 24, reduce 82) on 'new' in state 437 %% Shift/Reduce conflict (shift 23, reduce 82) on 'var' in state 437 %% Shift/Reduce conflict (shift 22, reduce 82) on 'return' in state 437 %% Shift/Reduce conflict (shift 21, reduce 82) on 'void' in state 437 %% Shift/Reduce conflict (shift 20, reduce 82) on 'for' in state 437 %% Shift/Reduce conflict (shift 19, reduce 82) on 'switch' in state 437 %% Shift/Reduce conflict (shift 18, reduce 82) on 'while' in state 437 %% Shift/Reduce conflict (shift 17, reduce 82) on 'continue' in state 437 %% Shift/Reduce conflict (shift 82, reduce 82) on 'function' in state 437 %% Shift/Reduce conflict (shift 15, reduce 82) on 'this' in state 437 %% Shift/Reduce conflict (shift 14, reduce 82) on 'with' in state 437 %% Shift/Reduce conflict (shift 13, reduce 82) on 'if' in state 437 %% Shift/Reduce conflict (shift 12, reduce 82) on 'throw' in state 437 %% Shift/Reduce conflict (shift 11, reduce 82) on 'delete' in state 437 %% Shift/Reduce conflict (shift 10, reduce 82) on 'try' in state 437 %% Shift/Reduce conflict (shift 9, reduce 82) on 'do' in state 437 %% Shift/Reduce conflict (shift 8, reduce 82) on 'typeof' in state 437 %% Shift/Reduce conflict (shift 7, reduce 82) on 'null' in state 437 %% Shift/Reduce conflict (shift 6, reduce 82) on 'true' in state 437 %% Shift/Reduce conflict (shift 5, reduce 82) on 'false' in state 437 %% Shift/Reduce conflict (shift 4, reduce 82) on 'Identifier' in state 437 %% Shift/Reduce conflict (shift 3, reduce 82) on 'StringLiteral' in state 437 %% Shift/Reduce conflict (shift 2, reduce 82) on 'NumericLiteral' in state 437 %% Shift/Reduce conflict (shift 1, reduce 82) on 'RegexpLiteral' in state 437 %% Shift/Reduce conflict (shift 36, reduce 81) on 'lbrace' in state 424 %% Shift/Reduce conflict (shift 35, reduce 81) on 'lparen' in state 424 %% Shift/Reduce conflict (shift 34, reduce 81) on 'lbracket' in state 424 %% Shift/Reduce conflict (shift 33, reduce 81) on 'dot' in state 424 %% Shift/Reduce conflict (shift 32, reduce 81) on 'semicolon' in state 424 %% Shift/Reduce conflict (shift 31, reduce 81) on '+' in state 424 %% Shift/Reduce conflict (shift 30, reduce 81) on '-' in state 424 %% Shift/Reduce conflict (shift 29, reduce 81) on '++' in state 424 %% Shift/Reduce conflict (shift 28, reduce 81) on '--' in state 424 %% Shift/Reduce conflict (shift 27, reduce 81) on '!' in state 424 %% Shift/Reduce conflict (shift 26, reduce 81) on '~' in state 424 %% Shift/Reduce conflict (shift 25, reduce 81) on 'break' in state 424 %% Shift/Reduce conflict (shift 24, reduce 81) on 'new' in state 424 %% Shift/Reduce conflict (shift 23, reduce 81) on 'var' in state 424 %% Shift/Reduce conflict (shift 22, reduce 81) on 'return' in state 424 %% Shift/Reduce conflict (shift 21, reduce 81) on 'void' in state 424 %% Shift/Reduce conflict (shift 20, reduce 81) on 'for' in state 424 %% Shift/Reduce conflict (shift 19, reduce 81) on 'switch' in state 424 %% Shift/Reduce conflict (shift 18, reduce 81) on 'while' in state 424 %% Shift/Reduce conflict (shift 17, reduce 81) on 'continue' in state 424 %% Shift/Reduce conflict (shift 82, reduce 81) on 'function' in state 424 %% Shift/Reduce conflict (shift 15, reduce 81) on 'this' in state 424 %% Shift/Reduce conflict (shift 14, reduce 81) on 'with' in state 424 %% Shift/Reduce conflict (shift 13, reduce 81) on 'if' in state 424 %% Shift/Reduce conflict (shift 12, reduce 81) on 'throw' in state 424 %% Shift/Reduce conflict (shift 11, reduce 81) on 'delete' in state 424 %% Shift/Reduce conflict (shift 10, reduce 81) on 'try' in state 424 %% Shift/Reduce conflict (shift 9, reduce 81) on 'do' in state 424 %% Shift/Reduce conflict (shift 8, reduce 81) on 'typeof' in state 424 %% Shift/Reduce conflict (shift 7, reduce 81) on 'null' in state 424 %% Shift/Reduce conflict (shift 6, reduce 81) on 'true' in state 424 %% Shift/Reduce conflict (shift 5, reduce 81) on 'false' in state 424 %% Shift/Reduce conflict (shift 4, reduce 81) on 'Identifier' in state 424 %% Shift/Reduce conflict (shift 3, reduce 81) on 'StringLiteral' in state 424 %% Shift/Reduce conflict (shift 2, reduce 81) on 'NumericLiteral' in state 424 %% Shift/Reduce conflict (shift 1, reduce 81) on 'RegexpLiteral' in state 424 %% Shift/Reduce conflict (shift 36, reduce 84) on 'lbrace' in state 423 %% Shift/Reduce conflict (shift 35, reduce 84) on 'lparen' in state 423 %% Shift/Reduce conflict (shift 34, reduce 84) on 'lbracket' in state 423 %% Shift/Reduce conflict (shift 33, reduce 84) on 'dot' in state 423 %% Shift/Reduce conflict (shift 32, reduce 84) on 'semicolon' in state 423 %% Shift/Reduce conflict (shift 31, reduce 84) on '+' in state 423 %% Shift/Reduce conflict (shift 30, reduce 84) on '-' in state 423 %% Shift/Reduce conflict (shift 29, reduce 84) on '++' in state 423 %% Shift/Reduce conflict (shift 28, reduce 84) on '--' in state 423 %% Shift/Reduce conflict (shift 27, reduce 84) on '!' in state 423 %% Shift/Reduce conflict (shift 26, reduce 84) on '~' in state 423 %% Shift/Reduce conflict (shift 25, reduce 84) on 'break' in state 423 %% Shift/Reduce conflict (shift 24, reduce 84) on 'new' in state 423 %% Shift/Reduce conflict (shift 23, reduce 84) on 'var' in state 423 %% Shift/Reduce conflict (shift 22, reduce 84) on 'return' in state 423 %% Shift/Reduce conflict (shift 21, reduce 84) on 'void' in state 423 %% Shift/Reduce conflict (shift 20, reduce 84) on 'for' in state 423 %% Shift/Reduce conflict (shift 19, reduce 84) on 'switch' in state 423 %% Shift/Reduce conflict (shift 18, reduce 84) on 'while' in state 423 %% Shift/Reduce conflict (shift 17, reduce 84) on 'continue' in state 423 %% Shift/Reduce conflict (shift 82, reduce 84) on 'function' in state 423 %% Shift/Reduce conflict (shift 15, reduce 84) on 'this' in state 423 %% Shift/Reduce conflict (shift 14, reduce 84) on 'with' in state 423 %% Shift/Reduce conflict (shift 13, reduce 84) on 'if' in state 423 %% Shift/Reduce conflict (shift 12, reduce 84) on 'throw' in state 423 %% Shift/Reduce conflict (shift 11, reduce 84) on 'delete' in state 423 %% Shift/Reduce conflict (shift 10, reduce 84) on 'try' in state 423 %% Shift/Reduce conflict (shift 9, reduce 84) on 'do' in state 423 %% Shift/Reduce conflict (shift 8, reduce 84) on 'typeof' in state 423 %% Shift/Reduce conflict (shift 7, reduce 84) on 'null' in state 423 %% Shift/Reduce conflict (shift 6, reduce 84) on 'true' in state 423 %% Shift/Reduce conflict (shift 5, reduce 84) on 'false' in state 423 %% Shift/Reduce conflict (shift 4, reduce 84) on 'Identifier' in state 423 %% Shift/Reduce conflict (shift 3, reduce 84) on 'StringLiteral' in state 423 %% Shift/Reduce conflict (shift 2, reduce 84) on 'NumericLiteral' in state 423 %% Shift/Reduce conflict (shift 1, reduce 84) on 'RegexpLiteral' in state 423 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '--' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '++' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '-' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '+' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'semicolon' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'dot' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lbracket' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lparen' in state 422 %% Shift/Reduce conflict (shift 36, reduce 83) on 'lbrace' in state 400 %% Shift/Reduce conflict (shift 35, reduce 83) on 'lparen' in state 400 %% Shift/Reduce conflict (shift 34, reduce 83) on 'lbracket' in state 400 %% Shift/Reduce conflict (shift 33, reduce 83) on 'dot' in state 400 %% Shift/Reduce conflict (shift 32, reduce 83) on 'semicolon' in state 400 %% Shift/Reduce conflict (shift 31, reduce 83) on '+' in state 400 %% Shift/Reduce conflict (shift 30, reduce 83) on '-' in state 400 %% Shift/Reduce conflict (shift 29, reduce 83) on '++' in state 400 %% Shift/Reduce conflict (shift 28, reduce 83) on '--' in state 400 %% Shift/Reduce conflict (shift 27, reduce 83) on '!' in state 400 %% Shift/Reduce conflict (shift 26, reduce 83) on '~' in state 400 %% Shift/Reduce conflict (shift 25, reduce 83) on 'break' in state 400 %% Shift/Reduce conflict (shift 24, reduce 83) on 'new' in state 400 %% Shift/Reduce conflict (shift 23, reduce 83) on 'var' in state 400 %% Shift/Reduce conflict (shift 22, reduce 83) on 'return' in state 400 %% Shift/Reduce conflict (shift 21, reduce 83) on 'void' in state 400 %% Shift/Reduce conflict (shift 20, reduce 83) on 'for' in state 400 %% Shift/Reduce conflict (shift 19, reduce 83) on 'switch' in state 400 %% Shift/Reduce conflict (shift 18, reduce 83) on 'while' in state 400 %% Shift/Reduce conflict (shift 17, reduce 83) on 'continue' in state 400 %% Shift/Reduce conflict (shift 82, reduce 83) on 'function' in state 400 %% Shift/Reduce conflict (shift 15, reduce 83) on 'this' in state 400 %% Shift/Reduce conflict (shift 14, reduce 83) on 'with' in state 400 %% Shift/Reduce conflict (shift 13, reduce 83) on 'if' in state 400 %% Shift/Reduce conflict (shift 12, reduce 83) on 'throw' in state 400 %% Shift/Reduce conflict (shift 11, reduce 83) on 'delete' in state 400 %% Shift/Reduce conflict (shift 10, reduce 83) on 'try' in state 400 %% Shift/Reduce conflict (shift 9, reduce 83) on 'do' in state 400 %% Shift/Reduce conflict (shift 8, reduce 83) on 'typeof' in state 400 %% Shift/Reduce conflict (shift 7, reduce 83) on 'null' in state 400 %% Shift/Reduce conflict (shift 6, reduce 83) on 'true' in state 400 %% Shift/Reduce conflict (shift 5, reduce 83) on 'false' in state 400 %% Shift/Reduce conflict (shift 4, reduce 83) on 'Identifier' in state 400 %% Shift/Reduce conflict (shift 3, reduce 83) on 'StringLiteral' in state 400 %% Shift/Reduce conflict (shift 2, reduce 83) on 'NumericLiteral' in state 400 %% Shift/Reduce conflict (shift 1, reduce 83) on 'RegexpLiteral' in state 400 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '--' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '++' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '-' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '+' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'semicolon' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'dot' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lbracket' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lparen' in state 397 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 393 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 393 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 393 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 393 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 393 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 393 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 393 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 393 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 393 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 393 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 393 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 393 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 393 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 393 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 393 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 393 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 393 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 393 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 393 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 393 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 393 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 393 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 393 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 393 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 393 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 393 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 393 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 393 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 393 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 393 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 393 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 393 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 393 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 393 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 393 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 393 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 369 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 369 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 369 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 369 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 369 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 369 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 369 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 369 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 369 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 369 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 369 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 369 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 369 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 369 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 369 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 369 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 369 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 369 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 369 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 369 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 369 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 369 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 369 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 369 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 369 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 369 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 369 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 369 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 369 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 369 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 369 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 369 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 369 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 369 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 369 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 369 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 363 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 363 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 363 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 363 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 363 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 363 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 363 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 363 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 363 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 363 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 363 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 363 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 363 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 363 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 363 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 363 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 363 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 363 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 363 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 363 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 363 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 363 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 363 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 363 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 363 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 363 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 363 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 363 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 363 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 363 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 363 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 363 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 363 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 363 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 363 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 363 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 338 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 338 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 338 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 338 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 338 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 338 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 338 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 338 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 338 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 338 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 338 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 338 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 338 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 338 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 326 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 326 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 326 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 326 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 326 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 326 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 326 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 326 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 326 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 326 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 326 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 326 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 326 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 326 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 326 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 326 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 326 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 326 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 326 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 326 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 326 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 326 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 326 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 326 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 326 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 326 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 326 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 326 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 326 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 326 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 326 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 326 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 326 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 326 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 326 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 326 %% Shift/Reduce conflict (shift 36, reduce 16) on 'lbrace' in state 324 %% Shift/Reduce conflict (shift 35, reduce 16) on 'lparen' in state 324 %% Shift/Reduce conflict (shift 34, reduce 16) on 'lbracket' in state 324 %% Shift/Reduce conflict (shift 33, reduce 16) on 'dot' in state 324 %% Shift/Reduce conflict (shift 32, reduce 16) on 'semicolon' in state 324 %% Shift/Reduce conflict (shift 31, reduce 16) on '+' in state 324 %% Shift/Reduce conflict (shift 30, reduce 16) on '-' in state 324 %% Shift/Reduce conflict (shift 29, reduce 16) on '++' in state 324 %% Shift/Reduce conflict (shift 28, reduce 16) on '--' in state 324 %% Shift/Reduce conflict (shift 27, reduce 16) on '!' in state 324 %% Shift/Reduce conflict (shift 26, reduce 16) on '~' in state 324 %% Shift/Reduce conflict (shift 25, reduce 16) on 'break' in state 324 %% Shift/Reduce conflict (shift 24, reduce 16) on 'new' in state 324 %% Shift/Reduce conflict (shift 23, reduce 16) on 'var' in state 324 %% Shift/Reduce conflict (shift 22, reduce 16) on 'return' in state 324 %% Shift/Reduce conflict (shift 21, reduce 16) on 'void' in state 324 %% Shift/Reduce conflict (shift 20, reduce 16) on 'for' in state 324 %% Shift/Reduce conflict (shift 19, reduce 16) on 'switch' in state 324 %% Shift/Reduce conflict (shift 18, reduce 16) on 'while' in state 324 %% Shift/Reduce conflict (shift 17, reduce 16) on 'continue' in state 324 %% Shift/Reduce conflict (shift 16, reduce 16) on 'function' in state 324 %% Shift/Reduce conflict (shift 15, reduce 16) on 'this' in state 324 %% Shift/Reduce conflict (shift 14, reduce 16) on 'with' in state 324 %% Shift/Reduce conflict (shift 13, reduce 16) on 'if' in state 324 %% Shift/Reduce conflict (shift 12, reduce 16) on 'throw' in state 324 %% Shift/Reduce conflict (shift 11, reduce 16) on 'delete' in state 324 %% Shift/Reduce conflict (shift 10, reduce 16) on 'try' in state 324 %% Shift/Reduce conflict (shift 9, reduce 16) on 'do' in state 324 %% Shift/Reduce conflict (shift 8, reduce 16) on 'typeof' in state 324 %% Shift/Reduce conflict (shift 7, reduce 16) on 'null' in state 324 %% Shift/Reduce conflict (shift 6, reduce 16) on 'true' in state 324 %% Shift/Reduce conflict (shift 5, reduce 16) on 'false' in state 324 %% Shift/Reduce conflict (shift 4, reduce 16) on 'Identifier' in state 324 %% Shift/Reduce conflict (shift 3, reduce 16) on 'StringLiteral' in state 324 %% Shift/Reduce conflict (shift 2, reduce 16) on 'NumericLiteral' in state 324 %% Shift/Reduce conflict (shift 1, reduce 16) on 'RegexpLiteral' in state 324 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 321 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 321 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 321 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 321 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 321 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 321 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 321 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 321 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 321 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 321 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 321 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 321 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 321 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 321 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 321 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 321 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 321 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 321 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 321 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 321 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 321 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 321 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 321 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 321 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 321 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 321 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 321 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 321 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 321 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 321 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 321 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 321 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 321 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 321 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 321 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 321 %% Shift/Reduce conflict (shift 367, reduce 49) on 'else' in state 319 %% Shift/Reduce conflict (shift 216, reduce 42) on '=' in state 279 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 274 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 274 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 274 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 274 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 274 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 274 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 274 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 274 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 274 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 274 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 274 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 274 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 274 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 274 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 274 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 274 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 274 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 274 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 274 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 274 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 274 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 274 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 274 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 274 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 274 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 274 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 274 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 274 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 274 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 274 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 274 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 274 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 274 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 274 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 274 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 274 %% Shift/Reduce conflict (shift 144, reduce 177) on 'in' in state 242 %% Shift/Reduce conflict (shift 144, reduce 178) on 'in' in state 241 %% Shift/Reduce conflict (shift 144, reduce 179) on 'in' in state 240 %% Shift/Reduce conflict (shift 144, reduce 180) on 'in' in state 239 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 214 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 214 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 214 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 214 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 214 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 214 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 214 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 214 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 214 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 214 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 214 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 214 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 214 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 214 %% Shift/Reduce conflict (shift 301, reduce 139) on 'in' in state 214 %% Shift/Reduce conflict (shift 188, reduce 87) on 'finally' in state 190 %% Shift/Reduce conflict (shift 80, reduce 119) on 'colon' in state 125 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 107 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 107 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 107 %% Shift/Reduce conflict (shift 216, reduce 40) on '=' in state 103 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 85 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 85 %% Shift/Reduce conflict (shift 36, reduce 2) on 'lbrace' in state 75 %% Shift/Reduce conflict (shift 35, reduce 2) on 'lparen' in state 75 %% Shift/Reduce conflict (shift 34, reduce 2) on 'lbracket' in state 75 %% Shift/Reduce conflict (shift 33, reduce 2) on 'dot' in state 75 %% Shift/Reduce conflict (shift 32, reduce 2) on 'semicolon' in state 75 %% Shift/Reduce conflict (shift 31, reduce 2) on '+' in state 75 %% Shift/Reduce conflict (shift 30, reduce 2) on '-' in state 75 %% Shift/Reduce conflict (shift 29, reduce 2) on '++' in state 75 %% Shift/Reduce conflict (shift 28, reduce 2) on '--' in state 75 %% Shift/Reduce conflict (shift 27, reduce 2) on '!' in state 75 %% Shift/Reduce conflict (shift 26, reduce 2) on '~' in state 75 %% Shift/Reduce conflict (shift 25, reduce 2) on 'break' in state 75 %% Shift/Reduce conflict (shift 24, reduce 2) on 'new' in state 75 %% Shift/Reduce conflict (shift 23, reduce 2) on 'var' in state 75 %% Shift/Reduce conflict (shift 22, reduce 2) on 'return' in state 75 %% Shift/Reduce conflict (shift 21, reduce 2) on 'void' in state 75 %% Shift/Reduce conflict (shift 20, reduce 2) on 'for' in state 75 %% Shift/Reduce conflict (shift 19, reduce 2) on 'switch' in state 75 %% Shift/Reduce conflict (shift 18, reduce 2) on 'while' in state 75 %% Shift/Reduce conflict (shift 17, reduce 2) on 'continue' in state 75 %% Shift/Reduce conflict (shift 16, reduce 2) on 'function' in state 75 %% Shift/Reduce conflict (shift 15, reduce 2) on 'this' in state 75 %% Shift/Reduce conflict (shift 14, reduce 2) on 'with' in state 75 %% Shift/Reduce conflict (shift 13, reduce 2) on 'if' in state 75 %% Shift/Reduce conflict (shift 12, reduce 2) on 'throw' in state 75 %% Shift/Reduce conflict (shift 11, reduce 2) on 'delete' in state 75 %% Shift/Reduce conflict (shift 10, reduce 2) on 'try' in state 75 %% Shift/Reduce conflict (shift 9, reduce 2) on 'do' in state 75 %% Shift/Reduce conflict (shift 8, reduce 2) on 'typeof' in state 75 %% Shift/Reduce conflict (shift 7, reduce 2) on 'null' in state 75 %% Shift/Reduce conflict (shift 6, reduce 2) on 'true' in state 75 %% Shift/Reduce conflict (shift 5, reduce 2) on 'false' in state 75 %% Shift/Reduce conflict (shift 4, reduce 2) on 'Identifier' in state 75 %% Shift/Reduce conflict (shift 3, reduce 2) on 'StringLiteral' in state 75 %% Shift/Reduce conflict (shift 2, reduce 2) on 'NumericLiteral' in state 75 %% Shift/Reduce conflict (shift 1, reduce 2) on 'RegexpLiteral' in state 75 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 56 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 56 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 56 %% Shift/Reduce conflict (shift 174, reduce 138) on 'lparen' in state 54 %% Shift/Reduce conflict (shift 173, reduce 138) on 'lbracket' in state 54 %% Shift/Reduce conflict (shift 172, reduce 138) on 'dot' in state 54 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 53 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 53 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 53 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 53 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 53 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 53 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 53 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 53 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 53 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 53 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 53 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 53 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 53 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 53 %% Shift/Reduce conflict (shift 153, reduce 159) on '+' in state 49 %% Shift/Reduce conflict (shift 152, reduce 159) on '-' in state 49 %% Shift/Reduce conflict (shift 144, reduce 176) on 'in' in state 47 wrote `language/ecmascript/parse.go' GUILEC language/ecmascript/impl.go wrote `language/ecmascript/impl.go' GUILEC language/ecmascript/base.go wrote `language/ecmascript/base.go' language/ecmascript/base.scm:227:22: warning: possibly unbound variable `Boolean' language/ecmascript/base.scm:228:21: warning: possibly unbound variable `String' language/ecmascript/base.scm:229:21: warning: possibly unbound variable `Number' GUILEC language/ecmascript/function.go language/ecmascript/function.scm:40:9: warning: possibly unbound variable `<js-array-object>' language/ecmascript/function.scm:44:43: warning: possibly unbound variable `js-array-vector' wrote `language/ecmascript/function.go' GUILEC language/ecmascript/array.go wrote `language/ecmascript/array.go' GUILEC language/ecmascript/compile-tree-il.go wrote `language/ecmascript/compile-tree-il.go' GUILEC language/ecmascript/spec.go wrote `language/ecmascript/spec.go' GUILEC language/elisp/lexer.go wrote `language/elisp/lexer.go' GUILEC language/elisp/parser.go wrote `language/elisp/parser.go' GUILEC language/elisp/bindings.go wrote `language/elisp/bindings.go' GUILEC language/elisp/compile-tree-il.go wrote `language/elisp/compile-tree-il.go' GUILEC language/elisp/runtime.go wrote `language/elisp/runtime.go' GUILEC language/elisp/runtime/function-slot.go WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `if' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let*' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `while' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `defmacro' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `quote' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `lambda' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `when' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `unless' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `cond' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `and' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `or' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `catch' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `max' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `min' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `abs' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1+}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1-}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `+' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `-' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `*' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `car' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cdr' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `length' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cons' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `list' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `make-list' WARNING: (language elisp runtime function-slot): importewrote `language/elisp/runtime/function-slot.go' d module (language elisp runtime subrs) overrides core binding `append' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `reverse' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `copy-tree' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `apply' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `throw' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `not' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `eval' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `load' GUILEC language/elisp/runtime/value-slot.go wrote `language/elisp/runtime/value-slot.go' GUILEC language/elisp/runtime/macros.go wrote `language/elisp/runtime/macros.go' GUILEC language/elisp/runtime/subrs.go wrote `language/elisp/runtime/subrs.go' GUILEC language/elisp/spec.go wrote `language/elisp/spec.go' GUILEC language/brainfuck/parse.go wrote `language/brainfuck/parse.go' GUILEC language/brainfuck/compile-scheme.go wrote `language/brainfuck/compile-scheme.go' GUILEC language/brainfuck/compile-tree-il.go wrote `language/brainfuck/compile-tree-il.go' GUILEC language/brainfuck/spec.go wrote `language/brainfuck/spec.go' GUILEC statprof.go wrote `statprof.go' statprof.scm:404:2: warning: possibly unbound variable `SIGPROF' GUILEC sxml/apply-templates.go wrote `sxml/apply-templates.go' GUILEC sxml/fold.go wrote `sxml/fold.go' GUILEC sxml/match.go wrote `sxml/match.go' GUILEC sxml/simple.go wrote `sxml/simple.go' GUILEC sxml/ssax/input-parse.go wrote `sxml/ssax/input-parse.go' GUILEC sxml/ssax.go wrote `sxml/ssax.go' GUILEC sxml/transform.go wrote `sxml/transform.go' GUILEC sxml/xpath.go wrote `sxml/xpath.go' GUILEC texinfo.go wrote `texinfo.go' texinfo.scm:102:19: warning: possibly unbound variable `chdir' texinfo.scm:105:19: warning: possibly unbound variable `chdir' GUILEC texinfo/docbook.go wrote `texinfo/docbook.go' GUILEC texinfo/html.go wrote `texinfo/html.go' GUILEC texinfo/indexing.go wrote `texinfo/indexing.go' GUILEC texinfo/string-utils.go wrote `texinfo/string-utils.go' GUILEC texinfo/plain-text.go wrote `texinfo/plain-text.go' GUILEC texinfo/reflection.go wrote `texinfo/reflection.go' GUILEC texinfo/serialize.go wrote `texinfo/serialize.go' GUILEC web/client.go wrote `web/client.go' web/client.scm:90:10: warning: possibly unbound variable `close' GUILEC web/http.go wrote `web/http.go' GUILEC web/request.go wrote `web/request.go' GUILEC web/response.go wrote `web/response.go' GUILEC web/server.go web/server.scm:314:24: warning: possibly unbound variable `SIGINT' web/server.scm:319:22: warning: possibly unbound variable `SIGINT' web/server.scm:321:22: warning: possibly unbound variable `SIGINT' wrote `web/server.go' GUILEC web/server/http.go web/server/http.scm:67:2: warning: possibly unbound variable `SIGPIPE' wrote `web/server/http.go' GUILEC web/uri.go wrote `web/uri.go' make[3]: Target `install' not remade because of errors. make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/module' Making install in guile-readline make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/guile-readline' SNARF readline.x make install-am make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/guile-readline' CC readline.lo CCLD libguilereadline-v-18.la GUILEC ice-9/readline.go ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:63:0: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:97:49: warning: possibly unbound variable `%readline' ice-9/readline.scm:125:38: warning: possibly unbound variable `readline-options-interface' ice-9/readline.scm:156:4: warning: possibly unbound variable `%readline' ice-9/readline.scm:206:4: warning: possibly unbound variable `*readline-completion-function*' ice-9/readline.scm:210:2: warning: possibly unbound variable `*readline-completion-function*' ice-9/readline.scm:213:10: warning: possibly unbound variable `*readline-completion-function*' ice-9/readline.scm:216:10: warning: possibly unbound variable `*readline-completion-function*' wrote `ice-9/readline.go' make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/guile-readline' /bin/mkdir -p '/home/shookie/guiletest/lib/lib' /bin/bash ../libtool --mode=install /usr/bin/install -c libguilereadline-v-18.la '/home/shookie/guiletest/lib/lib' libtool: install: /usr/bin/install -c .libs/libguilereadline-v-18.lai /home/shookie/guiletest/lib/lib/libguilereadline-v-18.la libtool: install: /usr/bin/install -c .libs/libguilereadline-v-18.a /home/shookie/guiletest/lib/lib/libguilereadline-v-18.a libtool: install: chmod 644 /home/shookie/guiletest/lib/lib/libguilereadline-v-18.a libtool: install: ranlib /home/shookie/guiletest/lib/lib/libguilereadline-v-18.a libtool: finish: PATH="/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/sbin" ldconfig -n /home/shookie/guiletest/lib/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/shookie/guiletest/lib/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /bin/mkdir -p '/home/shookie/guiletest/lib/include/guile/2.0' /usr/bin/install -c -m 644 readline.h '/home/shookie/guiletest/lib/include/guile/2.0' /bin/mkdir -p '/home/shookie/guiletest/lib/share/guile/2.0/' /bin/mkdir -p '/home/shookie/guiletest/lib/share/guile/2.0//ice-9' /usr/bin/install -c -m 644 ice-9/readline.scm '/home/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/mkdir -p '/home/shookie/guiletest/lib/lib/guile/2.0/ccache/' /bin/mkdir -p '/home/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' /usr/bin/install -c -m 644 ice-9/readline.go '/home/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/guile-readline' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/guile-readline' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/guile-readline' Making install in examples make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/examples' make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/examples' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/examples' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/examples' Making install in emacs make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/emacs' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/emacs' Making install in test-suite make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/test-suite' Making install in standalone make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make install-am make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Nothing to be done for `install-exec-am'. make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/standalone' Making install in vm make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/test-suite' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/test-suite' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/test-suite' Making install in benchmark-suite make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/benchmark-suite' Making install in gc-benchmarks make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/gc-benchmarks' Making install in am make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/am' make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/am' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/am' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/am' Making install in doc make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/doc' Making install in ref make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/doc/ref' MAKEINFO guile.info make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/doc/ref' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/home/shookie/guiletest/lib/share/info' /usr/bin/install -c -m 644 ./guile.info ./guile.info-1 ./guile.info-2 ./guile.info-3 ./guile.info-4 ./guile.info-5 ./guile.info-6 ./guile.info-7 ./guile.info-8 ./guile.info-9 ./guile.info-10 '/home/shookie/guiletest/lib/share/info' install-info --info-dir='/home/shookie/guiletest/lib/share/info' '/home/shookie/guiletest/lib/share/info/guile.info' This is not dpkg install-info anymore, but GNU install-info See the man page for ginstall-info for command line arguments make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/doc/ref' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/doc/ref' Making install in r5rs make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/home/shookie/guiletest/lib/share/info' /usr/bin/install -c -m 644 ./r5rs.info '/home/shookie/guiletest/lib/share/info' install-info --info-dir='/home/shookie/guiletest/lib/share/info' '/home/shookie/guiletest/lib/share/info/r5rs.info' This is not dpkg install-info anymore, but GNU install-info See the man page for ginstall-info for command line arguments make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/doc' make[5]: Entering directory `/home/shookie/guiletest/lib/guile-2.0/doc' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/home/shookie/guiletest/lib/share/man/man1' /usr/bin/install -c -m 644 guile.1 '/home/shookie/guiletest/lib/share/man/man1' make[5]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/doc' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/doc' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0/doc' make[3]: Entering directory `/home/shookie/guiletest/lib/guile-2.0' make[4]: Entering directory `/home/shookie/guiletest/lib/guile-2.0' make[4]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/home/shookie/guiletest/lib/include/guile/2.0' /usr/bin/install -c -m 644 libguile.h '/home/shookie/guiletest/lib/include/guile/2.0' make[4]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0' make[3]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/home/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #3: build.log --] [-- Type: text/x-log; name="build.log", Size: 173506 bytes --] cd lib/guile-2.0 && ./configure --prefix=/c/Users/shookie/guiletest/lib --disable-shared --disable-fast-install --with-gnu-ld --disable-deprecated --enable-nls --with-libgmp-prefix=/c/Users/shookie/guiletest/lib LIBFFI_CFLAGS='-I/c/Users/shookie/guiletest/lib/lib/libffi-3.0.12/include' LIBFFI_LIBS='-lffi' BDW_GC_LIBS='-lgc' BDW_GC_CFLAGS='-I/c/Users/shookie/guiletest/lib' CPPFLAGS='-D HAVE_GC_SET_FINALIZER_NOTIFIER -D HAVE_GC_GET_FREE_SPACE_DIVISOR -D HAVE_GC_GET_HEAP_USAGE_SAFE -D HAVE_GC_SET_FINALIZE_ON_DEMAND' CFLAGS='-s' && make -k install checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking build system type... i686-pc-mingw32 checking host system type... i686-pc-mingw32 checking for as... as checking for dlltool... dlltool checking for objdump... objdump checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.exe checking for suffix of executables... .exe checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for Minix Amsterdam compiler... no checking for ar... ar checking for ranlib... ranlib checking whether gcc and cc understand -c and -o together... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... unknown checking for _LARGE_FILES value needed for large files... unknown configure: autobuild project... GNU Guile configure: autobuild revision... 2.0.7.194-dfd1d configure: autobuild hostname... bias configure: autobuild timestamp... 20130315T230939Z checking how to run the C preprocessor... gcc -E checking for a sed that does not truncate output... /bin/sed checking for gawk... (cached) gawk checking whether ln -s works... no, using cp -pR checking the archiver (ar) interface... ar checking for sys/socket.h... no checking for arpa/inet.h... no checking for features.h... no checking for sys/param.h... yes checking for dirent.h... yes checking for xlocale.h... no checking for unistd.h... (cached) yes checking for sys/stat.h... (cached) yes checking for netdb.h... no checking for netinet/in.h... no checking for iconv.h... yes checking for langinfo.h... no checking for math.h... yes checking for sys/mman.h... no checking for poll.h... no checking for sys/ioctl.h... no checking for sys/filio.h... no checking for sys/select.h... no checking for sys/time.h... yes checking for wchar.h... yes checking for stdint.h... (cached) yes checking for sys/file.h... yes checking for sys/times.h... no checking for sys/uio.h... no checking for wctype.h... yes checking ws2tcpip.h usability... yes checking ws2tcpip.h presence... yes checking for ws2tcpip.h... yes checking whether the preprocessor supports include_next... yes checking whether system header files limit the line length... no checking whether <sys/socket.h> is self-contained... no checking for struct sockaddr_storage... yes checking for sa_family_t... no checking for struct sockaddr_storage.ss_family... yes checking winsock2.h usability... yes checking winsock2.h presence... yes checking for winsock2.h... yes checking whether socket is declared without a macro... no checking whether connect is declared without a macro... no checking whether accept is declared without a macro... no checking whether bind is declared without a macro... no checking whether getpeername is declared without a macro... no checking whether getsockname is declared without a macro... no checking whether getsockopt is declared without a macro... no checking whether listen is declared without a macro... no checking whether recv is declared without a macro... no checking whether send is declared without a macro... no checking whether recvfrom is declared without a macro... no checking whether sendto is declared without a macro... no checking whether setsockopt is declared without a macro... no checking whether shutdown is declared without a macro... no checking whether accept4 is declared without a macro... no checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking whether <wchar.h> uses 'inline' correctly... yes checking for btowc... yes checking for canonicalize_file_name... no checking for getcwd... yes checking for readlink... no checking for realpath... no checking for _set_invalid_parameter_handler... no checking for duplocale... no checking for symlink... no checking for flock... no checking for fcntl... no checking for alarm... no checking for getlogin... no checking for lstat... no checking for mbsinit... yes checking for mbrtowc... yes checking for mprotect... yes checking for nl_langinfo... no checking for pipe... no checking for pipe2... no checking for isblank... yes checking for iswctype... yes checking for wcscoll... yes checking for link... no checking for setenv... no checking for snprintf... yes checking for tzset... yes checking for localtime_r... no checking for times... no checking for vasnprintf... no checking for wcrtomb... yes checking for iswcntrl... yes checking for nl_langinfo and CODESET... no checking for a traditional french locale... French_France.1252 checking whether // is distinct from /... yes checking whether realpath works... no checking for wchar_t... yes checking whether NULL can be used in arbitrary expressions... yes checking whether locale.h conforms to POSIX:2001... no checking whether struct lconv is properly defined... no checking whether setlocale is declared without a macro... yes checking whether duplocale is declared without a macro... no checking if environ is properly declared... yes checking for complete errno.h... no checking for EMULTIHOP value... no checking for ENOLINK value... no checking for EOVERFLOW value... no checking for working fcntl.h... no checking for pid_t... yes checking for mode_t... yes checking whether frexp() can be used without linking with libm... yes checking whether stat file-mode macros are broken... no checking for 64-bit off_t... no checking for nlink_t... no checking whether fchmodat is declared without a macro... no checking whether fstat is declared without a macro... yes checking whether fstatat is declared without a macro... no checking whether futimens is declared without a macro... no checking whether lchmod is declared without a macro... no checking whether lstat is declared without a macro... no checking whether mkdirat is declared without a macro... no checking whether mkfifo is declared without a macro... no checking whether mkfifoat is declared without a macro... no checking whether mknod is declared without a macro... no checking whether mknodat is declared without a macro... no checking whether stat is declared without a macro... yes checking whether utimensat is declared without a macro... no checking whether getaddrinfo is declared without a macro... no checking whether freeaddrinfo is declared without a macro... no checking whether gai_strerror is declared without a macro... no checking whether getnameinfo is declared without a macro... no checking for library containing gethostbyname... no checking for gethostbyname... no checking for gethostbyname in winsock2.h and -lws2_32... yes checking for library containing getservbyname... no checking for getservbyname... no checking for getservbyname in winsock2.h and -lws2_32... yes checking for C/C++ restrict keyword... __restrict checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... no checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for shared library run path origin... done checking for iconv... yes checking for working iconv... yes checking how to link with libiconv... -liconv checking for iconv declaration... extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for inline... inline checking whether byte ordering is bigendian... no checking whether long double and double are the same... no checking where to find the exponent in a 'float'... word 0 bit 23 checking whether isnan(float) can be used without linking with libm... yes checking whether isnan(float) works... yes checking whether isnan(double) can be used without linking with libm... yes checking whether isnan(long double) can be used without linking with libm... yes checking whether isnanl works... no checking where to find the exponent in a 'double'... word 1 bit 20 checking whether ldexp() can be used without linking with libm... yes checking for libunistring... yes checking how to link with libunistring... -lunistring checking for libunistring version... 0.9.3 checking whether getc_unlocked is declared... no checking whether we are using the GNU C Library >= 2.1 or uClibc... no checking whether pow can be used without linking with libm... yes checking whether log works... yes checking whether round is declared... yes checking whether round works... yes checking whether lstat correctly handles trailing slash... guessing no checking whether malloc, realloc, calloc are POSIX compliant... no checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for unsigned long long int... yes checking for long long int... yes checking for mbstate_t... yes checking for a traditional japanese locale... none checking for a transitional chinese locale... none checking for a french Unicode locale... none checking for mmap... no checking whether memchr works... yes checking for promoted mode_t type... int checking whether poll is declared without a macro... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... yes checking for ssize_t... yes checking whether <sys/select.h> is self-contained... no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... no checking whether select is declared without a macro... no checking whether setenv is declared... no checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for sigset_t... yes checking for uid_t in sys/types.h... no checking whether snprintf returns a byte count as in C99... yes checking whether snprintf is declared... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking whether stdint.h conforms to C99... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_zone... no checking whether tzname is declared... yes checking for tzname... yes checking for struct tm.tm_gmtoff... no checking whether ffsl is declared without a macro... no checking whether ffsll is declared without a macro... no checking whether memmem is declared without a macro... no checking whether mempcpy is declared without a macro... no checking whether memrchr is declared without a macro... no checking whether rawmemchr is declared without a macro... no checking whether stpcpy is declared without a macro... no checking whether stpncpy is declared without a macro... no checking whether strchrnul is declared without a macro... no checking whether strdup is declared without a macro... yes checking whether strncat is declared without a macro... yes checking whether strndup is declared without a macro... no checking whether strnlen is declared without a macro... no checking whether strpbrk is declared without a macro... yes checking whether strsep is declared without a macro... no checking whether strcasestr is declared without a macro... no checking whether strtok_r is declared without a macro... no checking whether strerror_r is declared without a macro... no checking whether strsignal is declared without a macro... no checking whether strverscmp is declared without a macro... no checking for winsock2.h... (cached) yes checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking whether gettimeofday is declared without a macro... yes checking for struct timespec in <time.h>... no checking for struct timespec in <sys/time.h>... no checking for struct timespec in <pthread.h>... yes checking for wint_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking for snprintf... (cached) yes checking for strnlen... no checking for wcslen... yes checking for wcsnlen... no checking for mbrtowc... (cached) yes checking for wcrtomb... (cached) yes checking whether _snprintf is declared... yes checking whether vsnprintf is declared... yes checking whether inet_ntop is declared without a macro... no checking whether inet_pton is declared without a macro... no checking whether btowc(0) is correct... yes checking whether btowc(EOF) is correct... yes checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking for library containing clock_gettime... no checking for clock_gettime... no checking for clock_settime... no checking for clock_getcpuclockid... no checking for winsock2.h... (cached) yes checking whether alphasort is declared without a macro... no checking whether closedir is declared without a macro... yes checking whether dirfd is declared without a macro... no checking whether fdopendir is declared without a macro... no checking whether opendir is declared without a macro... yes checking whether readdir is declared without a macro... yes checking whether rewinddir is declared without a macro... yes checking whether scandir is declared without a macro... no checking for dirfd... no checking whether dirfd is declared... no checking whether dirfd is a macro... no checking how to get the file descriptor associated with an open DIR*... no_such_member checking whether // is distinct from /... (cached) yes checking whether dup2 works... no checking whether fcntl is declared without a macro... no checking whether openat is declared without a macro... no checking whether conversion from 'int' to 'long double' works... yes checking for struct flock.l_type... no checking whether frexp works... no checking whether __func__ is available... yes configure: checking how to do getaddrinfo, freeaddrinfo and getnameinfo checking for library containing getaddrinfo... no checking for getaddrinfo... no checking for getaddrinfo in ws2tcpip.h and -lws2_32... no checking whether gai_strerror is declared... yes checking whether gai_strerrorA is declared... yes checking for gai_strerror with POSIX signature... no checking for struct sockaddr.sa_len... no checking whether getaddrinfo is declared... no checking whether freeaddrinfo is declared... no checking whether getnameinfo is declared... no checking for struct addrinfo... yes checking for library containing gethostbyname... (cached) no checking for gethostbyname... (cached) no checking for gethostbyname in winsock2.h and -lws2_32... (cached) yes checking whether iconv supports conversion between UTF-8 and UTF-{16,32}{BE,LE}... yes checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... (cached) no checking for winsock2.h... (cached) yes checking whether inet_pton is declared... no checking whether the compiler generally respects inline... no checking whether isinf is declared... yes checking whether isinf(long double) works... yes checking whether isnan macro works... no checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(float) can be used without linking with libm... (cached) yes checking whether isnan(float) works... (cached) yes checking where to find the exponent in a 'float'... (cached) word 0 bit 23 checking whether isnan(long double) can be used without linking with libm... (cached) yes checking whether isnanl works... (cached) no checking where to find the exponent in a 'long double'... word 2 bit 0 checking whether nl_langinfo is declared without a macro... no checking if LD -Wl,--version-script works... yes checking whether the -Werror option is usable... yes checking for simple visibility declarations... yes checking whether locale.h conforms to POSIX:2001... (cached) no checking whether struct lconv is properly defined... (cached) no checking whether setlocale is declared without a macro... (cached) yes checking whether duplocale is declared without a macro... (cached) no checking for struct lconv.decimal_point... yes checking for log1p... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking whether NAN macro works... yes checking whether HUGE_VAL works... yes checking whether acosf is declared without a macro... yes checking whether acosl is declared without a macro... yes checking whether asinf is declared without a macro... yes checking whether asinl is declared without a macro... yes checking whether atanf is declared without a macro... yes checking whether atanl is declared without a macro... yes checking whether cbrt is declared without a macro... yes checking whether cbrtf is declared without a macro... yes checking whether cbrtl is declared without a macro... yes checking whether ceilf is declared without a macro... yes checking whether ceill is declared without a macro... yes checking whether copysign is declared without a macro... yes checking whether copysignf is declared without a macro... yes checking whether copysignl is declared without a macro... yes checking whether cosf is declared without a macro... yes checking whether cosl is declared without a macro... yes checking whether coshf is declared without a macro... yes checking whether expf is declared without a macro... yes checking whether expl is declared without a macro... yes checking whether exp2 is declared without a macro... yes checking whether exp2f is declared without a macro... yes checking whether exp2l is declared without a macro... yes checking whether expm1 is declared without a macro... yes checking whether expm1f is declared without a macro... yes checking whether expm1l is declared without a macro... yes checking whether fabsf is declared without a macro... yes checking whether fabsl is declared without a macro... yes checking whether floorf is declared without a macro... yes checking whether floorl is declared without a macro... yes checking whether fma is declared without a macro... yes checking whether fmaf is declared without a macro... yes checking whether fmal is declared without a macro... yes checking whether fmod is declared without a macro... yes checking whether fmodf is declared without a macro... yes checking whether fmodl is declared without a macro... yes checking whether frexpf is declared without a macro... yes checking whether frexpl is declared without a macro... yes checking whether hypotf is declared without a macro... yes checking whether hypotl is declared without a macro... yes checking whether ilogb is declared without a macro... yes checking whether ilogbf is declared without a macro... yes checking whether ilogbl is declared without a macro... yes checking whether ldexpf is declared without a macro... yes checking whether ldexpl is declared without a macro... yes checking whether log is declared without a macro... yes checking whether logf is declared without a macro... yes checking whether logl is declared without a macro... yes checking whether log10 is declared without a macro... yes checking whether log10f is declared without a macro... yes checking whether log10l is declared without a macro... yes checking whether log1p is declared without a macro... yes checking whether log1pf is declared without a macro... yes checking whether log1pl is declared without a macro... yes checking whether log2 is declared without a macro... yes checking whether log2f is declared without a macro... yes checking whether log2l is declared without a macro... yes checking whether logb is declared without a macro... yes checking whether logbf is declared without a macro... yes checking whether logbl is declared without a macro... yes checking whether modf is declared without a macro... yes checking whether modff is declared without a macro... yes checking whether modfl is declared without a macro... yes checking whether powf is declared without a macro... yes checking whether remainder is declared without a macro... yes checking whether remainderf is declared without a macro... yes checking whether remainderl is declared without a macro... yes checking whether rint is declared without a macro... yes checking whether rintf is declared without a macro... yes checking whether rintl is declared without a macro... yes checking whether round is declared without a macro... yes checking whether roundf is declared without a macro... yes checking whether roundl is declared without a macro... yes checking whether sinf is declared without a macro... yes checking whether sinl is declared without a macro... yes checking whether sinhf is declared without a macro... yes checking whether sqrtf is declared without a macro... yes checking whether sqrtl is declared without a macro... yes checking whether tanf is declared without a macro... yes checking whether tanl is declared without a macro... yes checking whether tanhf is declared without a macro... yes checking whether trunc is declared without a macro... yes checking whether truncf is declared without a macro... yes checking whether truncl is declared without a macro... yes checking whether mbrtowc handles incomplete characters... guessing yes checking whether mbrtowc works as well as mbtowc... guessing yes checking whether mbrtowc handles a NULL pwc argument... guessing yes checking whether mbrtowc handles a NULL string argument... guessing yes checking whether mbrtowc has a correct return value... no checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether getaddrinfo is declared without a macro... (cached) no checking whether freeaddrinfo is declared without a macro... (cached) no checking whether gai_strerror is declared without a macro... (cached) no checking whether getnameinfo is declared without a macro... (cached) no checking whether <netinet/in.h> is self-contained... no checking for netinet/in.h... (cached) no checking for sys/pstat.h... no checking for sys/sysmp.h... no checking for sys/param.h... (cached) yes checking for sys/sysctl.h... no checking for sched_getaffinity... no checking for sched_getaffinity_np... no checking for pstat_getdynamic... no checking for sysmp... no checking for sysctl... no checking for poll... (cached) no checking whether poll is declared without a macro... (cached) no checking for putenv compatible with GNU and SVID... no checking for _putenv... yes checking for raise... yes checking for working re_compile_pattern... no checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking whether isblank is declared... yes checking whether rename honors trailing slash on destination... no checking whether rename honors trailing slash on source... yes checking whether rename manages hard links correctly... yes checking whether rename manages existing destinations correctly... no checking whether rmdir works... no checking whether round is declared... (cached) yes checking whether round works... (cached) yes checking for library containing getservbyname... (cached) no checking for getservbyname... (cached) no checking for getservbyname in winsock2.h and -lws2_32... (cached) yes checking for volatile sig_atomic_t... yes checking for sighandler_t... no checking whether pthread_sigmask is declared without a macro... no checking whether sigaction is declared without a macro... no checking whether sigaddset is declared without a macro... no checking whether sigdelset is declared without a macro... no checking whether sigemptyset is declared without a macro... no checking whether sigfillset is declared without a macro... no checking whether sigismember is declared without a macro... no checking whether sigpending is declared without a macro... no checking whether sigprocmask is declared without a macro... no checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking for snprintf... (cached) yes checking whether snprintf respects a size of 1... yes checking whether printf supports POSIX/XSI format strings with positions... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... (cached) yes checking for socklen_t... yes checking for ssize_t... (cached) yes checking whether stat handles trailing slashes on directories... no checking whether stat handles trailing slashes on files... yes checking for struct stat.st_atim.tv_nsec... no checking for struct stat.st_atimespec.tv_nsec... no checking for struct stat.st_atimensec... no checking for struct stat.st_atim.st__tim.tv_nsec... no checking for struct stat.st_birthtimespec.tv_nsec... no checking for struct stat.st_birthtimensec... no checking for struct stat.st_birthtim.tv_nsec... no checking for working stdalign.h... yes checking whether NULL can be used in arbitrary expressions... (cached) yes checking whether dprintf is declared without a macro... no checking whether fpurge is declared without a macro... no checking whether fseeko is declared without a macro... no checking whether ftello is declared without a macro... no checking whether getdelim is declared without a macro... no checking whether getline is declared without a macro... no checking whether gets is declared without a macro... yes checking whether pclose is declared without a macro... yes checking whether popen is declared without a macro... yes checking whether renameat is declared without a macro... no checking whether snprintf is declared without a macro... yes checking whether tmpfile is declared without a macro... yes checking whether vdprintf is declared without a macro... no checking whether vsnprintf is declared without a macro... yes checking whether _Exit is declared without a macro... yes checking whether atoll is declared without a macro... yes checking whether canonicalize_file_name is declared without a macro... no checking whether getloadavg is declared without a macro... no checking whether getsubopt is declared without a macro... no checking whether grantpt is declared without a macro... no checking whether initstate is declared without a macro... no checking whether initstate_r is declared without a macro... no checking whether mkdtemp is declared without a macro... no checking whether mkostemp is declared without a macro... no checking whether mkostemps is declared without a macro... no checking whether mkstemp is declared without a macro... no checking whether mkstemps is declared without a macro... no checking whether posix_openpt is declared without a macro... no checking whether ptsname is declared without a macro... no checking whether ptsname_r is declared without a macro... no checking whether random is declared without a macro... no checking whether random_r is declared without a macro... no checking whether realpath is declared without a macro... no checking whether rpmatch is declared without a macro... no checking whether secure_getenv is declared without a macro... no checking whether setenv is declared without a macro... no checking whether setstate is declared without a macro... no checking whether setstate_r is declared without a macro... no checking whether srandom is declared without a macro... no checking whether srandom_r is declared without a macro... no checking whether strtod is declared without a macro... yes checking whether strtoll is declared without a macro... yes checking whether strtoull is declared without a macro... yes checking whether unlockpt is declared without a macro... no checking whether unsetenv is declared without a macro... no checking whether flock is declared without a macro... no checking whether <sys/select.h> is self-contained... (cached) no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... (cached) no checking whether select is declared without a macro... (cached) no checking whether <sys/socket.h> is self-contained... (cached) no checking for struct sockaddr_storage... (cached) yes checking for sa_family_t... (cached) no checking for struct sockaddr_storage.ss_family... (cached) yes checking for winsock2.h... (cached) yes checking whether socket is declared without a macro... (cached) no checking whether connect is declared without a macro... (cached) no checking whether accept is declared without a macro... (cached) no checking whether bind is declared without a macro... (cached) no checking whether getpeername is declared without a macro... (cached) no checking whether getsockname is declared without a macro... (cached) no checking whether getsockopt is declared without a macro... (cached) no checking whether listen is declared without a macro... (cached) no checking whether recv is declared without a macro... (cached) no checking whether send is declared without a macro... (cached) no checking whether recvfrom is declared without a macro... (cached) no checking whether sendto is declared without a macro... (cached) no checking whether setsockopt is declared without a macro... (cached) no checking whether shutdown is declared without a macro... (cached) no checking whether accept4 is declared without a macro... (cached) no checking for nlink_t... (cached) no checking whether fchmodat is declared without a macro... (cached) no checking whether fstat is declared without a macro... (cached) yes checking whether fstatat is declared without a macro... (cached) no checking whether futimens is declared without a macro... (cached) no checking whether lchmod is declared without a macro... (cached) no checking whether lstat is declared without a macro... (cached) no checking whether mkdirat is declared without a macro... (cached) no checking whether mkfifo is declared without a macro... (cached) no checking whether mkfifoat is declared without a macro... (cached) no checking whether mknod is declared without a macro... (cached) no checking whether mknodat is declared without a macro... (cached) no checking whether stat is declared without a macro... (cached) yes checking whether utimensat is declared without a macro... (cached) no checking whether times is declared without a macro... no checking whether localtime_r is declared... no checking whether trunc is declared... (cached) yes checking whether chdir is declared without a macro... yes checking whether chown is declared without a macro... no checking whether dup is declared without a macro... yes checking whether dup2 is declared without a macro... yes checking whether dup3 is declared without a macro... no checking whether environ is declared without a macro... no checking whether euidaccess is declared without a macro... no checking whether faccessat is declared without a macro... no checking whether fchdir is declared without a macro... no checking whether fchownat is declared without a macro... no checking whether fdatasync is declared without a macro... no checking whether fsync is declared without a macro... no checking whether ftruncate is declared without a macro... yes checking whether getcwd is declared without a macro... yes checking whether getdomainname is declared without a macro... no checking whether getdtablesize is declared without a macro... no checking whether getgroups is declared without a macro... no checking whether gethostname is declared without a macro... no checking whether getlogin is declared without a macro... no checking whether getlogin_r is declared without a macro... no checking whether getpagesize is declared without a macro... no checking whether getusershell is declared without a macro... no checking whether setusershell is declared without a macro... no checking whether endusershell is declared without a macro... no checking whether group_member is declared without a macro... no checking whether isatty is declared without a macro... yes checking whether lchown is declared without a macro... no checking whether link is declared without a macro... no checking whether linkat is declared without a macro... no checking whether lseek is declared without a macro... yes checking whether pipe is declared without a macro... no checking whether pipe2 is declared without a macro... no checking whether pread is declared without a macro... no checking whether pwrite is declared without a macro... no checking whether readlink is declared without a macro... no checking whether readlinkat is declared without a macro... no checking whether rmdir is declared without a macro... yes checking whether sethostname is declared without a macro... no checking whether sleep is declared without a macro... no checking whether symlink is declared without a macro... no checking whether symlinkat is declared without a macro... no checking whether ttyname_r is declared without a macro... no checking whether unlink is declared without a macro... yes checking whether unlinkat is declared without a macro... no checking whether usleep is declared without a macro... yes checking for ptrdiff_t... yes checking for vsnprintf... yes checking whether snprintf respects a size of 1... (cached) yes checking whether printf supports POSIX/XSI format strings with positions... (cached) no checking whether btowc is declared without a macro... yes checking whether wctob is declared without a macro... yes checking whether mbsinit is declared without a macro... yes checking whether mbrtowc is declared without a macro... yes checking whether mbrlen is declared without a macro... yes checking whether mbsrtowcs is declared without a macro... yes checking whether mbsnrtowcs is declared without a macro... no checking whether wcrtomb is declared without a macro... yes checking whether wcsrtombs is declared without a macro... yes checking whether wcsnrtombs is declared without a macro... no checking whether wcwidth is declared without a macro... no checking whether wmemchr is declared without a macro... yes checking whether wmemcmp is declared without a macro... yes checking whether wmemcpy is declared without a macro... yes checking whether wmemmove is declared without a macro... yes checking whether wmemset is declared without a macro... yes checking whether wcslen is declared without a macro... yes checking whether wcsnlen is declared without a macro... no checking whether wcscpy is declared without a macro... yes checking whether wcpcpy is declared without a macro... no checking whether wcsncpy is declared without a macro... yes checking whether wcpncpy is declared without a macro... no checking whether wcscat is declared without a macro... yes checking whether wcsncat is declared without a macro... yes checking whether wcscmp is declared without a macro... yes checking whether wcsncmp is declared without a macro... yes checking whether wcscasecmp is declared without a macro... no checking whether wcsncasecmp is declared without a macro... no checking whether wcscoll is declared without a macro... yes checking whether wcsxfrm is declared without a macro... yes checking whether wcsdup is declared without a macro... yes checking whether wcschr is declared without a macro... yes checking whether wcsrchr is declared without a macro... yes checking whether wcscspn is declared without a macro... yes checking whether wcsspn is declared without a macro... yes checking whether wcspbrk is declared without a macro... yes checking whether wcsstr is declared without a macro... yes checking whether wcstok is declared without a macro... yes checking whether wcswidth is declared without a macro... no checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether wcrtomb return value is correct... yes checking whether iswcntrl works... yes checking for towlower... yes checking for wctype_t... yes checking for wctrans_t... yes checking whether wctype is declared without a macro... yes checking whether iswctype is declared without a macro... yes checking whether wctrans is declared without a macro... yes checking whether towctrans is declared without a macro... yes checking for stdint.h... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for fgrep... /bin/grep -F checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /mingw/bin/nm checking the name lister (/mingw/bin/nm) interface... BSD nm checking the maximum length of command line arguments... 8192 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert i686-pc-mingw32 file names to i686-pc-mingw32 format... func_convert_file_msys_to_w32 checking how to convert i686-pc-mingw32 file names to toolchain format... func_convert_file_msys_to_w32 checking for c:/mingw/mingw32/bin/ld.exe option to reload object files... -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... func_cygming_dll_for_implib checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... (cached) ranlib checking command to parse /mingw/bin/nm output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... no checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (c:/mingw/mingw32/bin/ld.exe) supports shared libraries... yes checking dynamic linker characteristics... Win32 ld.exe checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking for libltdl... yes checking how to link with libltdl... -lltdl checking for makeinfo... yes checking for emacs... no checking for xemacs... no checking where .elc files should go... ${datadir}/emacs/site-lisp checking whether to use system and library "64" calls... yes checking for __uc_get_ar_bsp in -luca... no checking for an ANSI C-conforming const... yes checking for working volatile... yes checking for inline... (cached) inline checking for __uc_get_ar_bsp in -luca... (cached) no checking whether byte ordering is bigendian... (cached) no checking labels as values... yes checking size of char... 1 checking size of unsigned char... 1 checking size of short... 2 checking size of unsigned short... 2 checking size of int... 4 checking size of unsigned int... 4 checking size of long... 4 checking size of unsigned long... 4 checking size of size_t... 4 checking size of long long... 8 checking size of unsigned long long... 8 checking size of __int64... 8 checking size of unsigned __int64... 8 checking size of void *... 4 checking size of intptr_t... 4 checking size of uintptr_t... 4 checking size of ptrdiff_t... 4 checking size of size_t... (cached) 4 checking size of off_t... 4 checking for stdint.h... (cached) yes checking for inttypes.h... (cached) yes checking size of intmax_t... 8 checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... yes checking for uintptr_t... yes checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... (cached) yes checking for uintptr_t... (cached) yes checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for struct dirent64.d_name... no checking complex.h usability... yes checking complex.h presence... yes checking for complex.h... yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking io.h usability... yes checking io.h presence... yes checking for io.h... yes checking libc.h usability... no checking libc.h presence... no checking for libc.h... no checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for memory.h... (cached) yes checking process.h usability... yes checking process.h presence... yes checking for process.h... yes checking for string.h... (cached) yes checking sys/dir.h usability... no checking sys/dir.h presence... no checking for sys/dir.h... no checking for sys/ioctl.h... (cached) no checking for sys/select.h... (cached) no checking for sys/time.h... (cached) yes checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking for sys/times.h... (cached) no checking sys/stdtypes.h usability... no checking sys/stdtypes.h presence... no checking for sys/stdtypes.h... no checking for sys/types.h... (cached) yes checking sys/utime.h usability... yes checking sys/utime.h presence... yes checking for sys/utime.h... yes checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking for unistd.h... (cached) yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking pwd.h usability... no checking pwd.h presence... no checking for pwd.h... no checking grp.h usability... no checking grp.h presence... no checking for grp.h... no checking sys/utsname.h usability... no checking sys/utsname.h presence... no checking for sys/utsname.h... no checking direct.h usability... yes checking direct.h presence... yes checking for direct.h... yes checking machine/fpu.h usability... no checking machine/fpu.h presence... no checking for machine/fpu.h... no checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking for complex double... yes checking for socklen_t... (cached) yes checking for struct ip_mreq... no checking for libc.h... (cached) no checking for unistd.h... (cached) yes checking whether libc.h and unistd.h can be included together... no checking type of array argument to getgroups... int checking return type of signal handlers... void checking for mode_t... (cached) yes checking for cos in -lm... yes checking for gethostbyname... (cached) no checking for gethostbyname in -lnsl... no checking for connect... no checking for connect in -lsocket... no checking for winsock2.h... (cached) yes checking for main in -lws2_32... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking crt_externs.h usability... no checking crt_externs.h presence... no checking for crt_externs.h... no checking for DINFINITY... no checking for DQNAN... no checking for cexp... yes checking for chsize... yes checking for clog... yes checking for clog10... no checking for ctermid... no checking for fesetround... yes checking for ftime... yes checking for ftruncate... yes checking for fchown... no checking for fchmod... no checking for getcwd... (cached) yes checking for geteuid... no checking for getsid... no checking for gettimeofday... yes checking for gmtime_r... no checking for ioctl... no checking for lstat... (cached) no checking for mkdir... yes checking for mknod... no checking for nice... no checking for pipe... (cached) no checking for _pipe... yes checking for readdir_r... no checking for readdir64_r... no checking for readlink... (cached) no checking for rename... yes checking for rmdir... yes checking for select... no checking for setegid... no checking for seteuid... no checking for setlocale... yes checking for setpgid... no checking for setsid... no checking for sigaction... no checking for siginterrupt... no checking for stat64... no checking for strftime... yes checking for strptime... no checking for symlink... (cached) no checking for sync... no checking for sysconf... no checking for tcgetpgrp... no checking for tcsetpgrp... no checking for times... (cached) no checking for uname... no checking for waitpid... no checking for strdup... yes checking for system... yes checking for usleep... yes checking for atexit... yes checking for on_exit... no checking for chown... no checking for link... (cached) no checking for fcntl... (cached) no checking for ttyname... no checking for getpwent... no checking for getgrent... no checking for kill... no checking for getppid... no checking for getpgrp... no checking for fork... no checking for setitimer... no checking for getitimer... no checking for strchr... yes checking for strcmp... yes checking for index... no checking for bcopy... no checking for memcpy... yes checking for rindex... no checking for truncate... no checking for unsetenv... no checking for isblank... (cached) yes checking for _NSGetEnviron... no checking for strcoll... yes checking for strcoll_l... no checking for newlocale... no checking for utimensat... no checking for sched_getaffinity... (cached) no checking for sched_setaffinity... no checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking for netdb.h... (cached) no checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking pthread_np.h usability... no checking pthread_np.h presence... no checking for pthread_np.h... no checking for sys/param.h... (cached) yes checking sys/resource.h usability... no checking sys/resource.h presence... no checking for sys/resource.h... no checking for sys/file.h... (cached) yes checking for sys/mman.h... (cached) no checking for chroot... no checking for flock... (cached) no checking for getlogin... (cached) no checking for cuserid... no checking for getpriority... no checking for setpriority... no checking for getpass... no checking for sethostname... no checking for gethostname... no checking whether sethostname is declared... no checking whether hstrerror is declared... no checking whether cuserid is declared... no checking for library containing crypt... no checking for i... _Complex_I checking whether csqrt is usable... yes checking for libgmp... yes checking how to link with libgmp... /c/Users/shookie/guiletest/lib/lib/libgmp.a checking whether libunistring was built with iconv support... yes checking for pkg-config... no checking for LIBFFI... yes checking size of size_t... (cached) 4 checking size of ssize_t... 4 checking whether NLS is requested... yes checking for msgfmt... /mingw/bin/msgfmt checking for gmsgfmt... /mingw/bin/msgfmt checking for xgettext... /mingw/bin/xgettext checking for msgmerge... /mingw/bin/msgmerge checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking for GNU gettext in libc... no checking for iconv... (cached) yes checking for working iconv... (cached) yes checking how to link with libiconv... -liconv checking for GNU gettext in libintl... yes checking whether to use NLS... yes checking where the gettext function comes from... external libintl checking how to link with libintl... -lintl checking for sleep declaration... yes checking for usleep declaration... yes checking whether getlogin is declared... no checking whether alarm is declared... no checking whether strptime is declared... no checking return type of usleep... int checking sys/un.h usability... no checking sys/un.h presence... no checking for sys/un.h... no checking for getrlimit... no checking for setrlimit... no checking for socketpair... no checking for getgroups... no checking for setgroups... no checking for setpwent... no checking for pause... no checking for tzset... (cached) yes checking for sethostent... no checking for gethostent... no checking for endhostent... no checking for setnetent... no checking for getnetent... no checking for endnetent... no checking for setprotoent... no checking for getprotoent... no checking for endprotoent... no checking for setservent... no checking for getservent... no checking for endservent... no checking for getnetbyaddr... no checking for getnetbyname... no checking for inet_lnaof... no checking for inet_makeaddr... no checking for inet_netof... no checking for hstrerror... no checking for struct sockaddr_in.sin_len... no checking for __libc_stack_end... no checking whether netdb.h declares h_errno... no checking whether uint32_t is defined... no checking for working IPv6 support... no checking whether sockaddr_in6 has sin6_scope_id... no checking for struct sockaddr_in6.sin6_len... no checking whether localtime caches TZ... yes checking for strerror... yes checking for memmove... yes checking for mkstemp... no checking for asinh... yes checking for acosh... yes checking for atanh... yes checking for copysign... yes checking for finite... yes checking for sincos... no checking for trunc... yes checking for isinf... yes checking for isnan... yes checking for struct stat.st_rdev... yes checking for struct stat.st_blksize... no checking for struct stat.st_blocks... no checking for struct stat.st_atim... no checking for struct stat.st_mtim... no checking for struct stat.st_ctim... no checking for struct tm.tm_zone... (cached) no checking whether tzname is declared... (cached) yes checking for tzname... (cached) yes checking for struct tm.tm_gmtoff... (cached) no checking whether we need POSIX to get struct utimbuf... no checking the value of `iconveh_error'... 0 checking the value of `iconveh_question_mark'... 1 checking the value of `iconveh_escape_sequence'... 2 checking for BDW_GC... yes checking for GC_do_blocking... no checking for GC_call_with_gc_active... no checking for GC_pthread_exit... no checking for GC_pthread_cancel... no checking for GC_allow_register_threads... no checking for GC_pthread_sigmask... no checking for GC_set_start_callback... no checking for GC_get_heap_usage_safe... no checking for GC_get_free_space_divisor... no checking for GC_gcollect_and_unmap... no checking for GC_get_unmapped_bytes... no checking for GC_set_finalizer_notifier... no checking for GC_set_finalize_on_demand... no checking for GC_set_all_interior_pointers... no checking for GC_get_gc_no... no checking for GC_set_java_finalization... no checking whether GC_do_blocking is declared... yes checking for GC_fn_type... yes checking for struct GC_stack_base... yes checking size of float... 4 checking for struct linger... no checking for struct timespec... yes checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no checking whether pthreads work with -kthread... no checking for the pthreads library -llthread... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... no checking for pthread_attr_getstack... no checking for pthread_getattr_np... no checking for pthread_get_stackaddr_np... no checking for pthread_attr_get_np... no checking for pthread_sigmask... no checking whether PTHREAD_ONCE_INIT needs braces... no checking whether PTHREAD_MUTEX_INITIALIZER needs braces... no checking for library containing sched_yield... no checking what kind of threads to support... pthreads checking whether pthread_attr_getstack works for the main thread... no checking whether the `__thread' storage class is available... yes checking whether C compiler handles -Wall... yes checking whether C compiler handles -Wmissing-prototypes... yes checking whether C compiler handles -Wdeclaration-after-statement... yes checking whether C compiler handles -Wpointer-arith... yes checking whether C compiler handles -Wswitch-enum... yes checking whether C compiler handles -fno-strict-aliasing... yes checking whether the linker understands `-z relro'... no checking for tgoto in -lncurses... no checking for tgoto in -lcurses... no checking for tgoto in -ltermcap... no checking for tgoto in -lterminfo... no checking for tgoto in -ltermlib... no checking for tgoto in -lpdcurses... no checking how to link with libreadline... /c/Users/shookie/guiletest/lib/lib/libreadline.a checking for siginterrupt... (cached) no checking for rl_clear_signals... no checking for rl_cleanup_after_signal... no checking for rl_filename_completion_function... no checking whether rl_catch_signals is declared... yes checking whether rl_catch_sigwinch is declared... yes checking for rl_get_keymap... no checking for rl_getc_function pointer in readline... no configure: WARNING: *** GNU Readline is too old on your system. configure: WARNING: *** You need readline version 2.1 or later. checking for strdup... (cached) yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating libguile/gen-scmconfig.h config.status: creating Makefile config.status: creating am/Makefile config.status: creating lib/Makefile config.status: creating benchmark-suite/Makefile config.status: creating gc-benchmarks/Makefile config.status: creating doc/Makefile config.status: creating doc/r5rs/Makefile config.status: creating doc/ref/Makefile config.status: creating emacs/Makefile config.status: creating examples/Makefile config.status: creating libguile/Makefile config.status: creating libguile/version.h config.status: creating guile-readline/Makefile config.status: creating test-suite/Makefile config.status: creating test-suite/standalone/Makefile config.status: creating test-suite/vm/Makefile config.status: creating meta/Makefile config.status: creating module/Makefile config.status: creating meta/guile-2.0.pc config.status: creating meta/guile-2.0-uninstalled.pc config.status: creating doc/ref/effective-version.texi config.status: creating check-guile config.status: creating benchmark-guile config.status: creating meta/guile config.status: creating meta/uninstalled-env config.status: creating meta/gdb-uninstalled-guile config.status: creating meta/guild config.status: creating libguile/guile-snarf config.status: creating libguile/guile-snarf-docs config.status: creating test-suite/standalone/test-use-srfi config.status: creating test-suite/standalone/test-fast-slot-ref config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands config.status: executing po-directories commands make[1]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make install-recursive make[2]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' Making install in lib make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' GEN alloca.h GEN c++defs.h GEN warn-on-use.h GEN arg-nonnull.h GEN arpa/inet.h GEN byteswap.h GEN configmake.h GEN dirent.h GEN errno.h GEN fcntl.h GEN iconv.h GEN langinfo.h GEN locale.h GEN math.h GEN netdb.h GEN netinet/in.h GEN poll.h GEN signal.h GEN unused-parameter.h GEN stdio.h GEN stdlib.h GEN string.h GEN sys/file.h GEN sys/select.h GEN sys/socket.h GEN sys/stat.h GEN sys/time.h GEN sys/times.h GEN sys/types.h GEN sys/uio.h GEN time.h GEN unistd.h GEN wchar.h GEN wctype.h make install-recursive make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' CC binary-io.lo CC c-ctype.lo CC c-strcasecmp.lo CC c-strncasecmp.lo CC dirname-lgpl.lo CC basename-lgpl.lo CC stripslash.lo CC fd-hook.lo CC full-read.lo CC full-write.lo CC localcharset.lo CC malloca.lo CC math.lo CC nproc.lo CC pipe2.lo CC safe-read.lo CC safe-write.lo CC sockets.lo CC stat-time.lo CC strftime.lo CC striconveh.lo CC sys_socket.lo CC unistd.lo CC unistr/u8-mbtouc.lo CC unistr/u8-mbtouc-aux.lo CC unistr/u8-mbtouc-unsafe.lo CC unistr/u8-mbtouc-unsafe-aux.lo CC wctype-h.lo CC xsize.lo CC accept.lo CC asnprintf.lo CC bind.lo CC canonicalize-lgpl.lo CC close.lo CC connect.lo CC dirfd.lo CC dup2.lo CC flock.lo CC frexp.lo CC fstat.lo CC gai_strerror.lo CC getaddrinfo.lo CC getlogin.lo CC getpeername.lo CC getsockname.lo CC getsockopt.lo CC inet_ntop.lo CC inet_pton.lo CC isnand.lo CC isnanf.lo CC isnanl.lo CC listen.lo CC localeconv.lo CC malloc.lo CC mbrtowc.lo CC mbsinit.lo CC nl_langinfo.lo CC open.lo CC pipe.lo CC poll.lo CC printf-args.lo CC printf-parse.lo CC putenv.lo CC readlink.lo CC recv.lo CC recvfrom.lo CC regex.lo CC rename.lo CC rmdir.lo CC select.lo CC send.lo CC sendto.lo CC setenv.lo CC setsockopt.lo CC shutdown.lo CC snprintf.lo CC socket.lo CC stat.lo CC time_r.lo CC times.lo CC vasnprintf.lo CC vsnprintf.lo CCLD libgnu.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. GEN charset.alias GEN ref-add.sed GEN ref-del.sed make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' if test no = no; then \ case 'mingw32' in \ darwin[56]*) \ need_charset_alias=true ;; \ darwin* | cygwin* | mingw* | pw32* | cegcc*) \ need_charset_alias=false ;; \ *) \ need_charset_alias=true ;; \ esac ; \ else \ need_charset_alias=false ; \ fi ; \ if $need_charset_alias; then \ /bin/sh /c/Users/shookie/guiletest/lib/guile-2.0/build-aux/install-sh -d /c/Users/shookie/guiletest/lib/lib ; \ fi ; \ if test -f /c/Users/shookie/guiletest/lib/lib/charset.alias; then \ sed -f ref-add.sed /c/Users/shookie/guiletest/lib/lib/charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ else \ if $need_charset_alias; then \ sed -f ref-add.sed charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ fi ; \ fi make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' Making install in meta make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guile="/c/Users/shookie/guiletest/lib/bin/`echo guile | /bin/sed -e 's,x,x,'`" ; \ cat ./guile-config.in \ | /bin/sed -e "s,@pkgconfigdir@,/c/Users/shookie/guiletest/lib/lib/pkgconfig,g ; \ s,@""PKG_CONFIG@,,g ; \ s,@installed_guile@,$guile,g" \ > guile-config.out mv guile-config.out guile-config chmod +x guile-config make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-config guild '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guild="`echo -n guild \ | /bin/sed -e 's,x,x,'`.exe" ; \ guile_tools="`echo -n guile-tools \ | /bin/sed -e 's,x,x,'`.exe" ; \ cd /c/Users/shookie/guiletest/lib/bin && rm -f "$guile_tools" && \ cp -pR "$guild" "$guile_tools" make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/install -c -m 644 guile.m4 '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/pkgconfig' /bin/install -c -m 644 guile-2.0.pc '/c/Users/shookie/guiletest/lib/lib/pkgconfig' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' Making install in libguile make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' GEN libpath.h GEN gen-scmconfig.o GEN gen-scmconfig.exe GEN scmconfig.h GEN vm-i-system.i GEN vm-i-scheme.i GEN vm-i-loader.i SNARF alist.x SNARF arbiters.x SNARF array-handle.x SNARF array-map.x SNARF arrays.x SNARF async.x SNARF backtrace.x SNARF boolean.x SNARF bitvectors.x SNARF bytevectors.x SNARF chars.x SNARF control.x SNARF continuations.x SNARF debug.x SNARF deprecated.x SNARF deprecation.x SNARF dynl.x SNARF dynwind.x SNARF eq.x SNARF error.x SNARF eval.x SNARF evalext.x SNARF expand.x SNARF extensions.x SNARF feature.x SNARF filesys.x SNARF fluids.x SNARF foreign.x SNARF fports.x SNARF gc-malloc.x SNARF gc.x SNARF gettext.x SNARF generalized-arrays.x SNARF generalized-vectors.x SNARF goops.x SNARF gsubr.x SNARF guardians.x SNARF hash.x SNARF hashtab.x SNARF hooks.x SNARF i18n.x SNARF init.x SNARF ioext.x SNARF keywords.x SNARF list.x SNARF load.x SNARF macros.x SNARF mallocs.x SNARF memoize.x SNARF modules.x SNARF numbers.x SNARF objprop.x SNARF options.x SNARF pairs.x SNARF ports.x SNARF print.x SNARF procprop.x SNARF procs.x SNARF promises.x SNARF r6rs-ports.x SNARF random.x SNARF rdelim.x SNARF read.x SNARF root.x SNARF rw.x SNARF scmsigs.x SNARF script.x SNARF simpos.x SNARF smob.x SNARF sort.x SNARF srcprop.x SNARF srfi-1.x SNARF srfi-4.x SNARF srfi-13.x SNARF srfi-14.x SNARF srfi-60.x SNARF stackchk.x SNARF stacks.x SNARF stime.x SNARF strings.x SNARF strorder.x SNARF strports.x SNARF struct.x SNARF symbols.x SNARF threads.x SNARF throw.x SNARF trees.x SNARF uniform.x SNARF values.x SNARF variable.x SNARF vectors.x SNARF version.x SNARF vports.x SNARF weaks.x SNARF frames.x SNARF instructions.x SNARF objcodes.x SNARF programs.x SNARF vm.x SNARF posix.x SNARF net_db.x SNARF socket.x SNARF win32-uname.x SNARF regex-posix.x SNARF mkstemp.x make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' CC libguile_2.0_la-alist.lo CC libguile_2.0_la-arbiters.lo CC libguile_2.0_la-array-handle.lo CC libguile_2.0_la-array-map.lo CC libguile_2.0_la-arrays.lo CC libguile_2.0_la-async.lo CC libguile_2.0_la-backtrace.lo CC libguile_2.0_la-boolean.lo CC libguile_2.0_la-bitvectors.lo CC libguile_2.0_la-bytevectors.lo CC libguile_2.0_la-chars.lo CC libguile_2.0_la-control.lo CC libguile_2.0_la-continuations.lo CC libguile_2.0_la-debug.lo CC libguile_2.0_la-deprecated.lo CC libguile_2.0_la-deprecation.lo CC libguile_2.0_la-dynwind.lo CC libguile_2.0_la-eq.lo CC libguile_2.0_la-error.lo CC libguile_2.0_la-eval.lo CC libguile_2.0_la-evalext.lo CC libguile_2.0_la-expand.lo CC libguile_2.0_la-extensions.lo CC libguile_2.0_la-feature.lo CC libguile_2.0_la-filesys.lo CC libguile_2.0_la-finalizers.lo CC libguile_2.0_la-fluids.lo CC libguile_2.0_la-foreign.lo CC libguile_2.0_la-fports.lo CC libguile_2.0_la-frames.lo CC libguile_2.0_la-gc-malloc.lo CC libguile_2.0_la-gc.lo CC libguile_2.0_la-gdbint.lo CC libguile_2.0_la-gettext.lo CC libguile_2.0_la-generalized-arrays.lo CC libguile_2.0_la-generalized-vectors.lo CC libguile_2.0_la-goops.lo CC libguile_2.0_la-gsubr.lo CC libguile_2.0_la-guardians.lo CC libguile_2.0_la-hash.lo CC libguile_2.0_la-hashtab.lo CC libguile_2.0_la-hooks.lo CC libguile_2.0_la-i18n.lo CC libguile_2.0_la-init.lo CC libguile_2.0_la-inline.lo CC libguile_2.0_la-instructions.lo CC libguile_2.0_la-ioext.lo CC libguile_2.0_la-keywords.lo CC libguile_2.0_la-list.lo CC libguile_2.0_la-load.lo CC libguile_2.0_la-macros.lo CC libguile_2.0_la-mallocs.lo CC libguile_2.0_la-memoize.lo CC libguile_2.0_la-modules.lo CC libguile_2.0_la-null-threads.lo CC libguile_2.0_la-numbers.lo CC libguile_2.0_la-objcodes.lo CC libguile_2.0_la-objprop.lo CC libguile_2.0_la-options.lo CC libguile_2.0_la-pairs.lo CC libguile_2.0_la-poll.lo CC libguile_2.0_la-ports.lo CC libguile_2.0_la-print.lo CC libguile_2.0_la-procprop.lo CC libguile_2.0_la-procs.lo CC libguile_2.0_la-programs.lo CC libguile_2.0_la-promises.lo CC libguile_2.0_la-r6rs-ports.lo CC libguile_2.0_la-random.lo CC libguile_2.0_la-rdelim.lo CC libguile_2.0_la-read.lo CC libguile_2.0_la-root.lo CC libguile_2.0_la-rw.lo CC libguile_2.0_la-scmsigs.lo CC libguile_2.0_la-script.lo CC libguile_2.0_la-simpos.lo CC libguile_2.0_la-smob.lo CC libguile_2.0_la-sort.lo CC libguile_2.0_la-srcprop.lo CC libguile_2.0_la-srfi-1.lo CC libguile_2.0_la-srfi-4.lo CC libguile_2.0_la-srfi-13.lo CC libguile_2.0_la-srfi-14.lo CC libguile_2.0_la-srfi-60.lo CC libguile_2.0_la-stackchk.lo CC libguile_2.0_la-stacks.lo CC libguile_2.0_la-stime.lo CC libguile_2.0_la-strings.lo CC libguile_2.0_la-strorder.lo CC libguile_2.0_la-strports.lo CC libguile_2.0_la-struct.lo CC libguile_2.0_la-symbols.lo CC libguile_2.0_la-threads.lo threads.c: In function 'scm_pthread_cond_timedwait': threads.c:2006:3: warning: passing argument 3 of 'pthread_cond_timedwait' from incompatible pointer type [enabled by default] In file included from ../lib/time.h:369:0, from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/sys/time.h:3, from ../lib/sys/time.h:30, from ../libguile/scmconfig.h:26, from ../libguile/bdw-gc.h:24, from threads.c:26: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/pthread.h:1097:31: note: expected 'const struct timespec *' but argument is of type 'const struct scm_t_timespec *' CC libguile_2.0_la-throw.lo CC libguile_2.0_la-trees.lo CC libguile_2.0_la-uniform.lo CC libguile_2.0_la-values.lo CC libguile_2.0_la-variable.lo CC libguile_2.0_la-vectors.lo CC libguile_2.0_la-version.lo CC libguile_2.0_la-vm.lo CC libguile_2.0_la-vports.lo CC libguile_2.0_la-weaks.lo CC dynl.lo CC posix.lo posix.c: In function 'scm_execl': posix.c:1145:3: warning: passing argument 2 of 'execv' from incompatible pointer type [enabled by default] In file included from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/unistd.h:13:0, from ../lib/unistd.h:27, from posix.c:50: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/process.h:118:42: note: expected 'const char * const*' but argument is of type 'char **' posix.c: In function 'scm_execlp': posix.c:1174:3: warning: passing argument 2 of 'execvp' from incompatible pointer type [enabled by default] In file included from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/unistd.h:13:0, from ../lib/unistd.h:27, from posix.c:50: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/process.h:120:42: note: expected 'const char * const*' but argument is of type 'char **' posix.c: In function 'scm_execle': posix.c:1208:3: warning: passing argument 2 of 'execve' from incompatible pointer type [enabled by default] In file included from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/unistd.h:13:0, from ../lib/unistd.h:27, from posix.c:50: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/process.h:119:42: note: expected 'const char * const*' but argument is of type 'char **' posix.c:1208:3: warning: passing argument 3 of 'execve' from incompatible pointer type [enabled by default] In file included from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/unistd.h:13:0, from ../lib/unistd.h:27, from posix.c:50: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/process.h:119:42: note: expected 'const char * const*' but argument is of type 'char **' CC net_db.lo CC socket.lo socket.c: In function 'scm_fill_sockaddr': socket.c:817:16: warning: variable 'scope_id' set but not used [-Wunused-but-set-variable] CC win32-uname.lo CC regex-posix.lo CC mkstemp.lo CCLD libguile-2.0.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. copying selected object files to avoid basename conflicts... CC guile-guile.o CCLD guile.exe libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. GEN c-tokenize.o GEN guile_filter_doc_snarfage.exe libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. SNARF alist.doc SNARF arbiters.doc SNARF array-handle.doc SNARF array-map.doc SNARF arrays.doc SNARF async.doc SNARF backtrace.doc SNARF boolean.doc SNARF bitvectors.doc SNARF bytevectors.doc SNARF chars.doc SNARF control.doc SNARF continuations.doc SNARF debug.doc SNARF deprecated.doc SNARF deprecation.doc SNARF dynl.doc SNARF dynwind.doc SNARF eq.doc SNARF error.doc SNARF eval.doc SNARF evalext.doc SNARF expand.doc SNARF extensions.doc SNARF feature.doc SNARF filesys.doc SNARF fluids.doc SNARF foreign.doc SNARF fports.doc SNARF gc-malloc.doc SNARF gc.doc SNARF gettext.doc SNARF generalized-arrays.doc generalized-arrays.c:139:***Mismatching FUNC_NAME. Should be: `#define FUNC_NAME s_scm_array_length' SNARF generalized-vectors.doc SNARF goops.doc SNARF gsubr.doc SNARF guardians.doc SNARF hash.doc SNARF hashtab.doc SNARF hooks.doc SNARF i18n.doc SNARF init.doc SNARF ioext.doc SNARF keywords.doc SNARF list.doc SNARF load.doc SNARF macros.doc SNARF mallocs.doc SNARF memoize.doc memoize.c:515:***Mismatching FUNC_NAME. Should be: `#define FUNC_NAME s_"@prompt"' SNARF modules.doc SNARF numbers.doc SNARF objprop.doc SNARF options.doc SNARF pairs.doc pairs.c:147:***Missing or erroneous `#define FUNC_NAME s_scm_cdr' pairs.c:150:***pairs.c:155:***Missing or erroneous `#define FUNC_NAME s_scm_cddr' pairs.c:158:***pairs.c:163:***Missing or erroneous `#define FUNC_NAME s_scm_cadr' pairs.c:166:***pairs.c:171:***Missing or erroneous `#define FUNC_NAME s_scm_cdddr' pairs.c:174:***pairs.c:179:***Missing or erroneous `#define FUNC_NAME s_scm_cdadr' pairs.c:182:***pairs.c:187:***Missing or erroneous `#define FUNC_NAME s_scm_caddr' pairs.c:190:***pairs.c:195:***Missing or erroneous `#define FUNC_NAME s_scm_caadr' pairs.c:198:***pairs.c:203:***Missing or erroneous `#define FUNC_NAME s_scm_cddddr' pairs.c:206:***pairs.c:211:***Missing or erroneous `#define FUNC_NAME s_scm_cddadr' pairs.c:214:***pairs.c:219:***Missing or erroneous `#define FUNC_NAME s_scm_cdaddr' pairs.c:222:***pairs.c:227:***Missing or erroneous `#define FUNC_NAME s_scm_cdaadr' pairs.c:230:***pairs.c:235:***Missing or erroneous `#define FUNC_NAME s_scm_cadddr' pairs.c:238:***pairs.c:243:***Missing or erroneous `#define FUNC_NAME s_scm_cadadr' pairs.c:246:***pairs.c:251:***Missing or erroneous `#define FUNC_NAME s_scm_caaddr' pairs.c:254:***pairs.c:259:***Missing or erroneous `#define FUNC_NAME s_scm_caaadr' pairs.c:262:***Missing or erroneous #undef for scm_car: Missing or erroneous #undef for scm_cdar: Missing or erroneous #undef for scm_caar: Missing or erroneous #undef for scm_cddar: Missing or erroneous #undef for scm_cdaar: Missing or erroneous #undef for scm_cadar: Missing or erroneous #undef for scm_caaar: Missing or erroneous #undef for scm_cdddar: Missing or erroneous #undef for scm_cddaar: Missing or erroneous #undef for scm_cdadar: Missing or erroneous #undef for scm_cdaaar: Missing or erroneous #undef for scm_caddar: Missing or erroneous #undef for scm_cadaar: Missing or erroneous #undef for scm_caadar: Missing or erroneous #undef for scm_caaaar: SNARF ports.doc SNARF print.doc SNARF procprop.doc SNARF procs.doc SNARF promises.doc SNARF r6rs-ports.doc SNARF random.doc SNARF rdelim.doc SNARF read.doc SNARF root.doc SNARF rw.doc SNARF scmsigs.doc SNARF script.doc SNARF simpos.doc SNARF smob.doc SNARF sort.doc SNARF srcprop.doc SNARF srfi-1.doc SNARF srfi-4.doc SNARF srfi-13.doc SNARF srfi-14.doc SNARF srfi-60.doc SNARF stackchk.doc SNARF stacks.doc SNARF stime.doc SNARF strings.doc SNARF strorder.doc SNARF strports.doc SNARF struct.doc SNARF symbols.doc SNARF threads.doc SNARF throw.doc SNARF trees.doc SNARF uniform.doc SNARF values.doc SNARF variable.doc SNARF vectors.doc SNARF version.doc SNARF vports.doc SNARF weaks.doc SNARF posix.doc SNARF net_db.doc SNARF socket.doc SNARF win32-uname.doc SNARF regex-posix.doc SNARF mkstemp.doc GEN guile-procedures.texi rm -f guile-procedures.txt makeinfo --force -o guile-procedures.txt guile-procedures.texi || test -f guile-procedures.txt /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:10274: Cross reference to nonexistent node `Backslash Escapes' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9969: Cross reference to nonexistent node `Network Address Conversion' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9908: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9858: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9332: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9325: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9318: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9232: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8597: Cross reference to nonexistent node `Vtables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8215: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8034: Cross reference to nonexistent node `Bitwise Operations' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6725: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6703: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6647: Cross reference to nonexistent node `Multiple Values' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5591: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5300: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5289: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5278: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3319: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3126: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2797: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2790: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2783: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2213: Cross reference to nonexistent node `Character Encoding of Source Files' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2207: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2189: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:1575: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:1563: Cross reference to nonexistent node `Closing' (perhaps incorrect sectioning?). make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib' /bin/sh ../libtool --mode=install /bin/install -c libguile-2.0.la '/c/Users/shookie/guiletest/lib/lib' libtool: install: /bin/install -c .libs/libguile-2.0.lai /c/Users/shookie/guiletest/lib/lib/libguile-2.0.la libtool: install: /bin/install -c .libs/libguile-2.0.a /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: chmod 644 /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: ranlib /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/sh ../libtool --mode=install /bin/install -c guile.exe '/c/Users/shookie/guiletest/lib/bin' libtool: install: /bin/install -c guile.exe /c/Users/shookie/guiletest/lib/bin/guile.exe /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-snarf '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' rm -f /c/Users/shookie/guiletest/lib/bin/guile-snarf.awk make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 __scm.h alist.h arbiters.h array-handle.h array-map.h arrays.h async.h backtrace.h bdw-gc.h boolean.h bitvectors.h bytevectors.h chars.h control.h continuations.h debug-malloc.h debug.h deprecated.h deprecation.h dynl.h dynwind.h eq.h error.h eval.h evalext.h expand.h extensions.h feature.h finalizers.h filesys.h fluids.h foreign.h fports.h frames.h gc.h gdb_interface.h gdbint.h gettext.h generalized-arrays.h generalized-vectors.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 goops.h gsubr.h guardians.h hash.h hashtab.h hooks.h i18n.h init.h inline.h instructions.h ioext.h iselect.h keywords.h list.h load.h macros.h mallocs.h memoize.h modules.h net_db.h null-threads.h numbers.h objcodes.h objprop.h options.h pairs.h poll.h ports.h posix.h print.h procprop.h procs.h programs.h promises.h pthread-threads.h r6rs-ports.h random.h rdelim.h read.h regex-posix.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 root.h rw.h scmsigs.h script.h simpos.h smob.h snarf.h socket.h sort.h srcprop.h srfi-1.h srfi-4.h srfi-13.h srfi-14.h srfi-60.h stackchk.h stacks.h stime.h strings.h strorder.h strports.h struct.h symbols.h tags.h threads.h throw.h trees.h validate.h uniform.h values.h variable.h vectors.h vm-engine.h vm-expand.h vm.h vports.h weaks.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 version.h scmconfig.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0' /bin/install -c -m 644 guile-procedures.txt '/c/Users/shookie/guiletest/lib/share/guile/2.0' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' Making install in module make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' GUILEC ice-9/eval.go wrote `ice-9/eval.go' GUILEC ice-9/psyntax-pp.go wrote `ice-9/psyntax-pp.go' GUILEC ice-9/boot-9.go ice-9/boot-9.scm:1518:61: warning: possibly unbound variable `getuid' wrote `ice-9/boot-9.go' GUILEC ice-9/vlist.go wrote `ice-9/vlist.go' GUILEC srfi/srfi-1.go wrote `srfi/srfi-1.go' GUILEC language/tree-il/peval.go wrote `language/tree-il/peval.go' GUILEC language/tree-il/cse.go wrote `language/tree-il/cse.go' GUILEC language/tree-il.go wrote `language/tree-il.go' GUILEC language/glil.go wrote `language/glil.go' GUILEC language/assembly.go wrote `language/assembly.go' GUILEC language/tree-il/primitives.go wrote `language/tree-il/primitives.go' GUILEC language/tree-il/effects.go wrote `language/tree-il/effects.go' GUILEC language/tree-il/fix-letrec.go wrote `language/tree-il/fix-letrec.go' GUILEC language/tree-il/optimize.go wrote `language/tree-il/optimize.go' GUILEC language/tree-il/canonicalize.go wrote `language/tree-il/canonicalize.go' GUILEC language/tree-il/analyze.go wrote `language/tree-il/analyze.go' GUILEC language/tree-il/inline.go wrote `language/tree-il/inline.go' GUILEC language/tree-il/compile-glil.go wrote `language/tree-il/compile-glil.go' GUILEC language/tree-il/debug.go wrote `language/tree-il/debug.go' GUILEC language/tree-il/spec.go wrote `language/tree-il/spec.go' GUILEC language/glil/spec.go wrote `language/glil/spec.go' GUILEC language/glil/compile-assembly.go wrote `language/glil/compile-assembly.go' GUILEC language/assembly/spec.go wrote `language/assembly/spec.go' GUILEC language/assembly/compile-bytecode.go wrote `language/assembly/compile-bytecode.go' GUILEC language/assembly/decompile-bytecode.go wrote `language/assembly/decompile-bytecode.go' GUILEC language/assembly/disassemble.go wrote `language/assembly/disassemble.go' GUILEC language/bytecode/spec.go wrote `language/bytecode/spec.go' GUILEC language/objcode/spec.go wrote `language/objcode/spec.go' GUILEC language/value/spec.go wrote `language/value/spec.go' GUILEC language/scheme/spec.go wrote `language/scheme/spec.go' GUILEC language/scheme/compile-tree-il.go wrote `language/scheme/compile-tree-il.go' GUILEC language/scheme/decompile-tree-il.go wrote `language/scheme/decompile-tree-il.go' GUILEC system/base/pmatch.go wrote `system/base/pmatch.go' GUILEC system/base/syntax.go wrote `system/base/syntax.go' GUILEC system/base/compile.go wrote `system/base/compile.go' GUILEC system/base/language.go wrote `system/base/language.go' GUILEC system/base/lalr.go wrote `system/base/lalr.go' GUILEC system/base/message.go wrote `system/base/message.go' GUILEC system/base/target.go wrote `system/base/target.go' GUILEC system/base/ck.go wrote `system/base/ck.go' GUILEC ice-9/r4rs.go wrote `ice-9/r4rs.go' GUILEC ice-9/r5rs.go wrote `ice-9/r5rs.go' GUILEC ice-9/deprecated.go ice-9/deprecated.scm:119:18: warning: possibly unbound variable `c-registered-modules' ice-9/deprecated.scm:120:4: warning: possibly unbound variable `c-clear-registered-modules' ice-9/deprecated.scm:904:8: warning: possibly unbound variable `standard-eval-closure' wrote `ice-9/deprecated.go' GUILEC ice-9/and-let-star.go wrote `ice-9/and-let-star.go' GUILEC ice-9/binary-ports.go wrote `ice-9/binary-ports.go' GUILEC ice-9/calling.go wrote `ice-9/calling.go' GUILEC ice-9/command-line.go wrote `ice-9/command-line.go' GUILEC ice-9/common-list.go wrote `ice-9/common-list.go' GUILEC ice-9/control.go wrote `ice-9/control.go' GUILEC ice-9/curried-definitions.go wrote `ice-9/curried-definitions.go' GUILEC ice-9/debug.go wrote `ice-9/debug.go' GUILEC ice-9/documentation.go wrote `ice-9/documentation.go' GUILEC ice-9/eval-string.go wrote `ice-9/eval-string.go' GUILEC ice-9/expect.go wrote `ice-9/expect.go' GUILEC ice-9/format.go wrote `ice-9/format.go' GUILEC ice-9/futures.go wrote `ice-9/futures.go' GUILEC ice-9/getopt-long.go wrote `ice-9/getopt-long.go' GUILEC ice-9/hcons.go wrote `ice-9/hcons.go' GUILEC ice-9/i18n.go wrote `ice-9/i18n.go' GUILEC ice-9/iconv.go wrote `ice-9/iconv.go' GUILEC ice-9/lineio.go wrote `ice-9/lineio.go' GUILEC ice-9/ls.go wrote `ice-9/ls.go' GUILEC ice-9/mapping.go wrote `ice-9/mapping.go' GUILEC ice-9/match.go wrote `ice-9/match.go' GUILEC ice-9/networking.go ice-9/networking.scm:23:29: warning: possibly unbound variable `gethost' ice-9/networking.scm:24:29: warning: possibly unbound variable `gethost' ice-9/networking.scm:26:28: warning: possibly unbound variable `getnet' ice-9/networking.scm:27:28: warning: possibly unbound variable `getnet' ice-9/networking.scm:29:30: warning: possibly unbound variable `getproto' ice-9/networking.scm:30:32: warning: possibly unbound variable `getproto' ice-9/networking.scm:32:35: warning: possibly unbound variable `getserv' ice-9/networking.scm:33:35: warning: possibly unbound variable `getserv' ice-9/networking.scm:37:6: warning: possibly unbound variable `sethost' ice-9/networking.scm:38:6: warning: possibly unbound variable `sethost' ice-9/networking.scm:41:6: warning: possibly unbound variable `setnet' ice-9/networking.scm:42:6: warning: possibly unbound variable `setnet' ice-9/networking.scm:45:6: warning: possibly unbound variable `setproto' ice-9/networking.scm:46:6: warning: possibly unbound variable `setproto' ice-9/networking.scm:49:6: warning: possibly unbound variable `setserv' ice-9/networking.scm:50:6: warning: possibly unbound variable `setserv' ice-9/networking.scm:52:21: warning: possibly unbound variable `gethost' ice-9/networking.scm:53:20: warning: possibly unbound variable `getnet' ice-9/networking.scm:54:22: warning: possibly unbound variable `getproto' ice-9/networking.scm:55:21: warning: possibly unbound variable `getserv' ice-9/networking.scm:57:21: warning: possibly unbound variable `sethost' ice-9/networking.scm:58:20: warning: possibly unbound variable `setnet' ice-9/networking.scm:59:22: warning: possibly unbound variable `setproto' ice-9/networking.scm:60:21: warning: possibly unbound variable `setserv' wrote `ice-9/networking.go' GUILEC ice-9/null.go wrote `ice-9/null.go' GUILEC ice-9/occam-channel.go wrote `ice-9/occam-channel.go' GUILEC ice-9/optargs.go wrote `ice-9/optargs.go' GUILEC ice-9/poe.go wrote `ice-9/poe.go' GUILEC ice-9/poll.go wrote `ice-9/poll.go' GUILEC ice-9/posix.go ice-9/posix.scm:63:19: warning: possibly unbound variable `getpw' ice-9/posix.scm:64:19: warning: possibly unbound variable `setpw' ice-9/posix.scm:65:19: warning: possibly unbound variable `setpw' ice-9/posix.scm:67:24: warning: possibly unbound variable `getpw' ice-9/posix.scm:68:23: warning: possibly unbound variable `getpw' ice-9/posix.scm:70:19: warning: possibly unbound variable `getgr' ice-9/posix.scm:71:19: warning: possibly unbound variable `setgr' ice-9/posix.scm:72:19: warning: possibly unbound variable `setgr' ice-9/posix.scm:74:24: warning: possibly unbound variable `getgr' ice-9/posix.scm:75:22: warning: possibly unbound variable `getgr' wrote `ice-9/posix.go' GUILEC ice-9/q.go wrote `ice-9/q.go' GUILEC ice-9/rdelim.go wrote `ice-9/rdelim.go' GUILEC ice-9/receive.go wrote `ice-9/receive.go' GUILEC ice-9/regex.go wrote `ice-9/regex.go' GUILEC ice-9/runq.go wrote `ice-9/runq.go' ice-9/runq.scm:93:8: warning: possibly unbound variable `apply-to-args' GUILEC ice-9/rw.go wrote `ice-9/rw.go' GUILEC ice-9/safe-r5rs.go wrote `ice-9/safe-r5rs.go' GUILEC ice-9/safe.go wrote `ice-9/safe.go' GUILEC ice-9/save-stack.go wrote `ice-9/save-stack.go' GUILEC ice-9/scm-style-repl.go wrote `ice-9/scm-style-repl.go' GUILEC ice-9/session.go ice-9/session.scm:241:11: warning: non-literal format string wrote `ice-9/session.go' GUILEC ice-9/slib.go wrote `ice-9/slib.go' GUILEC ice-9/stack-catch.go wrote `ice-9/stack-catch.go' GUILEC ice-9/streams.go wrote `ice-9/streams.go' GUILEC ice-9/string-fun.go wrote `ice-9/string-fun.go' GUILEC ice-9/syncase.go wrote `ice-9/syncase.go' GUILEC ice-9/threads.go wrote `ice-9/threads.go' GUILEC ice-9/top-repl.go wrote `ice-9/top-repl.go' GUILEC ice-9/buffered-input.go wrote `ice-9/buffered-input.go' GUILEC ice-9/time.go ice-9/time.scm:37:20: warning: possibly unbound variable `times' ice-9/time.scm:39:18: warning: possibly unbound variable `times' wrote `ice-9/time.go' GUILEC ice-9/history.go wrote `ice-9/history.go' GUILEC ice-9/channel.go wrote `ice-9/channel.go' GUILEC ice-9/pretty-print.go wrote `ice-9/pretty-print.go' GUILEC ice-9/ftw.go ice-9/ftw.scm:256:13: warning: possibly unbound variable `getuid' ice-9/ftw.scm:257:13: warning: possibly unbound variable `getgid' ice-9/ftw.scm:284:35: warning: possibly unbound variable `lstat' ice-9/ftw.scm:307:46: warning: possibly unbound variable `getuid' ice-9/ftw.scm:307:55: warning: possibly unbound variable `getgid' ice-9/ftw.scm:327:44: warning: possibly unbound variable `lstat' ice-9/ftw.scm:353:52: warning: possibly unbound variable `getuid' ice-9/ftw.scm:353:61: warning: possibly unbound variable `getgid' ice-9/ftw.scm:399:0: warning: possibly unbound variable `lstat' ice-9/ftw.scm:493:0: warning: possibly unbound variable `lstat' ice-9/ftw.scm:565:9: warning: possibly unbound variable `lstat' wrote `ice-9/ftw.go' GUILEC ice-9/gap-buffer.go wrote `ice-9/gap-buffer.go' GUILEC ice-9/weak-vector.go wrote `ice-9/weak-vector.go' GUILEC ice-9/list.go wrote `ice-9/list.go' GUILEC ice-9/serialize.go wrote `ice-9/serialize.go' GUILEC ice-9/local-eval.go wrote `ice-9/local-eval.go' GUILEC srfi/srfi-2.go wrote `srfi/srfi-2.go' GUILEC srfi/srfi-4.go wrote `srfi/srfi-4.go' GUILEC srfi/srfi-4/gnu.go wrote `srfi/srfi-4/gnu.go' GUILEC srfi/srfi-6.go wrote `srfi/srfi-6.go' GUILEC srfi/srfi-8.go wrote `srfi/srfi-8.go' GUILEC srfi/srfi-9.go wrote `srfi/srfi-9.go' GUILEC srfi/srfi-9/gnu.go wrote `srfi/srfi-9/gnu.go' GUILEC srfi/srfi-10.go wrote `srfi/srfi-10.go' GUILEC srfi/srfi-11.go wrote `srfi/srfi-11.go' GUILEC srfi/srfi-13.go wrote `srfi/srfi-13.go' GUILEC srfi/srfi-14.go wrote `srfi/srfi-14.go' GUILEC srfi/srfi-16.go wrote `srfi/srfi-16.go' GUILEC srfi/srfi-17.go wrote `srfi/srfi-17.go' GUILEC srfi/srfi-18.go wrote `srfi/srfi-18.go' GUILEC srfi/srfi-19.go wrote `srfi/srfi-19.go' GUILEC srfi/srfi-26.go wrote `srfi/srfi-26.go' GUILEC srfi/srfi-27.go wrote `srfi/srfi-27.go' GUILEC srfi/srfi-31.go wrote `srfi/srfi-31.go' GUILEC srfi/srfi-34.go wrote `srfi/srfi-34.go' GUILEC srfi/srfi-35.go wrote `srfi/srfi-35.go' GUILEC srfi/srfi-37.go wrote `srfi/srfi-37.go' GUILEC srfi/srfi-38.go wrote `srfi/srfi-38.go' GUILEC srfi/srfi-42.go wrote `srfi/srfi-42.go' GUILEC srfi/srfi-39.go wrote `srfi/srfi-39.go' GUILEC srfi/srfi-45.go wrote `srfi/srfi-45.go' GUILEC srfi/srfi-60.go wrote `srfi/srfi-60.go' GUILEC srfi/srfi-67.go wrote `srfi/srfi-67.go' GUILEC srfi/srfi-69.go wrote `srfi/srfi-69.go' GUILEC srfi/srfi-88.go wrote `srfi/srfi-88.go' GUILEC srfi/srfi-98.go wrote `srfi/srfi-98.go' GUILEC rnrs/base.go wrote `rnrs/base.go' GUILEC rnrs/conditions.go wrote `rnrs/conditions.go' GUILEC rnrs/control.go wrote `rnrs/control.go' GUILEC rnrs/enums.go wrote `rnrs/enums.go' GUILEC rnrs/eval.go wrote `rnrs/eval.go' GUILEC rnrs/exceptions.go wrote `rnrs/exceptions.go' GUILEC rnrs/files.go wrote `rnrs/files.go' GUILEC rnrs/hashtables.go wrote `rnrs/hashtables.go' GUILEC rnrs/lists.go wrote `rnrs/lists.go' GUILEC rnrs/mutable-pairs.go wrote `rnrs/mutable-pairs.go' GUILEC rnrs/mutable-strings.go wrote `rnrs/mutable-strings.go' GUILEC rnrs/programs.go wrote `rnrs/programs.go' GUILEC rnrs/r5rs.go wrote `rnrs/r5rs.go' GUILEC rnrs/sorting.go wrote `rnrs/sorting.go' GUILEC rnrs/syntax-case.go wrote `rnrs/syntax-case.go' GUILEC rnrs/unicode.go wrote `rnrs/unicode.go' GUILEC rnrs/arithmetic/bitwise.go wrote `rnrs/arithmetic/bitwise.go' GUILEC rnrs/arithmetic/fixnums.go wrote `rnrs/arithmetic/fixnums.go' GUILEC rnrs/arithmetic/flonums.go wrote `rnrs/arithmetic/flonums.go' GUILEC rnrs/bytevectors.go wrote `rnrs/bytevectors.go' GUILEC rnrs/io/simple.go wrote `rnrs/io/simple.go' GUILEC rnrs/io/ports.go wrote `rnrs/io/ports.go' GUILEC rnrs/records/inspection.go wrote `rnrs/records/inspection.go' GUILEC rnrs/records/procedural.go wrote `rnrs/records/procedural.go' GUILEC rnrs/records/syntactic.go wrote `rnrs/records/syntactic.go' GUILEC rnrs.go wrote `rnrs.go' GUILEC oop/goops.go wrote `oop/goops.go' GUILEC oop/goops/active-slot.go wrote `oop/goops/active-slot.go' GUILEC oop/goops/compile.go wrote `oop/goops/compile.go' GUILEC oop/goops/composite-slot.go wrote `oop/goops/composite-slot.go' GUILEC oop/goops/describe.go wrote `oop/goops/describe.go' GUILEC oop/goops/dispatch.go wrote `oop/goops/dispatch.go' GUILEC oop/goops/internal.go wrote `oop/goops/internal.go' GUILEC oop/goops/save.go wrote `oop/goops/save.go' GUILEC oop/goops/stklos.go wrote `oop/goops/stklos.go' GUILEC oop/goops/util.go wrote `oop/goops/util.go' GUILEC oop/goops/accessors.go wrote `oop/goops/accessors.go' GUILEC oop/goops/simple.go wrote `oop/goops/simple.go' GUILEC system/vm/inspect.go wrote `system/vm/inspect.go' GUILEC system/vm/coverage.go wrote `system/vm/coverage.go' GUILEC system/vm/frame.go wrote `system/vm/frame.go' GUILEC system/vm/instruction.go wrote `system/vm/instruction.go' GUILEC system/vm/objcode.go wrote `system/vm/objcode.go' GUILEC system/vm/program.go wrote `system/vm/program.go' GUILEC system/vm/trace.go wrote `system/vm/trace.go' GUILEC system/vm/traps.go wrote `system/vm/traps.go' GUILEC system/vm/trap-state.go wrote `system/vm/trap-state.go' GUILEC system/vm/vm.go wrote `system/vm/vm.go' GUILEC system/foreign.go wrote `system/foreign.go' GUILEC system/xref.go wrote `system/xref.go' GUILEC system/repl/debug.go wrote `system/repl/debug.go' GUILEC system/repl/error-handling.go wrote `system/repl/error-handling.go' GUILEC system/repl/common.go system/repl/common.scm:147:25: warning: possibly unbound variable `times' wrote `system/repl/common.go' GUILEC system/repl/command.go system/repl/command.scm:885:18: warning: possibly unbound variable `times' wrote `system/repl/command.go' GUILEC system/repl/repl.go wrote `system/repl/repl.go' GUILEC system/repl/server.go wrote `system/repl/server.go' system/repl/server.scm:57:41: warning: possibly unbound variable `inet-aton' system/repl/server.scm:106:2: warning: possibly unbound variable `SIGPIPE' GUILEC scripts/autofrisk.go wrote `scripts/autofrisk.go' ;;; Failed to autoload open-input-pipe in (ice-9 popen): ;;; ERROR: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." scripts/autofrisk.scm:185:2: warning: non-literal format string GUILEC scripts/compile.go wrote `scripts/compile.go' GUILEC scripts/disassemble.go wrote `scripts/disassemble.go' GUILEC scripts/display-commentary.go wrote `scripts/display-commentary.go' GUILEC scripts/doc-snarf.go wrote `scripts/doc-snarf.go' GUILEC scripts/frisk.go wrote `scripts/frisk.go' GUILEC scripts/generate-autoload.go wrote `scripts/generate-autoload.go' GUILEC scripts/help.go wrote `scripts/help.go' GUILEC scripts/lint.go wrote `scripts/lint.go' GUILEC scripts/list.go wrote `scripts/list.go' GUILEC scripts/punify.go wrote `scripts/punify.go' GUILEC scripts/read-scheme-source.go wrote `scripts/read-scheme-source.go' GUILEC scripts/read-text-outline.go wrote `scripts/read-text-outline.go' GUILEC scripts/use2dot.go wrote `scripts/use2dot.go' GUILEC scripts/snarf-check-and-output-texi.go wrote `scripts/snarf-check-and-output-texi.go' GUILEC scripts/summarize-guile-TODO.go wrote `scripts/summarize-guile-TODO.go' GUILEC scripts/scan-api.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 1e818e0 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: scripts/scan-api.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g164}#) 1f64870>] 180: 16 [lp # # # ...] In ice-9/boot-9.scm: 2207: 15 [save-module-excursion #<procedure 2136258 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 2136258 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # :use-module # ...)) () ((top)) ...] 976: 12 [scan ((define-module (scripts scan-api) :use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2757: 9 [define-module* (scripts scan-api) #:filename ...] 2732: 8 [resolve-imports (((ice-9 popen)) ((ice-9 rdelim)) ((ice-9 regex)))] 2670: 7 [resolve-interface (ice-9 popen) #:select ...] 2595: 6 [#<procedure 1d84e80 at ice-9/boot-9.scm:2583:4 (name #:optional autoload version #:key ensure)> # ...] 2868: 5 [try-module-autoload (ice-9 popen) #f] 2207: 4 [save-module-excursion #<procedure 218e990 at ice-9/boot-9.scm:2869:17 ()>] 2888: 3 [#<procedure 218e990 at ice-9/boot-9.scm:2869:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1e81880 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1e81880 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." GUILEC scripts/api-diff.go wrote `scripts/api-diff.go' GUILEC scripts/read-rfc822.go wrote `scripts/read-rfc822.go' GUILEC scripts/snarf-guile-m4-docs.go wrote `scripts/snarf-guile-m4-docs.go' GUILEC language/ecmascript/tokenize.go wrote `language/ecmascript/tokenize.go' GUILEC language/ecmascript/parse.go %% Shift/Reduce conflict (shift 36, reduce 82) on 'lbrace' in state 437 %% Shift/Reduce conflict (shift 35, reduce 82) on 'lparen' in state 437 %% Shift/Reduce conflict (shift 34, reduce 82) on 'lbracket' in state 437 %% Shift/Reduce conflict (shift 33, reduce 82) on 'dot' in state 437 %% Shift/Reduce conflict (shift 32, reduce 82) on 'semicolon' in state 437 %% Shift/Reduce conflict (shift 31, reduce 82) on '+' in state 437 %% Shift/Reduce conflict (shift 30, reduce 82) on '-' in state 437 %% Shift/Reduce conflict (shift 29, reduce 82) on '++' in state 437 %% Shift/Reduce conflict (shift 28, reduce 82) on '--' in state 437 %% Shift/Reduce conflict (shift 27, reduce 82) on '!' in state 437 %% Shift/Reduce conflict (shift 26, reduce 82) on '~' in state 437 %% Shift/Reduce conflict (shift 25, reduce 82) on 'break' in state 437 %% Shift/Reduce conflict (shift 24, reduce 82) on 'new' in state 437 %% Shift/Reduce conflict (shift 23, reduce 82) on 'var' in state 437 %% Shift/Reduce conflict (shift 22, reduce 82) on 'return' in state 437 %% Shift/Reduce conflict (shift 21, reduce 82) on 'void' in state 437 %% Shift/Reduce conflict (shift 20, reduce 82) on 'for' in state 437 %% Shift/Reduce conflict (shift 19, reduce 82) on 'switch' in state 437 %% Shift/Reduce conflict (shift 18, reduce 82) on 'while' in state 437 %% Shift/Reduce conflict (shift 17, reduce 82) on 'continue' in state 437 %% Shift/Reduce conflict (shift 82, reduce 82) on 'function' in state 437 %% Shift/Reduce conflict (shift 15, reduce 82) on 'this' in state 437 %% Shift/Reduce conflict (shift 14, reduce 82) on 'with' in state 437 %% Shift/Reduce conflict (shift 13, reduce 82) on 'if' in state 437 %% Shift/Reduce conflict (shift 12, reduce 82) on 'throw' in state 437 %% Shift/Reduce conflict (shift 11, reduce 82) on 'delete' in state 437 %% Shift/Reduce conflict (shift 10, reduce 82) on 'try' in state 437 %% Shift/Reduce conflict (shift 9, reduce 82) on 'do' in state 437 %% Shift/Reduce conflict (shift 8, reduce 82) on 'typeof' in state 437 %% Shift/Reduce conflict (shift 7, reduce 82) on 'null' in state 437 %% Shift/Reduce conflict (shift 6, reduce 82) on 'true' in state 437 %% Shift/Reduce conflict (shift 5, reduce 82) on 'false' in state 437 %% Shift/Reduce conflict (shift 4, reduce 82) on 'Identifier' in state 437 %% Shift/Reduce conflict (shift 3, reduce 82) on 'StringLiteral' in state 437 %% Shift/Reduce conflict (shift 2, reduce 82) on 'NumericLiteral' in state 437 %% Shift/Reduce conflict (shift 1, reduce 82) on 'RegexpLiteral' in state 437 %% Shift/Reduce conflict (shift 36, reduce 81) on 'lbrace' in state 424 %% Shift/Reduce conflict (shift 35, reduce 81) on 'lparen' in state 424 %% Shift/Reduce conflict (shift 34, reduce 81) on 'lbracket' in state 424 %% Shift/Reduce conflict (shift 33, reduce 81) on 'dot' in state 424 %% Shift/Reduce conflict (shift 32, reduce 81) on 'semicolon' in state 424 %% Shift/Reduce conflict (shift 31, reduce 81) on '+' in state 424 %% Shift/Reduce conflict (shift 30, reduce 81) on '-' in state 424 %% Shift/Reduce conflict (shift 29, reduce 81) on '++' in state 424 %% Shift/Reduce conflict (shift 28, reduce 81) on '--' in state 424 %% Shift/Reduce conflict (shift 27, reduce 81) on '!' in state 424 %% Shift/Reduce conflict (shift 26, reduce 81) on '~' in state 424 %% Shift/Reduce conflict (shift 25, reduce 81) on 'break' in state 424 %% Shift/Reduce conflict (shift 24, reduce 81) on 'new' in state 424 %% Shift/Reduce conflict (shift 23, reduce 81) on 'var' in state 424 %% Shift/Reduce conflict (shift 22, reduce 81) on 'return' in state 424 %% Shift/Reduce conflict (shift 21, reduce 81) on 'void' in state 424 %% Shift/Reduce conflict (shift 20, reduce 81) on 'for' in state 424 %% Shift/Reduce conflict (shift 19, reduce 81) on 'switch' in state 424 %% Shift/Reduce conflict (shift 18, reduce 81) on 'while' in state 424 %% Shift/Reduce conflict (shift 17, reduce 81) on 'continue' in state 424 %% Shift/Reduce conflict (shift 82, reduce 81) on 'function' in state 424 %% Shift/Reduce conflict (shift 15, reduce 81) on 'this' in state 424 %% Shift/Reduce conflict (shift 14, reduce 81) on 'with' in state 424 %% Shift/Reduce conflict (shift 13, reduce 81) on 'if' in state 424 %% Shift/Reduce conflict (shift 12, reduce 81) on 'throw' in state 424 %% Shift/Reduce conflict (shift 11, reduce 81) on 'delete' in state 424 %% Shift/Reduce conflict (shift 10, reduce 81) on 'try' in state 424 %% Shift/Reduce conflict (shift 9, reduce 81) on 'do' in state 424 %% Shift/Reduce conflict (shift 8, reduce 81) on 'typeof' in state 424 %% Shift/Reduce conflict (shift 7, reduce 81) on 'null' in state 424 %% Shift/Reduce conflict (shift 6, reduce 81) on 'true' in state 424 %% Shift/Reduce conflict (shift 5, reduce 81) on 'false' in state 424 %% Shift/Reduce conflict (shift 4, reduce 81) on 'Identifier' in state 424 %% Shift/Reduce conflict (shift 3, reduce 81) on 'StringLiteral' in state 424 %% Shift/Reduce conflict (shift 2, reduce 81) on 'NumericLiteral' in state 424 %% Shift/Reduce conflict (shift 1, reduce 81) on 'RegexpLiteral' in state 424 %% Shift/Reduce conflict (shift 36, reduce 84) on 'lbrace' in state 423 %% Shift/Reduce conflict (shift 35, reduce 84) on 'lparen' in state 423 %% Shift/Reduce conflict (shift 34, reduce 84) on 'lbracket' in state 423 %% Shift/Reduce conflict (shift 33, reduce 84) on 'dot' in state 423 %% Shift/Reduce conflict (shift 32, reduce 84) on 'semicolon' in state 423 %% Shift/Reduce conflict (shift 31, reduce 84) on '+' in state 423 %% Shift/Reduce conflict (shift 30, reduce 84) on '-' in state 423 %% Shift/Reduce conflict (shift 29, reduce 84) on '++' in state 423 %% Shift/Reduce conflict (shift 28, reduce 84) on '--' in state 423 %% Shift/Reduce conflict (shift 27, reduce 84) on '!' in state 423 %% Shift/Reduce conflict (shift 26, reduce 84) on '~' in state 423 %% Shift/Reduce conflict (shift 25, reduce 84) on 'break' in state 423 %% Shift/Reduce conflict (shift 24, reduce 84) on 'new' in state 423 %% Shift/Reduce conflict (shift 23, reduce 84) on 'var' in state 423 %% Shift/Reduce conflict (shift 22, reduce 84) on 'return' in state 423 %% Shift/Reduce conflict (shift 21, reduce 84) on 'void' in state 423 %% Shift/Reduce conflict (shift 20, reduce 84) on 'for' in state 423 %% Shift/Reduce conflict (shift 19, reduce 84) on 'switch' in state 423 %% Shift/Reduce conflict (shift 18, reduce 84) on 'while' in state 423 %% Shift/Reduce conflict (shift 17, reduce 84) on 'continue' in state 423 %% Shift/Reduce conflict (shift 82, reduce 84) on 'function' in state 423 %% Shift/Reduce conflict (shift 15, reduce 84) on 'this' in state 423 %% Shift/Reduce conflict (shift 14, reduce 84) on 'with' in state 423 %% Shift/Reduce conflict (shift 13, reduce 84) on 'if' in state 423 %% Shift/Reduce conflict (shift 12, reduce 84) on 'throw' in state 423 %% Shift/Reduce conflict (shift 11, reduce 84) on 'delete' in state 423 %% Shift/Reduce conflict (shift 10, reduce 84) on 'try' in state 423 %% Shift/Reduce conflict (shift 9, reduce 84) on 'do' in state 423 %% Shift/Reduce conflict (shift 8, reduce 84) on 'typeof' in state 423 %% Shift/Reduce conflict (shift 7, reduce 84) on 'null' in state 423 %% Shift/Reduce conflict (shift 6, reduce 84) on 'true' in state 423 %% Shift/Reduce conflict (shift 5, reduce 84) on 'false' in state 423 %% Shift/Reduce conflict (shift 4, reduce 84) on 'Identifier' in state 423 %% Shift/Reduce conflict (shift 3, reduce 84) on 'StringLiteral' in state 423 %% Shift/Reduce conflict (shift 2, reduce 84) on 'NumericLiteral' in state 423 %% Shift/Reduce conflict (shift 1, reduce 84) on 'RegexpLiteral' in state 423 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '--' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '++' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '-' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '+' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'semicolon' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'dot' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lbracket' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lparen' in state 422 %% Shift/Reduce conflict (shift 36, reduce 83) on 'lbrace' in state 400 %% Shift/Reduce conflict (shift 35, reduce 83) on 'lparen' in state 400 %% Shift/Reduce conflict (shift 34, reduce 83) on 'lbracket' in state 400 %% Shift/Reduce conflict (shift 33, reduce 83) on 'dot' in state 400 %% Shift/Reduce conflict (shift 32, reduce 83) on 'semicolon' in state 400 %% Shift/Reduce conflict (shift 31, reduce 83) on '+' in state 400 %% Shift/Reduce conflict (shift 30, reduce 83) on '-' in state 400 %% Shift/Reduce conflict (shift 29, reduce 83) on '++' in state 400 %% Shift/Reduce conflict (shift 28, reduce 83) on '--' in state 400 %% Shift/Reduce conflict (shift 27, reduce 83) on '!' in state 400 %% Shift/Reduce conflict (shift 26, reduce 83) on '~' in state 400 %% Shift/Reduce conflict (shift 25, reduce 83) on 'break' in state 400 %% Shift/Reduce conflict (shift 24, reduce 83) on 'new' in state 400 %% Shift/Reduce conflict (shift 23, reduce 83) on 'var' in state 400 %% Shift/Reduce conflict (shift 22, reduce 83) on 'return' in state 400 %% Shift/Reduce conflict (shift 21, reduce 83) on 'void' in state 400 %% Shift/Reduce conflict (shift 20, reduce 83) on 'for' in state 400 %% Shift/Reduce conflict (shift 19, reduce 83) on 'switch' in state 400 %% Shift/Reduce conflict (shift 18, reduce 83) on 'while' in state 400 %% Shift/Reduce conflict (shift 17, reduce 83) on 'continue' in state 400 %% Shift/Reduce conflict (shift 82, reduce 83) on 'function' in state 400 %% Shift/Reduce conflict (shift 15, reduce 83) on 'this' in state 400 %% Shift/Reduce conflict (shift 14, reduce 83) on 'with' in state 400 %% Shift/Reduce conflict (shift 13, reduce 83) on 'if' in state 400 %% Shift/Reduce conflict (shift 12, reduce 83) on 'throw' in state 400 %% Shift/Reduce conflict (shift 11, reduce 83) on 'delete' in state 400 %% Shift/Reduce conflict (shift 10, reduce 83) on 'try' in state 400 %% Shift/Reduce conflict (shift 9, reduce 83) on 'do' in state 400 %% Shift/Reduce conflict (shift 8, reduce 83) on 'typeof' in state 400 %% Shift/Reduce conflict (shift 7, reduce 83) on 'null' in state 400 %% Shift/Reduce conflict (shift 6, reduce 83) on 'true' in state 400 %% Shift/Reduce conflict (shift 5, reduce 83) on 'false' in state 400 %% Shift/Reduce conflict (shift 4, reduce 83) on 'Identifier' in state 400 %% Shift/Reduce conflict (shift 3, reduce 83) on 'StringLiteral' in state 400 %% Shift/Reduce conflict (shift 2, reduce 83) on 'NumericLiteral' in state 400 %% Shift/Reduce conflict (shift 1, reduce 83) on 'RegexpLiteral' in state 400 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '--' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '++' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '-' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '+' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'semicolon' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'dot' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lbracket' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lparen' in state 397 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 393 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 393 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 393 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 393 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 393 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 393 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 393 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 393 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 393 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 393 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 393 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 393 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 393 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 393 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 393 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 393 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 393 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 393 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 393 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 393 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 393 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 393 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 393 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 393 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 393 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 393 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 393 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 393 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 393 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 393 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 393 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 393 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 393 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 393 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 393 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 393 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 369 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 369 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 369 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 369 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 369 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 369 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 369 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 369 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 369 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 369 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 369 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 369 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 369 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 369 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 369 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 369 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 369 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 369 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 369 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 369 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 369 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 369 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 369 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 369 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 369 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 369 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 369 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 369 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 369 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 369 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 369 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 369 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 369 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 369 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 369 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 369 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 363 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 363 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 363 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 363 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 363 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 363 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 363 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 363 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 363 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 363 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 363 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 363 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 363 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 363 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 363 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 363 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 363 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 363 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 363 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 363 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 363 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 363 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 363 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 363 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 363 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 363 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 363 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 363 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 363 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 363 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 363 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 363 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 363 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 363 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 363 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 363 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 338 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 338 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 338 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 338 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 338 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 338 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 338 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 338 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 338 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 338 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 338 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 338 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 338 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 338 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 326 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 326 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 326 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 326 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 326 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 326 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 326 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 326 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 326 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 326 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 326 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 326 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 326 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 326 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 326 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 326 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 326 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 326 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 326 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 326 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 326 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 326 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 326 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 326 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 326 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 326 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 326 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 326 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 326 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 326 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 326 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 326 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 326 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 326 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 326 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 326 %% Shift/Reduce conflict (shift 36, reduce 16) on 'lbrace' in state 324 %% Shift/Reduce conflict (shift 35, reduce 16) on 'lparen' in state 324 %% Shift/Reduce conflict (shift 34, reduce 16) on 'lbracket' in state 324 %% Shift/Reduce conflict (shift 33, reduce 16) on 'dot' in state 324 %% Shift/Reduce conflict (shift 32, reduce 16) on 'semicolon' in state 324 %% Shift/Reduce conflict (shift 31, reduce 16) on '+' in state 324 %% Shift/Reduce conflict (shift 30, reduce 16) on '-' in state 324 %% Shift/Reduce conflict (shift 29, reduce 16) on '++' in state 324 %% Shift/Reduce conflict (shift 28, reduce 16) on '--' in state 324 %% Shift/Reduce conflict (shift 27, reduce 16) on '!' in state 324 %% Shift/Reduce conflict (shift 26, reduce 16) on '~' in state 324 %% Shift/Reduce conflict (shift 25, reduce 16) on 'break' in state 324 %% Shift/Reduce conflict (shift 24, reduce 16) on 'new' in state 324 %% Shift/Reduce conflict (shift 23, reduce 16) on 'var' in state 324 %% Shift/Reduce conflict (shift 22, reduce 16) on 'return' in state 324 %% Shift/Reduce conflict (shift 21, reduce 16) on 'void' in state 324 %% Shift/Reduce conflict (shift 20, reduce 16) on 'for' in state 324 %% Shift/Reduce conflict (shift 19, reduce 16) on 'switch' in state 324 %% Shift/Reduce conflict (shift 18, reduce 16) on 'while' in state 324 %% Shift/Reduce conflict (shift 17, reduce 16) on 'continue' in state 324 %% Shift/Reduce conflict (shift 16, reduce 16) on 'function' in state 324 %% Shift/Reduce conflict (shift 15, reduce 16) on 'this' in state 324 %% Shift/Reduce conflict (shift 14, reduce 16) on 'with' in state 324 %% Shift/Reduce conflict (shift 13, reduce 16) on 'if' in state 324 %% Shift/Reduce conflict (shift 12, reduce 16) on 'throw' in state 324 %% Shift/Reduce conflict (shift 11, reduce 16) on 'delete' in state 324 %% Shift/Reduce conflict (shift 10, reduce 16) on 'try' in state 324 %% Shift/Reduce conflict (shift 9, reduce 16) on 'do' in state 324 %% Shift/Reduce conflict (shift 8, reduce 16) on 'typeof' in state 324 %% Shift/Reduce conflict (shift 7, reduce 16) on 'null' in state 324 %% Shift/Reduce conflict (shift 6, reduce 16) on 'true' in state 324 %% Shift/Reduce conflict (shift 5, reduce 16) on 'false' in state 324 %% Shift/Reduce conflict (shift 4, reduce 16) on 'Identifier' in state 324 %% Shift/Reduce conflict (shift 3, reduce 16) on 'StringLiteral' in state 324 %% Shift/Reduce conflict (shift 2, reduce 16) on 'NumericLiteral' in state 324 %% Shift/Reduce conflict (shift 1, reduce 16) on 'RegexpLiteral' in state 324 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 321 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 321 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 321 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 321 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 321 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 321 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 321 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 321 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 321 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 321 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 321 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 321 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 321 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 321 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 321 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 321 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 321 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 321 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 321 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 321 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 321 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 321 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 321 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 321 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 321 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 321 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 321 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 321 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 321 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 321 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 321 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 321 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 321 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 321 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 321 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 321 %% Shift/Reduce conflict (shift 367, reduce 49) on 'else' in state 319 %% Shift/Reduce conflict (shift 216, reduce 42) on '=' in state 279 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 274 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 274 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 274 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 274 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 274 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 274 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 274 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 274 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 274 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 274 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 274 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 274 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 274 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 274 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 274 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 274 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 274 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 274 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 274 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 274 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 274 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 274 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 274 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 274 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 274 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 274 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 274 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 274 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 274 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 274 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 274 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 274 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 274 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 274 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 274 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 274 %% Shift/Reduce conflict (shift 144, reduce 177) on 'in' in state 242 %% Shift/Reduce conflict (shift 144, reduce 178) on 'in' in state 241 %% Shift/Reduce conflict (shift 144, reduce 179) on 'in' in state 240 %% Shift/Reduce conflict (shift 144, reduce 180) on 'in' in state 239 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 214 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 214 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 214 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 214 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 214 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 214 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 214 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 214 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 214 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 214 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 214 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 214 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 214 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 214 %% Shift/Reduce conflict (shift 301, reduce 139) on 'in' in state 214 %% Shift/Reduce conflict (shift 188, reduce 87) on 'finally' in state 190 %% Shift/Reduce conflict (shift 80, reduce 119) on 'colon' in state 125 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 107 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 107 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 107 %% Shift/Reduce conflict (shift 216, reduce 40) on '=' in state 103 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 85 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 85 %% Shift/Reduce conflict (shift 36, reduce 2) on 'lbrace' in state 75 %% Shift/Reduce conflict (shift 35, reduce 2) on 'lparen' in state 75 %% Shift/Reduce conflict (shift 34, reduce 2) on 'lbracket' in state 75 %% Shift/Reduce conflict (shift 33, reduce 2) on 'dot' in state 75 %% Shift/Reduce conflict (shift 32, reduce 2) on 'semicolon' in state 75 %% Shift/Reduce conflict (shift 31, reduce 2) on '+' in state 75 %% Shift/Reduce conflict (shift 30, reduce 2) on '-' in state 75 %% Shift/Reduce conflict (shift 29, reduce 2) on '++' in state 75 %% Shift/Reduce conflict (shift 28, reduce 2) on '--' in state 75 %% Shift/Reduce conflict (shift 27, reduce 2) on '!' in state 75 %% Shift/Reduce conflict (shift 26, reduce 2) on '~' in state 75 %% Shift/Reduce conflict (shift 25, reduce 2) on 'break' in state 75 %% Shift/Reduce conflict (shift 24, reduce 2) on 'new' in state 75 %% Shift/Reduce conflict (shift 23, reduce 2) on 'var' in state 75 %% Shift/Reduce conflict (shift 22, reduce 2) on 'return' in state 75 %% Shift/Reduce conflict (shift 21, reduce 2) on 'void' in state 75 %% Shift/Reduce conflict (shift 20, reduce 2) on 'for' in state 75 %% Shift/Reduce conflict (shift 19, reduce 2) on 'switch' in state 75 %% Shift/Reduce conflict (shift 18, reduce 2) on 'while' in state 75 %% Shift/Reduce conflict (shift 17, reduce 2) on 'continue' in state 75 %% Shift/Reduce conflict (shift 16, reduce 2) on 'function' in state 75 %% Shift/Reduce conflict (shift 15, reduce 2) on 'this' in state 75 %% Shift/Reduce conflict (shift 14, reduce 2) on 'with' in state 75 %% Shift/Reduce conflict (shift 13, reduce 2) on 'if' in state 75 %% Shift/Reduce conflict (shift 12, reduce 2) on 'throw' in state 75 %% Shift/Reduce conflict (shift 11, reduce 2) on 'delete' in state 75 %% Shift/Reduce conflict (shift 10, reduce 2) on 'try' in state 75 %% Shift/Reduce conflict (shift 9, reduce 2) on 'do' in state 75 %% Shift/Reduce conflict (shift 8, reduce 2) on 'typeof' in state 75 %% Shift/Reduce conflict (shift 7, reduce 2) on 'null' in state 75 %% Shift/Reduce conflict (shift 6, reduce 2) on 'true' in state 75 %% Shift/Reduce conflict (shift 5, reduce 2) on 'false' in state 75 %% Shift/Reduce conflict (shift 4, reduce 2) on 'Identifier' in state 75 %% Shift/Reduce conflict (shift 3, reduce 2) on 'StringLiteral' in state 75 %% Shift/Reduce conflict (shift 2, reduce 2) on 'NumericLiteral' in state 75 %% Shift/Reduce conflict (shift 1, reduce 2) on 'RegexpLiteral' in state 75 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 56 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 56 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 56 %% Shift/Reduce conflict (shift 174, reduce 138) on 'lparen' in state 54 %% Shift/Reduce conflict (shift 173, reduce 138) on 'lbracket' in state 54 %% Shift/Reduce conflict (shift 172, reduce 138) on 'dot' in state 54 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 53 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 53 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 53 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 53 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 53 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 53 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 53 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 53 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 53 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 53 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 53 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 53 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 53 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 53 %% Shift/Reduce conflict (shift 153, reduce 159) on '+' in state 49 %% Shift/Reduce conflict (shift 152, reduce 159) on '-' in state 49 %% Shift/Reduce conflict (shift 144, reduce 176) on 'in' in state 47 wrote `language/ecmascript/parse.go' GUILEC language/ecmascript/impl.go wrote `language/ecmascript/impl.go' GUILEC language/ecmascript/base.go language/ecmascript/base.scm:227:22: warning: possibly unbound variable `Boolean' language/ecmascript/base.scm:228:21: warning: possibly unbound variable `String' language/ecmascript/base.scm:229:21: warning: possibly unbound variable `Number' wrote `language/ecmascript/base.go' GUILEC language/ecmascript/function.go wrote `language/ecmascript/function.go' language/ecmascript/function.scm:40:9: warning: possibly unbound variable `<js-array-object>' language/ecmascript/function.scm:44:43: warning: possibly unbound variable `js-array-vector' GUILEC language/ecmascript/array.go wrote `language/ecmascript/array.go' GUILEC language/ecmascript/compile-tree-il.go wrote `language/ecmascript/compile-tree-il.go' GUILEC language/ecmascript/spec.go wrote `language/ecmascript/spec.go' GUILEC language/elisp/lexer.go wrote `language/elisp/lexer.go' GUILEC language/elisp/parser.go wrote `language/elisp/parser.go' GUILEC language/elisp/bindings.go wrote `language/elisp/bindings.go' GUILEC language/elisp/compile-tree-il.go wrote `language/elisp/compile-tree-il.go' GUILEC language/elisp/runtime.go wrote `language/elisp/runtime.go' GUILEC language/elisp/runtime/function-slot.go WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `if' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let*' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `while' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `defmacro' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `quote' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `lambda' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `when' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `unless' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `cond' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `and' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `or' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `catch' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `max' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `min' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `abs' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1+}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1-}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `+' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `-' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `*' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `car' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cdr' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `length' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cons' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `list' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `make-list' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `append' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `reverse' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `copy-tree' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `apply' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `throw' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `not' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `eval' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `load' wrote `language/elisp/runtime/function-slot.go' GUILEC language/elisp/runtime/value-slot.go wrote `language/elisp/runtime/value-slot.go' GUILEC language/elisp/runtime/macros.go wrote `language/elisp/runtime/macros.go' GUILEC language/elisp/runtime/subrs.go wrote `language/elisp/runtime/subrs.go' GUILEC language/elisp/spec.go wrote `language/elisp/spec.go' GUILEC language/brainfuck/parse.go wrote `language/brainfuck/parse.go' GUILEC language/brainfuck/compile-scheme.go wrote `language/brainfuck/compile-scheme.go' GUILEC language/brainfuck/compile-tree-il.go wrote `language/brainfuck/compile-tree-il.go' GUILEC language/brainfuck/spec.go wrote `language/brainfuck/spec.go' GUILEC statprof.go wrote `statprof.go' statprof.scm:303:8: warning: possibly unbound variable `setitimer' statprof.scm:303:8: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:355:12: warning: possibly unbound variable `setitimer' statprof.scm:355:12: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:356:12: warning: possibly unbound variable `setitimer' statprof.scm:356:12: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:380:34: warning: possibly unbound variable `setitimer' statprof.scm:380:34: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:404:2: warning: possibly unbound variable `SIGPROF' GUILEC sxml/apply-templates.go wrote `sxml/apply-templates.go' GUILEC sxml/fold.go wrote `sxml/fold.go' GUILEC sxml/match.go wrote `sxml/match.go' GUILEC sxml/simple.go wrote `sxml/simple.go' GUILEC sxml/ssax/input-parse.go wrote `sxml/ssax/input-parse.go' GUILEC sxml/ssax.go wrote `sxml/ssax.go' GUILEC sxml/transform.go wrote `sxml/transform.go' GUILEC sxml/xpath.go wrote `sxml/xpath.go' GUILEC texinfo.go wrote `texinfo.go' GUILEC texinfo/docbook.go wrote `texinfo/docbook.go' GUILEC texinfo/html.go wrote `texinfo/html.go' GUILEC texinfo/indexing.go wrote `texinfo/indexing.go' GUILEC texinfo/string-utils.go wrote `texinfo/string-utils.go' GUILEC texinfo/plain-text.go wrote `texinfo/plain-text.go' GUILEC texinfo/reflection.go wrote `texinfo/reflection.go' GUILEC texinfo/serialize.go wrote `texinfo/serialize.go' GUILEC web/client.go wrote `web/client.go' GUILEC web/http.go wrote `web/http.go' GUILEC web/request.go wrote `web/request.go' GUILEC web/response.go wrote `web/response.go' GUILEC web/server.go wrote `web/server.go' GUILEC web/server/http.go web/server/http.scm:67:2: warning: possibly unbound variable `SIGPIPE' wrote `web/server/http.go' GUILEC web/uri.go wrote `web/uri.go' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' make[4]: Nothing to be done for `install-exec-am'. GUILEC scripts/scan-api.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 1e6b960 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: scripts/scan-api.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g164}#) 1f528b8>] 180: 16 [lp # # # ...] In ice-9/boot-9.scm: 2207: 15 [save-module-excursion #<procedure 2109738 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 2109738 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # :use-module # ...)) () ((top)) ...] 976: 12 [scan ((define-module (scripts scan-api) :use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2757: 9 [define-module* (scripts scan-api) #:filename ...] 2732: 8 [resolve-imports (((ice-9 popen)) ((ice-9 rdelim)) ((ice-9 regex)))] 2670: 7 [resolve-interface (ice-9 popen) #:select ...] 2595: 6 [#<procedure 1d53e10 at ice-9/boot-9.scm:2583:4 (name #:optional autoload version #:key ensure)> # ...] 2868: 5 [try-module-autoload (ice-9 popen) #f] 2207: 4 [save-module-excursion #<procedure 217bf90 at ice-9/boot-9.scm:2869:17 ()>] 2888: 3 [#<procedure 217bf90 at ice-9/boot-9.scm:2869:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1e6b900 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1e6b900 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0/' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/install -c -m 644 ice-9/psyntax-pp.scm ice-9/boot-9.scm ice-9/vlist.scm ice-9/r4rs.scm ice-9/r5rs.scm ice-9/deprecated.scm ice-9/and-let-star.scm ice-9/binary-ports.scm ice-9/calling.scm ice-9/command-line.scm ice-9/common-list.scm ice-9/control.scm ice-9/curried-definitions.scm ice-9/debug.scm ice-9/documentation.scm ice-9/eval-string.scm ice-9/expect.scm ice-9/format.scm ice-9/futures.scm ice-9/getopt-long.scm ice-9/hcons.scm ice-9/i18n.scm ice-9/iconv.scm ice-9/lineio.scm ice-9/ls.scm ice-9/mapping.scm ice-9/match.scm ice-9/networking.scm ice-9/null.scm ice-9/occam-channel.scm ice-9/optargs.scm ice-9/poe.scm ice-9/poll.scm ice-9/posix.scm ice-9/q.scm ice-9/rdelim.scm ice-9/receive.scm ice-9/regex.scm ice-9/runq.scm ice-9/rw.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml' /bin/install -c -m 644 sxml/apply-templates.scm sxml/fold.scm sxml/match.scm sxml/simple.scm sxml/ssax.scm sxml/transform.scm sxml/xpath.scm sxml/sxml-match.ss '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//system' /bin/install -c -m 644 system/foreign.scm system/xref.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//system' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-42' /bin/install -c -m 644 srfi/srfi-42/ec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-42' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//web' /bin/install -c -m 644 web/client.scm web/http.scm web/request.scm web/response.scm web/server.scm web/uri.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//web' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//scripts' /bin/install -c -m 644 scripts/autofrisk.scm scripts/compile.scm scripts/disassemble.scm scripts/display-commentary.scm scripts/doc-snarf.scm scripts/frisk.scm scripts/generate-autoload.scm scripts/help.scm scripts/lint.scm scripts/list.scm scripts/punify.scm scripts/read-scheme-source.scm scripts/read-text-outline.scm scripts/use2dot.scm scripts/snarf-check-and-output-texi.scm scripts/summarize-guile-TODO.scm scripts/scan-api.scm scripts/api-diff.scm scripts/read-rfc822.scm scripts/snarf-guile-m4-docs.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//scripts' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/scheme' /bin/install -c -m 644 language/scheme/spec.scm language/scheme/compile-tree-il.scm language/scheme/decompile-tree-il.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/scheme' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/glil' /bin/install -c -m 644 language/glil/spec.scm language/glil/compile-assembly.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/glil' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/tree-il' /bin/install -c -m 644 language/tree-il/peval.scm language/tree-il/cse.scm language/tree-il/primitives.scm language/tree-il/effects.scm language/tree-il/fix-letrec.scm language/tree-il/optimize.scm language/tree-il/canonicalize.scm language/tree-il/analyze.scm language/tree-il/inline.scm language/tree-il/compile-glil.scm language/tree-il/debug.scm language/tree-il/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/tree-il' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/value' /bin/install -c -m 644 language/value/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/value' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//web/server' /bin/install -c -m 644 web/server/http.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//web/server' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-4' /bin/install -c -m 644 srfi/srfi-4/gnu.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-4' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/objcode' /bin/install -c -m 644 language/objcode/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/objcode' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/brainfuck' /bin/install -c -m 644 language/brainfuck/parse.scm language/brainfuck/compile-scheme.scm language/brainfuck/compile-tree-il.scm language/brainfuck/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/brainfuck' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/repl' /bin/install -c -m 644 system/repl/debug.scm system/repl/error-handling.scm system/repl/common.scm system/repl/command.scm system/repl/repl.scm system/repl/server.scm system/repl/describe.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/repl' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/records' /bin/install -c -m 644 rnrs/records/inspection.scm rnrs/records/procedural.scm rnrs/records/syntactic.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/records' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/arithmetic' /bin/install -c -m 644 rnrs/arithmetic/bitwise.scm rnrs/arithmetic/fixnums.scm rnrs/arithmetic/flonums.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/arithmetic' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language' /bin/install -c -m 644 language/tree-il.scm language/glil.scm language/assembly.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/io' /bin/install -c -m 644 rnrs/io/simple.scm rnrs/io/ports.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/io' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/base' /bin/install -c -m 644 system/base/pmatch.scm system/base/syntax.scm system/base/compile.scm system/base/language.scm system/base/lalr.scm system/base/message.scm system/base/target.scm system/base/ck.scm system/base/lalr.upstream.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/base' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/install -c -m 644 ice-9/safe-r5rs.scm ice-9/safe.scm ice-9/save-stack.scm ice-9/scm-style-repl.scm ice-9/session.scm ice-9/slib.scm ice-9/stack-catch.scm ice-9/streams.scm ice-9/string-fun.scm ice-9/syncase.scm ice-9/threads.scm ice-9/top-repl.scm ice-9/buffered-input.scm ice-9/time.scm ice-9/history.scm ice-9/channel.scm ice-9/pretty-print.scm ice-9/ftw.scm ice-9/gap-buffer.scm ice-9/weak-vector.scm ice-9/list.scm ice-9/serialize.scm ice-9/local-eval.scm ice-9/match.upstream.scm ice-9/psyntax.scm ice-9/r6rs-libraries.scm ice-9/quasisyntax.scm ice-9/eval.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/install -c -m 644 rnrs.scm statprof.scm texinfo.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//.' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-67' /bin/install -c -m 644 srfi/srfi-67/compare.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-67' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml/ssax' /bin/install -c -m 644 sxml/ssax/input-parse.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml/ssax' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/vm' /bin/install -c -m 644 system/vm/inspect.scm system/vm/coverage.scm system/vm/frame.scm system/vm/instruction.scm system/vm/objcode.scm system/vm/program.scm system/vm/trace.scm system/vm/traps.scm system/vm/trap-state.scm system/vm/vm.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/vm' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs' /bin/install -c -m 644 rnrs/base.scm rnrs/conditions.scm rnrs/control.scm rnrs/enums.scm rnrs/eval.scm rnrs/exceptions.scm rnrs/files.scm rnrs/hashtables.scm rnrs/lists.scm rnrs/mutable-pairs.scm rnrs/mutable-strings.scm rnrs/programs.scm rnrs/r5rs.scm rnrs/sorting.scm rnrs/syntax-case.scm rnrs/unicode.scm rnrs/bytevectors.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/elisp/runtime' /bin/install -c -m 644 language/elisp/runtime/function-slot.scm language/elisp/runtime/value-slot.scm language/elisp/runtime/macros.scm language/elisp/runtime/subrs.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/elisp/runtime' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/elisp' /bin/install -c -m 644 language/elisp/lexer.scm language/elisp/parser.scm language/elisp/bindings.scm language/elisp/compile-tree-il.scm language/elisp/runtime.scm language/elisp/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/elisp' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/ecmascript' /bin/install -c -m 644 language/ecmascript/tokenize.scm language/ecmascript/parse.scm language/ecmascript/impl.scm language/ecmascript/base.scm language/ecmascript/function.scm language/ecmascript/array.scm language/ecmascript/compile-tree-il.scm language/ecmascript/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/ecmascript' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-9' /bin/install -c -m 644 srfi/srfi-9/gnu.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-9' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/assembly' /bin/install -c -m 644 language/assembly/spec.scm language/assembly/compile-bytecode.scm language/assembly/decompile-bytecode.scm language/assembly/disassemble.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/assembly' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml/upstream' /bin/install -c -m 644 sxml/upstream/SSAX.scm sxml/upstream/SXML-tree-trans.scm sxml/upstream/SXPath-old.scm sxml/upstream/assert.scm sxml/upstream/input-parse.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml/upstream' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//texinfo' /bin/install -c -m 644 texinfo/docbook.scm texinfo/html.scm texinfo/indexing.scm texinfo/string-utils.scm texinfo/plain-text.scm texinfo/reflection.scm texinfo/serialize.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//texinfo' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//oop' /bin/install -c -m 644 oop/goops.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//oop' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//oop/goops' /bin/install -c -m 644 oop/goops/active-slot.scm oop/goops/compile.scm oop/goops/composite-slot.scm oop/goops/describe.scm oop/goops/dispatch.scm oop/goops/internal.scm oop/goops/save.scm oop/goops/stklos.scm oop/goops/util.scm oop/goops/accessors.scm oop/goops/simple.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//oop/goops' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/bytecode' /bin/install -c -m 644 language/bytecode/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/bytecode' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi' /bin/install -c -m 644 srfi/srfi-1.scm srfi/srfi-2.scm srfi/srfi-4.scm srfi/srfi-6.scm srfi/srfi-8.scm srfi/srfi-9.scm srfi/srfi-10.scm srfi/srfi-11.scm srfi/srfi-13.scm srfi/srfi-14.scm srfi/srfi-16.scm srfi/srfi-17.scm srfi/srfi-18.scm srfi/srfi-19.scm srfi/srfi-26.scm srfi/srfi-27.scm srfi/srfi-31.scm srfi/srfi-34.scm srfi/srfi-35.scm srfi/srfi-37.scm srfi/srfi-38.scm srfi/srfi-42.scm srfi/srfi-39.scm srfi/srfi-45.scm srfi/srfi-60.scm srfi/srfi-67.scm srfi/srfi-69.scm srfi/srfi-88.scm srfi/srfi-98.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache/' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' /bin/install -c -m 644 ice-9/psyntax-pp.go ice-9/boot-9.go ice-9/vlist.go ice-9/r4rs.go ice-9/r5rs.go ice-9/deprecated.go ice-9/and-let-star.go ice-9/binary-ports.go ice-9/calling.go ice-9/command-line.go ice-9/common-list.go ice-9/control.go ice-9/curried-definitions.go ice-9/debug.go ice-9/documentation.go ice-9/eval-string.go ice-9/expect.go ice-9/format.go ice-9/futures.go ice-9/getopt-long.go ice-9/hcons.go ice-9/i18n.go ice-9/iconv.go ice-9/lineio.go ice-9/ls.go ice-9/mapping.go ice-9/match.go ice-9/networking.go ice-9/null.go ice-9/occam-channel.go ice-9/optargs.go ice-9/poe.go ice-9/poll.go ice-9/posix.go ice-9/q.go ice-9/rdelim.go ice-9/receive.go ice-9/regex.go ice-9/runq.go ice-9/rw.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//sxml' /bin/install -c -m 644 sxml/apply-templates.go sxml/fold.go sxml/match.go sxml/simple.go sxml/ssax.go sxml/transform.go sxml/xpath.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//sxml' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system' /bin/install -c -m 644 system/foreign.go system/xref.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//web' /bin/install -c -m 644 web/client.go web/http.go web/request.go web/response.go web/server.go web/uri.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//web' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//scripts' /bin/install -c -m 644 scripts/autofrisk.go scripts/compile.go scripts/disassemble.go scripts/display-commentary.go scripts/doc-snarf.go scripts/frisk.go scripts/generate-autoload.go scripts/help.go scripts/lint.go scripts/list.go scripts/punify.go scripts/read-scheme-source.go scripts/read-text-outline.go scripts/use2dot.go scripts/snarf-check-and-output-texi.go scripts/summarize-guile-TODO.go ./scripts/scan-api.go scripts/api-diff.go scripts/read-rfc822.go scripts/snarf-guile-m4-docs.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//scripts' /bin/install: cannot stat `./scripts/scan-api.go': No such file or directory make[4]: *** [install-nobase_ccacheDATA] Error 1 make[4]: Target `install-data-am' not remade because of errors. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' make[3]: *** [install-am] Error 2 make[3]: Target `install' not remade because of errors. make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' Making install in guile-readline make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0/' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' Making install in examples make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' Making install in emacs make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' Making install in test-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in standalone make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make install-am make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Nothing to be done for `install-exec-am'. make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' Making install in vm make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in benchmark-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' Making install in gc-benchmarks make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' Making install in am make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' Making install in doc make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' Making install in ref make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' MAKEINFO guile.info make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./guile.info ./guile.info-1 ./guile.info-2 ./guile.info-3 ./guile.info-4 ./guile.info-5 ./guile.info-6 ./guile.info-7 ./guile.info-8 ./guile.info-9 ./guile.info-10 '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/guile.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' Making install in r5rs make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./r5rs.info '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/r5rs.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/man/man1' /bin/install -c -m 644 guile.1 '/c/Users/shookie/guiletest/lib/share/man/man1' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0' /bin/install -c -m 644 libguile.h '/c/Users/shookie/guiletest/lib/include/guile/2.0' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #4: build_noposix_nothreads.log --] [-- Type: text/x-log; name="build_noposix_nothreads.log", Size: 132753 bytes --] cd lib/guile-2.0 && ./configure --prefix=/c/Users/shookie/guiletest/lib --disable-shared --disable-fast-install --with-gnu-ld --disable-posix --without-threads --disable-deprecated --enable-nls --with-libgmp-prefix=/c/Users/shookie/guiletest/lib LIBFFI_CFLAGS='-I/c/Users/shookie/guiletest/lib/lib/libffi-3.0.12/include' LIBFFI_LIBS='-lffi' BDW_GC_LIBS='-lgc' BDW_GC_CFLAGS='-I/c/Users/shookie/guiletest/lib' CPPFLAGS='-D HAVE_GC_SET_FINALIZER_NOTIFIER -D HAVE_GC_GET_FREE_SPACE_DIVISOR -D HAVE_GC_GET_HEAP_USAGE_SAFE -D HAVE_GC_SET_FINALIZE_ON_DEMAND' CFLAGS='-s' && make -k install checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking build system type... i686-pc-mingw32 checking host system type... i686-pc-mingw32 checking for as... as checking for dlltool... dlltool checking for objdump... objdump checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.exe checking for suffix of executables... .exe checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for Minix Amsterdam compiler... no checking for ar... ar checking for ranlib... ranlib checking whether gcc and cc understand -c and -o together... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... unknown checking for _LARGE_FILES value needed for large files... unknown configure: autobuild project... GNU Guile configure: autobuild revision... 2.0.7.194-dfd1d configure: autobuild hostname... bias configure: autobuild timestamp... 20130315T224424Z checking how to run the C preprocessor... gcc -E checking for a sed that does not truncate output... /bin/sed checking for gawk... (cached) gawk checking whether ln -s works... no, using cp -pR checking the archiver (ar) interface... ar checking for sys/socket.h... no checking for arpa/inet.h... no checking for features.h... no checking for sys/param.h... yes checking for dirent.h... yes checking for xlocale.h... no checking for unistd.h... (cached) yes checking for sys/stat.h... (cached) yes checking for netdb.h... no checking for netinet/in.h... no checking for iconv.h... yes checking for langinfo.h... no checking for math.h... yes checking for sys/mman.h... no checking for poll.h... no checking for sys/ioctl.h... no checking for sys/filio.h... no checking for sys/select.h... no checking for sys/time.h... yes checking for wchar.h... yes checking for stdint.h... (cached) yes checking for sys/file.h... yes checking for sys/times.h... no checking for sys/uio.h... no checking for wctype.h... yes checking ws2tcpip.h usability... yes checking ws2tcpip.h presence... yes checking for ws2tcpip.h... yes checking whether the preprocessor supports include_next... yes checking whether system header files limit the line length... no checking whether <sys/socket.h> is self-contained... no checking for struct sockaddr_storage... yes checking for sa_family_t... no checking for struct sockaddr_storage.ss_family... yes checking winsock2.h usability... yes checking winsock2.h presence... yes checking for winsock2.h... yes checking whether socket is declared without a macro... no checking whether connect is declared without a macro... no checking whether accept is declared without a macro... no checking whether bind is declared without a macro... no checking whether getpeername is declared without a macro... no checking whether getsockname is declared without a macro... no checking whether getsockopt is declared without a macro... no checking whether listen is declared without a macro... no checking whether recv is declared without a macro... no checking whether send is declared without a macro... no checking whether recvfrom is declared without a macro... no checking whether sendto is declared without a macro... no checking whether setsockopt is declared without a macro... no checking whether shutdown is declared without a macro... no checking whether accept4 is declared without a macro... no checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking whether <wchar.h> uses 'inline' correctly... yes checking for btowc... yes checking for canonicalize_file_name... no checking for getcwd... yes checking for readlink... no checking for realpath... no checking for _set_invalid_parameter_handler... no checking for duplocale... no checking for symlink... no checking for flock... no checking for fcntl... no checking for alarm... no checking for getlogin... no checking for lstat... no checking for mbsinit... yes checking for mbrtowc... yes checking for mprotect... yes checking for nl_langinfo... no checking for pipe... no checking for pipe2... no checking for isblank... yes checking for iswctype... yes checking for wcscoll... yes checking for link... no checking for setenv... no checking for snprintf... yes checking for tzset... yes checking for localtime_r... no checking for times... no checking for vasnprintf... no checking for wcrtomb... yes checking for iswcntrl... yes checking for nl_langinfo and CODESET... no checking for a traditional french locale... French_France.1252 checking whether // is distinct from /... yes checking whether realpath works... no checking for wchar_t... yes checking whether NULL can be used in arbitrary expressions... yes checking whether locale.h conforms to POSIX:2001... no checking whether struct lconv is properly defined... no checking whether setlocale is declared without a macro... yes checking whether duplocale is declared without a macro... no checking if environ is properly declared... yes checking for complete errno.h... no checking for EMULTIHOP value... no checking for ENOLINK value... no checking for EOVERFLOW value... no checking for working fcntl.h... no checking for pid_t... yes checking for mode_t... yes checking whether frexp() can be used without linking with libm... yes checking whether stat file-mode macros are broken... no checking for 64-bit off_t... no checking for nlink_t... no checking whether fchmodat is declared without a macro... no checking whether fstat is declared without a macro... yes checking whether fstatat is declared without a macro... no checking whether futimens is declared without a macro... no checking whether lchmod is declared without a macro... no checking whether lstat is declared without a macro... no checking whether mkdirat is declared without a macro... no checking whether mkfifo is declared without a macro... no checking whether mkfifoat is declared without a macro... no checking whether mknod is declared without a macro... no checking whether mknodat is declared without a macro... no checking whether stat is declared without a macro... yes checking whether utimensat is declared without a macro... no checking whether getaddrinfo is declared without a macro... no checking whether freeaddrinfo is declared without a macro... no checking whether gai_strerror is declared without a macro... no checking whether getnameinfo is declared without a macro... no checking for library containing gethostbyname... no checking for gethostbyname... no checking for gethostbyname in winsock2.h and -lws2_32... yes checking for library containing getservbyname... no checking for getservbyname... no checking for getservbyname in winsock2.h and -lws2_32... yes checking for C/C++ restrict keyword... __restrict checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... no checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for shared library run path origin... done checking for iconv... yes checking for working iconv... yes checking how to link with libiconv... -liconv checking for iconv declaration... extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for inline... inline checking whether byte ordering is bigendian... no checking whether long double and double are the same... no checking where to find the exponent in a 'float'... word 0 bit 23 checking whether isnan(float) can be used without linking with libm... yes checking whether isnan(float) works... yes checking whether isnan(double) can be used without linking with libm... yes checking whether isnan(long double) can be used without linking with libm... yes checking whether isnanl works... no checking where to find the exponent in a 'double'... word 1 bit 20 checking whether ldexp() can be used without linking with libm... yes checking for libunistring... yes checking how to link with libunistring... -lunistring checking for libunistring version... 0.9.3 checking whether getc_unlocked is declared... no checking whether we are using the GNU C Library >= 2.1 or uClibc... no checking whether pow can be used without linking with libm... yes checking whether log works... yes checking whether round is declared... yes checking whether round works... yes checking whether lstat correctly handles trailing slash... guessing no checking whether malloc, realloc, calloc are POSIX compliant... no checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for unsigned long long int... yes checking for long long int... yes checking for mbstate_t... yes checking for a traditional japanese locale... none checking for a transitional chinese locale... none checking for a french Unicode locale... none checking for mmap... no checking whether memchr works... yes checking for promoted mode_t type... int checking whether poll is declared without a macro... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... yes checking for ssize_t... yes checking whether <sys/select.h> is self-contained... no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... no checking whether select is declared without a macro... no checking whether setenv is declared... no checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for sigset_t... yes checking for uid_t in sys/types.h... no checking whether snprintf returns a byte count as in C99... yes checking whether snprintf is declared... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking whether stdint.h conforms to C99... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_zone... no checking whether tzname is declared... yes checking for tzname... yes checking for struct tm.tm_gmtoff... no checking whether ffsl is declared without a macro... no checking whether ffsll is declared without a macro... no checking whether memmem is declared without a macro... no checking whether mempcpy is declared without a macro... no checking whether memrchr is declared without a macro... no checking whether rawmemchr is declared without a macro... no checking whether stpcpy is declared without a macro... no checking whether stpncpy is declared without a macro... no checking whether strchrnul is declared without a macro... no checking whether strdup is declared without a macro... yes checking whether strncat is declared without a macro... yes checking whether strndup is declared without a macro... no checking whether strnlen is declared without a macro... no checking whether strpbrk is declared without a macro... yes checking whether strsep is declared without a macro... no checking whether strcasestr is declared without a macro... no checking whether strtok_r is declared without a macro... no checking whether strerror_r is declared without a macro... no checking whether strsignal is declared without a macro... no checking whether strverscmp is declared without a macro... no checking for winsock2.h... (cached) yes checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking whether gettimeofday is declared without a macro... yes checking for struct timespec in <time.h>... no checking for struct timespec in <sys/time.h>... no checking for struct timespec in <pthread.h>... yes checking for wint_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking for snprintf... (cached) yes checking for strnlen... no checking for wcslen... yes checking for wcsnlen... no checking for mbrtowc... (cached) yes checking for wcrtomb... (cached) yes checking whether _snprintf is declared... yes checking whether vsnprintf is declared... yes checking whether inet_ntop is declared without a macro... no checking whether inet_pton is declared without a macro... no checking whether btowc(0) is correct... yes checking whether btowc(EOF) is correct... yes checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking for library containing clock_gettime... no checking for clock_gettime... no checking for clock_settime... no checking for clock_getcpuclockid... no checking for winsock2.h... (cached) yes checking whether alphasort is declared without a macro... no checking whether closedir is declared without a macro... yes checking whether dirfd is declared without a macro... no checking whether fdopendir is declared without a macro... no checking whether opendir is declared without a macro... yes checking whether readdir is declared without a macro... yes checking whether rewinddir is declared without a macro... yes checking whether scandir is declared without a macro... no checking for dirfd... no checking whether dirfd is declared... no checking whether dirfd is a macro... no checking how to get the file descriptor associated with an open DIR*... no_such_member checking whether // is distinct from /... (cached) yes checking whether dup2 works... no checking whether fcntl is declared without a macro... no checking whether openat is declared without a macro... no checking whether conversion from 'int' to 'long double' works... yes checking for struct flock.l_type... no checking whether frexp works... no checking whether __func__ is available... yes configure: checking how to do getaddrinfo, freeaddrinfo and getnameinfo checking for library containing getaddrinfo... no checking for getaddrinfo... no checking for getaddrinfo in ws2tcpip.h and -lws2_32... no checking whether gai_strerror is declared... yes checking whether gai_strerrorA is declared... yes checking for gai_strerror with POSIX signature... no checking for struct sockaddr.sa_len... no checking whether getaddrinfo is declared... no checking whether freeaddrinfo is declared... no checking whether getnameinfo is declared... no checking for struct addrinfo... yes checking for library containing gethostbyname... (cached) no checking for gethostbyname... (cached) no checking for gethostbyname in winsock2.h and -lws2_32... (cached) yes checking whether iconv supports conversion between UTF-8 and UTF-{16,32}{BE,LE}... yes checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... (cached) no checking for winsock2.h... (cached) yes checking whether inet_pton is declared... no checking whether the compiler generally respects inline... no checking whether isinf is declared... yes checking whether isinf(long double) works... yes checking whether isnan macro works... no checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(float) can be used without linking with libm... (cached) yes checking whether isnan(float) works... (cached) yes checking where to find the exponent in a 'float'... (cached) word 0 bit 23 checking whether isnan(long double) can be used without linking with libm... (cached) yes checking whether isnanl works... (cached) no checking where to find the exponent in a 'long double'... word 2 bit 0 checking whether nl_langinfo is declared without a macro... no checking if LD -Wl,--version-script works... yes checking whether the -Werror option is usable... yes checking for simple visibility declarations... yes checking whether locale.h conforms to POSIX:2001... (cached) no checking whether struct lconv is properly defined... (cached) no checking whether setlocale is declared without a macro... (cached) yes checking whether duplocale is declared without a macro... (cached) no checking for struct lconv.decimal_point... yes checking for log1p... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking whether NAN macro works... yes checking whether HUGE_VAL works... yes checking whether acosf is declared without a macro... yes checking whether acosl is declared without a macro... yes checking whether asinf is declared without a macro... yes checking whether asinl is declared without a macro... yes checking whether atanf is declared without a macro... yes checking whether atanl is declared without a macro... yes checking whether cbrt is declared without a macro... yes checking whether cbrtf is declared without a macro... yes checking whether cbrtl is declared without a macro... yes checking whether ceilf is declared without a macro... yes checking whether ceill is declared without a macro... yes checking whether copysign is declared without a macro... yes checking whether copysignf is declared without a macro... yes checking whether copysignl is declared without a macro... yes checking whether cosf is declared without a macro... yes checking whether cosl is declared without a macro... yes checking whether coshf is declared without a macro... yes checking whether expf is declared without a macro... yes checking whether expl is declared without a macro... yes checking whether exp2 is declared without a macro... yes checking whether exp2f is declared without a macro... yes checking whether exp2l is declared without a macro... yes checking whether expm1 is declared without a macro... yes checking whether expm1f is declared without a macro... yes checking whether expm1l is declared without a macro... yes checking whether fabsf is declared without a macro... yes checking whether fabsl is declared without a macro... yes checking whether floorf is declared without a macro... yes checking whether floorl is declared without a macro... yes checking whether fma is declared without a macro... yes checking whether fmaf is declared without a macro... yes checking whether fmal is declared without a macro... yes checking whether fmod is declared without a macro... yes checking whether fmodf is declared without a macro... yes checking whether fmodl is declared without a macro... yes checking whether frexpf is declared without a macro... yes checking whether frexpl is declared without a macro... yes checking whether hypotf is declared without a macro... yes checking whether hypotl is declared without a macro... yes checking whether ilogb is declared without a macro... yes checking whether ilogbf is declared without a macro... yes checking whether ilogbl is declared without a macro... yes checking whether ldexpf is declared without a macro... yes checking whether ldexpl is declared without a macro... yes checking whether log is declared without a macro... yes checking whether logf is declared without a macro... yes checking whether logl is declared without a macro... yes checking whether log10 is declared without a macro... yes checking whether log10f is declared without a macro... yes checking whether log10l is declared without a macro... yes checking whether log1p is declared without a macro... yes checking whether log1pf is declared without a macro... yes checking whether log1pl is declared without a macro... yes checking whether log2 is declared without a macro... yes checking whether log2f is declared without a macro... yes checking whether log2l is declared without a macro... yes checking whether logb is declared without a macro... yes checking whether logbf is declared without a macro... yes checking whether logbl is declared without a macro... yes checking whether modf is declared without a macro... yes checking whether modff is declared without a macro... yes checking whether modfl is declared without a macro... yes checking whether powf is declared without a macro... yes checking whether remainder is declared without a macro... yes checking whether remainderf is declared without a macro... yes checking whether remainderl is declared without a macro... yes checking whether rint is declared without a macro... yes checking whether rintf is declared without a macro... yes checking whether rintl is declared without a macro... yes checking whether round is declared without a macro... yes checking whether roundf is declared without a macro... yes checking whether roundl is declared without a macro... yes checking whether sinf is declared without a macro... yes checking whether sinl is declared without a macro... yes checking whether sinhf is declared without a macro... yes checking whether sqrtf is declared without a macro... yes checking whether sqrtl is declared without a macro... yes checking whether tanf is declared without a macro... yes checking whether tanl is declared without a macro... yes checking whether tanhf is declared without a macro... yes checking whether trunc is declared without a macro... yes checking whether truncf is declared without a macro... yes checking whether truncl is declared without a macro... yes checking whether mbrtowc handles incomplete characters... guessing yes checking whether mbrtowc works as well as mbtowc... guessing yes checking whether mbrtowc handles a NULL pwc argument... guessing yes checking whether mbrtowc handles a NULL string argument... guessing yes checking whether mbrtowc has a correct return value... no checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether getaddrinfo is declared without a macro... (cached) no checking whether freeaddrinfo is declared without a macro... (cached) no checking whether gai_strerror is declared without a macro... (cached) no checking whether getnameinfo is declared without a macro... (cached) no checking whether <netinet/in.h> is self-contained... no checking for netinet/in.h... (cached) no checking for sys/pstat.h... no checking for sys/sysmp.h... no checking for sys/param.h... (cached) yes checking for sys/sysctl.h... no checking for sched_getaffinity... no checking for sched_getaffinity_np... no checking for pstat_getdynamic... no checking for sysmp... no checking for sysctl... no checking for poll... (cached) no checking whether poll is declared without a macro... (cached) no checking for putenv compatible with GNU and SVID... no checking for _putenv... yes checking for raise... yes checking for working re_compile_pattern... no checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking whether isblank is declared... yes checking whether rename honors trailing slash on destination... no checking whether rename honors trailing slash on source... yes checking whether rename manages hard links correctly... yes checking whether rename manages existing destinations correctly... no checking whether rmdir works... no checking whether round is declared... (cached) yes checking whether round works... (cached) yes checking for library containing getservbyname... (cached) no checking for getservbyname... (cached) no checking for getservbyname in winsock2.h and -lws2_32... (cached) yes checking for volatile sig_atomic_t... yes checking for sighandler_t... no checking whether pthread_sigmask is declared without a macro... no checking whether sigaction is declared without a macro... no checking whether sigaddset is declared without a macro... no checking whether sigdelset is declared without a macro... no checking whether sigemptyset is declared without a macro... no checking whether sigfillset is declared without a macro... no checking whether sigismember is declared without a macro... no checking whether sigpending is declared without a macro... no checking whether sigprocmask is declared without a macro... no checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking for snprintf... (cached) yes checking whether snprintf respects a size of 1... yes checking whether printf supports POSIX/XSI format strings with positions... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... (cached) yes checking for socklen_t... yes checking for ssize_t... (cached) yes checking whether stat handles trailing slashes on directories... no checking whether stat handles trailing slashes on files... yes checking for struct stat.st_atim.tv_nsec... no checking for struct stat.st_atimespec.tv_nsec... no checking for struct stat.st_atimensec... no checking for struct stat.st_atim.st__tim.tv_nsec... no checking for struct stat.st_birthtimespec.tv_nsec... no checking for struct stat.st_birthtimensec... no checking for struct stat.st_birthtim.tv_nsec... no checking for working stdalign.h... yes checking whether NULL can be used in arbitrary expressions... (cached) yes checking whether dprintf is declared without a macro... no checking whether fpurge is declared without a macro... no checking whether fseeko is declared without a macro... no checking whether ftello is declared without a macro... no checking whether getdelim is declared without a macro... no checking whether getline is declared without a macro... no checking whether gets is declared without a macro... yes checking whether pclose is declared without a macro... yes checking whether popen is declared without a macro... yes checking whether renameat is declared without a macro... no checking whether snprintf is declared without a macro... yes checking whether tmpfile is declared without a macro... yes checking whether vdprintf is declared without a macro... no checking whether vsnprintf is declared without a macro... yes checking whether _Exit is declared without a macro... yes checking whether atoll is declared without a macro... yes checking whether canonicalize_file_name is declared without a macro... no checking whether getloadavg is declared without a macro... no checking whether getsubopt is declared without a macro... no checking whether grantpt is declared without a macro... no checking whether initstate is declared without a macro... no checking whether initstate_r is declared without a macro... no checking whether mkdtemp is declared without a macro... no checking whether mkostemp is declared without a macro... no checking whether mkostemps is declared without a macro... no checking whether mkstemp is declared without a macro... no checking whether mkstemps is declared without a macro... no checking whether posix_openpt is declared without a macro... no checking whether ptsname is declared without a macro... no checking whether ptsname_r is declared without a macro... no checking whether random is declared without a macro... no checking whether random_r is declared without a macro... no checking whether realpath is declared without a macro... no checking whether rpmatch is declared without a macro... no checking whether secure_getenv is declared without a macro... no checking whether setenv is declared without a macro... no checking whether setstate is declared without a macro... no checking whether setstate_r is declared without a macro... no checking whether srandom is declared without a macro... no checking whether srandom_r is declared without a macro... no checking whether strtod is declared without a macro... yes checking whether strtoll is declared without a macro... yes checking whether strtoull is declared without a macro... yes checking whether unlockpt is declared without a macro... no checking whether unsetenv is declared without a macro... no checking whether flock is declared without a macro... no checking whether <sys/select.h> is self-contained... (cached) no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... (cached) no checking whether select is declared without a macro... (cached) no checking whether <sys/socket.h> is self-contained... (cached) no checking for struct sockaddr_storage... (cached) yes checking for sa_family_t... (cached) no checking for struct sockaddr_storage.ss_family... (cached) yes checking for winsock2.h... (cached) yes checking whether socket is declared without a macro... (cached) no checking whether connect is declared without a macro... (cached) no checking whether accept is declared without a macro... (cached) no checking whether bind is declared without a macro... (cached) no checking whether getpeername is declared without a macro... (cached) no checking whether getsockname is declared without a macro... (cached) no checking whether getsockopt is declared without a macro... (cached) no checking whether listen is declared without a macro... (cached) no checking whether recv is declared without a macro... (cached) no checking whether send is declared without a macro... (cached) no checking whether recvfrom is declared without a macro... (cached) no checking whether sendto is declared without a macro... (cached) no checking whether setsockopt is declared without a macro... (cached) no checking whether shutdown is declared without a macro... (cached) no checking whether accept4 is declared without a macro... (cached) no checking for nlink_t... (cached) no checking whether fchmodat is declared without a macro... (cached) no checking whether fstat is declared without a macro... (cached) yes checking whether fstatat is declared without a macro... (cached) no checking whether futimens is declared without a macro... (cached) no checking whether lchmod is declared without a macro... (cached) no checking whether lstat is declared without a macro... (cached) no checking whether mkdirat is declared without a macro... (cached) no checking whether mkfifo is declared without a macro... (cached) no checking whether mkfifoat is declared without a macro... (cached) no checking whether mknod is declared without a macro... (cached) no checking whether mknodat is declared without a macro... (cached) no checking whether stat is declared without a macro... (cached) yes checking whether utimensat is declared without a macro... (cached) no checking whether times is declared without a macro... no checking whether localtime_r is declared... no checking whether trunc is declared... (cached) yes checking whether chdir is declared without a macro... yes checking whether chown is declared without a macro... no checking whether dup is declared without a macro... yes checking whether dup2 is declared without a macro... yes checking whether dup3 is declared without a macro... no checking whether environ is declared without a macro... no checking whether euidaccess is declared without a macro... no checking whether faccessat is declared without a macro... no checking whether fchdir is declared without a macro... no checking whether fchownat is declared without a macro... no checking whether fdatasync is declared without a macro... no checking whether fsync is declared without a macro... no checking whether ftruncate is declared without a macro... yes checking whether getcwd is declared without a macro... yes checking whether getdomainname is declared without a macro... no checking whether getdtablesize is declared without a macro... no checking whether getgroups is declared without a macro... no checking whether gethostname is declared without a macro... no checking whether getlogin is declared without a macro... no checking whether getlogin_r is declared without a macro... no checking whether getpagesize is declared without a macro... no checking whether getusershell is declared without a macro... no checking whether setusershell is declared without a macro... no checking whether endusershell is declared without a macro... no checking whether group_member is declared without a macro... no checking whether isatty is declared without a macro... yes checking whether lchown is declared without a macro... no checking whether link is declared without a macro... no checking whether linkat is declared without a macro... no checking whether lseek is declared without a macro... yes checking whether pipe is declared without a macro... no checking whether pipe2 is declared without a macro... no checking whether pread is declared without a macro... no checking whether pwrite is declared without a macro... no checking whether readlink is declared without a macro... no checking whether readlinkat is declared without a macro... no checking whether rmdir is declared without a macro... yes checking whether sethostname is declared without a macro... no checking whether sleep is declared without a macro... no checking whether symlink is declared without a macro... no checking whether symlinkat is declared without a macro... no checking whether ttyname_r is declared without a macro... no checking whether unlink is declared without a macro... yes checking whether unlinkat is declared without a macro... no checking whether usleep is declared without a macro... yes checking for ptrdiff_t... yes checking for vsnprintf... yes checking whether snprintf respects a size of 1... (cached) yes checking whether printf supports POSIX/XSI format strings with positions... (cached) no checking whether btowc is declared without a macro... yes checking whether wctob is declared without a macro... yes checking whether mbsinit is declared without a macro... yes checking whether mbrtowc is declared without a macro... yes checking whether mbrlen is declared without a macro... yes checking whether mbsrtowcs is declared without a macro... yes checking whether mbsnrtowcs is declared without a macro... no checking whether wcrtomb is declared without a macro... yes checking whether wcsrtombs is declared without a macro... yes checking whether wcsnrtombs is declared without a macro... no checking whether wcwidth is declared without a macro... no checking whether wmemchr is declared without a macro... yes checking whether wmemcmp is declared without a macro... yes checking whether wmemcpy is declared without a macro... yes checking whether wmemmove is declared without a macro... yes checking whether wmemset is declared without a macro... yes checking whether wcslen is declared without a macro... yes checking whether wcsnlen is declared without a macro... no checking whether wcscpy is declared without a macro... yes checking whether wcpcpy is declared without a macro... no checking whether wcsncpy is declared without a macro... yes checking whether wcpncpy is declared without a macro... no checking whether wcscat is declared without a macro... yes checking whether wcsncat is declared without a macro... yes checking whether wcscmp is declared without a macro... yes checking whether wcsncmp is declared without a macro... yes checking whether wcscasecmp is declared without a macro... no checking whether wcsncasecmp is declared without a macro... no checking whether wcscoll is declared without a macro... yes checking whether wcsxfrm is declared without a macro... yes checking whether wcsdup is declared without a macro... yes checking whether wcschr is declared without a macro... yes checking whether wcsrchr is declared without a macro... yes checking whether wcscspn is declared without a macro... yes checking whether wcsspn is declared without a macro... yes checking whether wcspbrk is declared without a macro... yes checking whether wcsstr is declared without a macro... yes checking whether wcstok is declared without a macro... yes checking whether wcswidth is declared without a macro... no checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether wcrtomb return value is correct... yes checking whether iswcntrl works... yes checking for towlower... yes checking for wctype_t... yes checking for wctrans_t... yes checking whether wctype is declared without a macro... yes checking whether iswctype is declared without a macro... yes checking whether wctrans is declared without a macro... yes checking whether towctrans is declared without a macro... yes checking for stdint.h... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for fgrep... /bin/grep -F checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /mingw/bin/nm checking the name lister (/mingw/bin/nm) interface... BSD nm checking the maximum length of command line arguments... 8192 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert i686-pc-mingw32 file names to i686-pc-mingw32 format... func_convert_file_msys_to_w32 checking how to convert i686-pc-mingw32 file names to toolchain format... func_convert_file_msys_to_w32 checking for c:/mingw/mingw32/bin/ld.exe option to reload object files... -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... func_cygming_dll_for_implib checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... (cached) ranlib checking command to parse /mingw/bin/nm output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... no checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (c:/mingw/mingw32/bin/ld.exe) supports shared libraries... yes checking dynamic linker characteristics... Win32 ld.exe checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking for libltdl... yes checking how to link with libltdl... -lltdl checking for makeinfo... yes checking for emacs... no checking for xemacs... no checking where .elc files should go... ${datadir}/emacs/site-lisp checking whether to use system and library "64" calls... yes checking for __uc_get_ar_bsp in -luca... no checking for an ANSI C-conforming const... yes checking for working volatile... yes checking for inline... (cached) inline checking for __uc_get_ar_bsp in -luca... (cached) no checking whether byte ordering is bigendian... (cached) no checking labels as values... yes checking size of char... 1 checking size of unsigned char... 1 checking size of short... 2 checking size of unsigned short... 2 checking size of int... 4 checking size of unsigned int... 4 checking size of long... 4 checking size of unsigned long... 4 checking size of size_t... 4 checking size of long long... 8 checking size of unsigned long long... 8 checking size of __int64... 8 checking size of unsigned __int64... 8 checking size of void *... 4 checking size of intptr_t... 4 checking size of uintptr_t... 4 checking size of ptrdiff_t... 4 checking size of size_t... (cached) 4 checking size of off_t... 4 checking for stdint.h... (cached) yes checking for inttypes.h... (cached) yes checking size of intmax_t... 8 checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... yes checking for uintptr_t... yes checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... (cached) yes checking for uintptr_t... (cached) yes checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for struct dirent64.d_name... no checking complex.h usability... yes checking complex.h presence... yes checking for complex.h... yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking io.h usability... yes checking io.h presence... yes checking for io.h... yes checking libc.h usability... no checking libc.h presence... no checking for libc.h... no checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for memory.h... (cached) yes checking process.h usability... yes checking process.h presence... yes checking for process.h... yes checking for string.h... (cached) yes checking sys/dir.h usability... no checking sys/dir.h presence... no checking for sys/dir.h... no checking for sys/ioctl.h... (cached) no checking for sys/select.h... (cached) no checking for sys/time.h... (cached) yes checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking for sys/times.h... (cached) no checking sys/stdtypes.h usability... no checking sys/stdtypes.h presence... no checking for sys/stdtypes.h... no checking for sys/types.h... (cached) yes checking sys/utime.h usability... yes checking sys/utime.h presence... yes checking for sys/utime.h... yes checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking for unistd.h... (cached) yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking pwd.h usability... no checking pwd.h presence... no checking for pwd.h... no checking grp.h usability... no checking grp.h presence... no checking for grp.h... no checking sys/utsname.h usability... no checking sys/utsname.h presence... no checking for sys/utsname.h... no checking direct.h usability... yes checking direct.h presence... yes checking for direct.h... yes checking machine/fpu.h usability... no checking machine/fpu.h presence... no checking for machine/fpu.h... no checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking for complex double... yes checking for socklen_t... (cached) yes checking for struct ip_mreq... no checking for libc.h... (cached) no checking for unistd.h... (cached) yes checking whether libc.h and unistd.h can be included together... no checking type of array argument to getgroups... int checking return type of signal handlers... void checking for mode_t... (cached) yes checking for cos in -lm... yes checking for gethostbyname... (cached) no checking for gethostbyname in -lnsl... no checking for connect... no checking for connect in -lsocket... no checking for winsock2.h... (cached) yes checking for main in -lws2_32... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking crt_externs.h usability... no checking crt_externs.h presence... no checking for crt_externs.h... no checking for DINFINITY... no checking for DQNAN... no checking for cexp... yes checking for chsize... yes checking for clog... yes checking for clog10... no checking for ctermid... no checking for fesetround... yes checking for ftime... yes checking for ftruncate... yes checking for fchown... no checking for fchmod... no checking for getcwd... (cached) yes checking for geteuid... no checking for getsid... no checking for gettimeofday... yes checking for gmtime_r... no checking for ioctl... no checking for lstat... (cached) no checking for mkdir... yes checking for mknod... no checking for nice... no checking for pipe... (cached) no checking for _pipe... yes checking for readdir_r... no checking for readdir64_r... no checking for readlink... (cached) no checking for rename... yes checking for rmdir... yes checking for select... no checking for setegid... no checking for seteuid... no checking for setlocale... yes checking for setpgid... no checking for setsid... no checking for sigaction... no checking for siginterrupt... no checking for stat64... no checking for strftime... yes checking for strptime... no checking for symlink... (cached) no checking for sync... no checking for sysconf... no checking for tcgetpgrp... no checking for tcsetpgrp... no checking for times... (cached) no checking for uname... no checking for waitpid... no checking for strdup... yes checking for system... yes checking for usleep... yes checking for atexit... yes checking for on_exit... no checking for chown... no checking for link... (cached) no checking for fcntl... (cached) no checking for ttyname... no checking for getpwent... no checking for getgrent... no checking for kill... no checking for getppid... no checking for getpgrp... no checking for fork... no checking for setitimer... no checking for getitimer... no checking for strchr... yes checking for strcmp... yes checking for index... no checking for bcopy... no checking for memcpy... yes checking for rindex... no checking for truncate... no checking for unsetenv... no checking for isblank... (cached) yes checking for _NSGetEnviron... no checking for strcoll... yes checking for strcoll_l... no checking for newlocale... no checking for utimensat... no checking for sched_getaffinity... (cached) no checking for sched_setaffinity... no checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking for netdb.h... (cached) no checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking pthread_np.h usability... no checking pthread_np.h presence... no checking for pthread_np.h... no checking for sys/param.h... (cached) yes checking sys/resource.h usability... no checking sys/resource.h presence... no checking for sys/resource.h... no checking for sys/file.h... (cached) yes checking for sys/mman.h... (cached) no checking for chroot... no checking for flock... (cached) no checking for getlogin... (cached) no checking for cuserid... no checking for getpriority... no checking for setpriority... no checking for getpass... no checking for sethostname... no checking for gethostname... no checking whether sethostname is declared... no checking whether hstrerror is declared... no checking whether cuserid is declared... no checking for library containing crypt... no checking for i... _Complex_I checking whether csqrt is usable... yes checking for libgmp... yes checking how to link with libgmp... /c/Users/shookie/guiletest/lib/lib/libgmp.a checking whether libunistring was built with iconv support... yes checking for pkg-config... no checking for LIBFFI... yes checking size of size_t... (cached) 4 checking size of ssize_t... 4 checking whether NLS is requested... yes checking for msgfmt... /mingw/bin/msgfmt checking for gmsgfmt... /mingw/bin/msgfmt checking for xgettext... /mingw/bin/xgettext checking for msgmerge... /mingw/bin/msgmerge checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking for GNU gettext in libc... no checking for iconv... (cached) yes checking for working iconv... (cached) yes checking how to link with libiconv... -liconv checking for GNU gettext in libintl... yes checking whether to use NLS... yes checking where the gettext function comes from... external libintl checking how to link with libintl... -lintl checking for sleep declaration... yes checking for usleep declaration... yes checking whether getlogin is declared... no checking whether alarm is declared... no checking whether strptime is declared... no checking return type of usleep... int checking sys/un.h usability... no checking sys/un.h presence... no checking for sys/un.h... no checking for getrlimit... no checking for setrlimit... no checking for socketpair... no checking for getgroups... no checking for setgroups... no checking for setpwent... no checking for pause... no checking for tzset... (cached) yes checking for sethostent... no checking for gethostent... no checking for endhostent... no checking for setnetent... no checking for getnetent... no checking for endnetent... no checking for setprotoent... no checking for getprotoent... no checking for endprotoent... no checking for setservent... no checking for getservent... no checking for endservent... no checking for getnetbyaddr... no checking for getnetbyname... no checking for inet_lnaof... no checking for inet_makeaddr... no checking for inet_netof... no checking for hstrerror... no checking for struct sockaddr_in.sin_len... no checking for __libc_stack_end... no checking whether netdb.h declares h_errno... no checking whether uint32_t is defined... no checking for working IPv6 support... no checking whether sockaddr_in6 has sin6_scope_id... no checking for struct sockaddr_in6.sin6_len... no checking whether localtime caches TZ... yes checking for strerror... yes checking for memmove... yes checking for mkstemp... no checking for asinh... yes checking for acosh... yes checking for atanh... yes checking for copysign... yes checking for finite... yes checking for sincos... no checking for trunc... yes checking for isinf... yes checking for isnan... yes checking for struct stat.st_rdev... yes checking for struct stat.st_blksize... no checking for struct stat.st_blocks... no checking for struct stat.st_atim... no checking for struct stat.st_mtim... no checking for struct stat.st_ctim... no checking for struct tm.tm_zone... (cached) no checking whether tzname is declared... (cached) yes checking for tzname... (cached) yes checking for struct tm.tm_gmtoff... (cached) no checking whether we need POSIX to get struct utimbuf... no checking the value of `iconveh_error'... 0 checking the value of `iconveh_question_mark'... 1 checking the value of `iconveh_escape_sequence'... 2 checking for BDW_GC... yes checking for GC_do_blocking... no checking for GC_call_with_gc_active... no checking for GC_pthread_exit... no checking for GC_pthread_cancel... no checking for GC_allow_register_threads... no checking for GC_pthread_sigmask... no checking for GC_set_start_callback... no checking for GC_get_heap_usage_safe... no checking for GC_get_free_space_divisor... no checking for GC_gcollect_and_unmap... no checking for GC_get_unmapped_bytes... no checking for GC_set_finalizer_notifier... no checking for GC_set_finalize_on_demand... no checking for GC_set_all_interior_pointers... no checking for GC_get_gc_no... no checking for GC_set_java_finalization... no checking whether GC_do_blocking is declared... yes checking for GC_fn_type... yes checking for struct GC_stack_base... yes checking size of float... 4 checking for struct linger... no checking for struct timespec... yes checking what kind of threads to support... null-threads checking whether C compiler handles -Wall... yes checking whether C compiler handles -Wmissing-prototypes... yes checking whether C compiler handles -Wdeclaration-after-statement... yes checking whether C compiler handles -Wpointer-arith... yes checking whether C compiler handles -Wswitch-enum... yes checking whether C compiler handles -fno-strict-aliasing... yes checking whether the linker understands `-z relro'... no checking for tgoto in -lncurses... no checking for tgoto in -lcurses... no checking for tgoto in -ltermcap... no checking for tgoto in -lterminfo... no checking for tgoto in -ltermlib... no checking for tgoto in -lpdcurses... no checking how to link with libreadline... /c/Users/shookie/guiletest/lib/lib/libreadline.a checking for siginterrupt... (cached) no checking for rl_clear_signals... no checking for rl_cleanup_after_signal... no checking for rl_filename_completion_function... no checking whether rl_catch_signals is declared... yes checking whether rl_catch_sigwinch is declared... yes checking for rl_get_keymap... no checking for rl_getc_function pointer in readline... no configure: WARNING: *** GNU Readline is too old on your system. configure: WARNING: *** You need readline version 2.1 or later. checking for strdup... (cached) yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating libguile/gen-scmconfig.h config.status: creating Makefile config.status: creating am/Makefile config.status: creating lib/Makefile config.status: creating benchmark-suite/Makefile config.status: creating gc-benchmarks/Makefile config.status: creating doc/Makefile config.status: creating doc/r5rs/Makefile config.status: creating doc/ref/Makefile config.status: creating emacs/Makefile config.status: creating examples/Makefile config.status: creating libguile/Makefile config.status: creating libguile/version.h config.status: creating guile-readline/Makefile config.status: creating test-suite/Makefile config.status: creating test-suite/standalone/Makefile config.status: creating test-suite/vm/Makefile config.status: creating meta/Makefile config.status: creating module/Makefile config.status: creating meta/guile-2.0.pc config.status: creating meta/guile-2.0-uninstalled.pc config.status: creating doc/ref/effective-version.texi config.status: creating check-guile config.status: creating benchmark-guile config.status: creating meta/guile config.status: creating meta/uninstalled-env config.status: creating meta/gdb-uninstalled-guile config.status: creating meta/guild config.status: creating libguile/guile-snarf config.status: creating libguile/guile-snarf-docs config.status: creating test-suite/standalone/test-use-srfi config.status: creating test-suite/standalone/test-fast-slot-ref config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands config.status: executing po-directories commands make[1]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make install-recursive make[2]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' Making install in lib make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' GEN alloca.h GEN arpa/inet.h GEN byteswap.h GEN configmake.h GEN dirent.h GEN errno.h GEN fcntl.h GEN iconv.h GEN langinfo.h GEN locale.h GEN math.h GEN netdb.h GEN netinet/in.h GEN poll.h GEN signal.h GEN stdio.h GEN stdlib.h GEN string.h GEN sys/file.h GEN sys/select.h GEN sys/socket.h GEN sys/stat.h GEN sys/time.h GEN sys/times.h GEN sys/types.h GEN sys/uio.h GEN time.h GEN unistd.h GEN wchar.h GEN wctype.h make install-recursive make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' CC binary-io.lo CC dirname-lgpl.lo CC basename-lgpl.lo CC fd-hook.lo CC full-read.lo CC full-write.lo CC localcharset.lo CC malloca.lo CC math.lo CC nproc.lo CC pipe2.lo CC safe-read.lo CC safe-write.lo CC sockets.lo CC stat-time.lo CC strftime.lo CC striconveh.lo CC sys_socket.lo CC unistd.lo CC unistr/u8-mbtouc.lo CC unistr/u8-mbtouc-aux.lo CC unistr/u8-mbtouc-unsafe.lo CC unistr/u8-mbtouc-unsafe-aux.lo CC wctype-h.lo CC accept.lo CC bind.lo CC canonicalize-lgpl.lo CC close.lo CC connect.lo CC dirfd.lo CC dup2.lo CC flock.lo CC frexp.lo CC fstat.lo CC gai_strerror.lo CC getaddrinfo.lo CC getlogin.lo CC getpeername.lo CC getsockname.lo CC getsockopt.lo CC inet_ntop.lo CC inet_pton.lo CC isnand.lo CC isnanf.lo CC isnanl.lo CC listen.lo CC localeconv.lo CC malloc.lo CC mbrtowc.lo CC mbsinit.lo CC nl_langinfo.lo CC open.lo CC pipe.lo CC poll.lo CC printf-args.lo CC printf-parse.lo CC putenv.lo CC readlink.lo CC recv.lo CC recvfrom.lo CC regex.lo CC rename.lo CC rmdir.lo CC select.lo CC send.lo CC sendto.lo CC setenv.lo CC setsockopt.lo CC shutdown.lo CC snprintf.lo CC socket.lo CC stat.lo CC time_r.lo CC times.lo CC vasnprintf.lo CC vsnprintf.lo CCLD libgnu.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' if test no = no; then \ case 'mingw32' in \ darwin[56]*) \ need_charset_alias=true ;; \ darwin* | cygwin* | mingw* | pw32* | cegcc*) \ need_charset_alias=false ;; \ *) \ need_charset_alias=true ;; \ esac ; \ else \ need_charset_alias=false ; \ fi ; \ if $need_charset_alias; then \ /bin/sh /c/Users/shookie/guiletest/lib/guile-2.0/build-aux/install-sh -d /c/Users/shookie/guiletest/lib/lib ; \ fi ; \ if test -f /c/Users/shookie/guiletest/lib/lib/charset.alias; then \ sed -f ref-add.sed /c/Users/shookie/guiletest/lib/lib/charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ else \ if $need_charset_alias; then \ sed -f ref-add.sed charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ fi ; \ fi make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' Making install in meta make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guile="/c/Users/shookie/guiletest/lib/bin/`echo guile | /bin/sed -e 's,x,x,'`" ; \ cat ./guile-config.in \ | /bin/sed -e "s,@pkgconfigdir@,/c/Users/shookie/guiletest/lib/lib/pkgconfig,g ; \ s,@""PKG_CONFIG@,,g ; \ s,@installed_guile@,$guile,g" \ > guile-config.out mv guile-config.out guile-config chmod +x guile-config make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-config guild '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guild="`echo -n guild \ | /bin/sed -e 's,x,x,'`.exe" ; \ guile_tools="`echo -n guile-tools \ | /bin/sed -e 's,x,x,'`.exe" ; \ cd /c/Users/shookie/guiletest/lib/bin && rm -f "$guile_tools" && \ cp -pR "$guild" "$guile_tools" make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/install -c -m 644 guile.m4 '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/pkgconfig' /bin/install -c -m 644 guile-2.0.pc '/c/Users/shookie/guiletest/lib/lib/pkgconfig' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' Making install in libguile make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' GEN libpath.h SNARF alist.x SNARF arbiters.x SNARF array-handle.x SNARF array-map.x SNARF arrays.x SNARF async.x SNARF backtrace.x SNARF boolean.x SNARF bitvectors.x SNARF bytevectors.x SNARF chars.x SNARF control.x SNARF continuations.x SNARF debug.x SNARF deprecated.x SNARF deprecation.x SNARF dynl.x SNARF dynwind.x SNARF eq.x SNARF error.x SNARF eval.x SNARF evalext.x SNARF expand.x SNARF extensions.x SNARF feature.x SNARF filesys.x SNARF fluids.x SNARF foreign.x SNARF fports.x SNARF gc-malloc.x SNARF gc.x SNARF gettext.x SNARF generalized-arrays.x SNARF generalized-vectors.x SNARF goops.x SNARF gsubr.x SNARF guardians.x SNARF hash.x SNARF hashtab.x SNARF hooks.x SNARF i18n.x SNARF init.x SNARF ioext.x SNARF keywords.x SNARF list.x SNARF load.x SNARF macros.x SNARF mallocs.x SNARF memoize.x SNARF modules.x SNARF numbers.x SNARF objprop.x SNARF options.x SNARF pairs.x SNARF ports.x SNARF print.x SNARF procprop.x SNARF procs.x SNARF promises.x SNARF r6rs-ports.x SNARF random.x SNARF rdelim.x SNARF read.x SNARF root.x SNARF rw.x SNARF scmsigs.x SNARF script.x SNARF simpos.x SNARF smob.x SNARF sort.x SNARF srcprop.x SNARF srfi-1.x SNARF srfi-4.x SNARF srfi-13.x SNARF srfi-14.x SNARF srfi-60.x SNARF stackchk.x SNARF stacks.x SNARF stime.x SNARF strings.x SNARF strorder.x SNARF strports.x SNARF struct.x SNARF symbols.x SNARF threads.x SNARF throw.x SNARF trees.x SNARF uniform.x SNARF values.x SNARF variable.x SNARF vectors.x SNARF version.x SNARF vports.x SNARF weaks.x SNARF frames.x SNARF instructions.x SNARF objcodes.x SNARF programs.x SNARF vm.x SNARF net_db.x SNARF socket.x SNARF win32-uname.x SNARF regex-posix.x SNARF mkstemp.x make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' CC libguile_2.0_la-alist.lo CC libguile_2.0_la-arbiters.lo CC libguile_2.0_la-array-handle.lo CC libguile_2.0_la-array-map.lo CC libguile_2.0_la-arrays.lo CC libguile_2.0_la-async.lo CC libguile_2.0_la-backtrace.lo CC libguile_2.0_la-boolean.lo CC libguile_2.0_la-bitvectors.lo CC libguile_2.0_la-bytevectors.lo CC libguile_2.0_la-chars.lo CC libguile_2.0_la-control.lo CC libguile_2.0_la-continuations.lo CC libguile_2.0_la-debug.lo CC libguile_2.0_la-deprecated.lo CC libguile_2.0_la-deprecation.lo CC libguile_2.0_la-dynwind.lo CC libguile_2.0_la-eq.lo CC libguile_2.0_la-error.lo CC libguile_2.0_la-eval.lo CC libguile_2.0_la-evalext.lo CC libguile_2.0_la-expand.lo CC libguile_2.0_la-extensions.lo CC libguile_2.0_la-feature.lo CC libguile_2.0_la-filesys.lo CC libguile_2.0_la-finalizers.lo CC libguile_2.0_la-fluids.lo CC libguile_2.0_la-foreign.lo CC libguile_2.0_la-fports.lo CC libguile_2.0_la-frames.lo CC libguile_2.0_la-gc-malloc.lo CC libguile_2.0_la-gc.lo CC libguile_2.0_la-gdbint.lo CC libguile_2.0_la-gettext.lo CC libguile_2.0_la-generalized-arrays.lo CC libguile_2.0_la-generalized-vectors.lo CC libguile_2.0_la-goops.lo CC libguile_2.0_la-gsubr.lo CC libguile_2.0_la-guardians.lo CC libguile_2.0_la-hash.lo CC libguile_2.0_la-hashtab.lo CC libguile_2.0_la-hooks.lo CC libguile_2.0_la-i18n.lo CC libguile_2.0_la-init.lo CC libguile_2.0_la-inline.lo CC libguile_2.0_la-instructions.lo CC libguile_2.0_la-ioext.lo CC libguile_2.0_la-keywords.lo CC libguile_2.0_la-list.lo CC libguile_2.0_la-load.lo CC libguile_2.0_la-macros.lo CC libguile_2.0_la-mallocs.lo CC libguile_2.0_la-memoize.lo CC libguile_2.0_la-modules.lo CC libguile_2.0_la-null-threads.lo CC libguile_2.0_la-numbers.lo CC libguile_2.0_la-objcodes.lo CC libguile_2.0_la-objprop.lo CC libguile_2.0_la-options.lo CC libguile_2.0_la-pairs.lo CC libguile_2.0_la-poll.lo CC libguile_2.0_la-ports.lo CC libguile_2.0_la-print.lo CC libguile_2.0_la-procprop.lo CC libguile_2.0_la-procs.lo CC libguile_2.0_la-programs.lo CC libguile_2.0_la-promises.lo CC libguile_2.0_la-r6rs-ports.lo CC libguile_2.0_la-random.lo CC libguile_2.0_la-rdelim.lo CC libguile_2.0_la-read.lo CC libguile_2.0_la-root.lo CC libguile_2.0_la-rw.lo CC libguile_2.0_la-scmsigs.lo CC libguile_2.0_la-script.lo CC libguile_2.0_la-simpos.lo CC libguile_2.0_la-smob.lo CC libguile_2.0_la-sort.lo CC libguile_2.0_la-srcprop.lo CC libguile_2.0_la-srfi-1.lo CC libguile_2.0_la-srfi-4.lo CC libguile_2.0_la-srfi-13.lo CC libguile_2.0_la-srfi-14.lo CC libguile_2.0_la-srfi-60.lo CC libguile_2.0_la-stackchk.lo CC libguile_2.0_la-stacks.lo CC libguile_2.0_la-stime.lo CC libguile_2.0_la-strings.lo CC libguile_2.0_la-strorder.lo CC libguile_2.0_la-strports.lo CC libguile_2.0_la-struct.lo CC libguile_2.0_la-symbols.lo CC libguile_2.0_la-threads.lo threads.c: In function 'scm_cancel_thread': threads.c:1178:7: warning: statement with no effect [-Wunused-value] CC libguile_2.0_la-throw.lo CC libguile_2.0_la-trees.lo CC libguile_2.0_la-uniform.lo CC libguile_2.0_la-values.lo CC libguile_2.0_la-variable.lo CC libguile_2.0_la-vectors.lo CC libguile_2.0_la-version.lo CC libguile_2.0_la-vm.lo CC libguile_2.0_la-vports.lo CC libguile_2.0_la-weaks.lo CCLD libguile-2.0.la libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. copying selected object files to avoid basename conflicts... CC guile-guile.o CCLD guile.exe libtool: link: warning: library `c:/mingw/lib/libunistring.la' was moved. GEN guile-procedures.texi rm -f guile-procedures.txt makeinfo --force -o guile-procedures.txt guile-procedures.texi || test -f guile-procedures.txt /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9934: Cross reference to nonexistent node `Backslash Escapes' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9629: Cross reference to nonexistent node `Network Address Conversion' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9568: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9518: Cross reference to nonexistent node `Network Databases' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9216: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9209: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9202: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:9116: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8481: Cross reference to nonexistent node `Vtables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:8099: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:7918: Cross reference to nonexistent node `Bitwise Operations' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6609: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6587: Cross reference to nonexistent node `Character Sets' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:6531: Cross reference to nonexistent node `Multiple Values' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5475: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5184: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5173: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:5162: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3203: Cross reference to nonexistent node `File Ports' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:3010: Cross reference to nonexistent node `Locales' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2681: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2674: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2667: Cross reference to nonexistent node `Hash Tables' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2097: Cross reference to nonexistent node `Character Encoding of Source Files' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2091: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). /c/Users/shookie/guiletest/lib/guile-2.0/libguile//guile-procedures.texi:2073: Cross reference to nonexistent node `Ports and File Descriptors' (perhaps incorrect sectioning?). make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib' /bin/sh ../libtool --mode=install /bin/install -c libguile-2.0.la '/c/Users/shookie/guiletest/lib/lib' libtool: install: /bin/install -c .libs/libguile-2.0.lai /c/Users/shookie/guiletest/lib/lib/libguile-2.0.la libtool: install: /bin/install -c .libs/libguile-2.0.a /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: chmod 644 /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: ranlib /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/sh ../libtool --mode=install /bin/install -c guile.exe '/c/Users/shookie/guiletest/lib/bin' libtool: install: /bin/install -c guile.exe /c/Users/shookie/guiletest/lib/bin/guile.exe /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-snarf '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' rm -f /c/Users/shookie/guiletest/lib/bin/guile-snarf.awk make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 __scm.h alist.h arbiters.h array-handle.h array-map.h arrays.h async.h backtrace.h bdw-gc.h boolean.h bitvectors.h bytevectors.h chars.h control.h continuations.h debug-malloc.h debug.h deprecated.h deprecation.h dynl.h dynwind.h eq.h error.h eval.h evalext.h expand.h extensions.h feature.h finalizers.h filesys.h fluids.h foreign.h fports.h frames.h gc.h gdb_interface.h gdbint.h gettext.h generalized-arrays.h generalized-vectors.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 goops.h gsubr.h guardians.h hash.h hashtab.h hooks.h i18n.h init.h inline.h instructions.h ioext.h iselect.h keywords.h list.h load.h macros.h mallocs.h memoize.h modules.h net_db.h null-threads.h numbers.h objcodes.h objprop.h options.h pairs.h poll.h ports.h posix.h print.h procprop.h procs.h programs.h promises.h pthread-threads.h r6rs-ports.h random.h rdelim.h read.h regex-posix.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 root.h rw.h scmsigs.h script.h simpos.h smob.h snarf.h socket.h sort.h srcprop.h srfi-1.h srfi-4.h srfi-13.h srfi-14.h srfi-60.h stackchk.h stacks.h stime.h strings.h strorder.h strports.h struct.h symbols.h tags.h threads.h throw.h trees.h validate.h uniform.h values.h variable.h vectors.h vm-engine.h vm-expand.h vm.h vports.h weaks.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 version.h scmconfig.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0' /bin/install -c -m 644 guile-procedures.txt '/c/Users/shookie/guiletest/lib/share/guile/2.0' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' Making install in module make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' GUILEC scripts/scan-api.go Backtrace: In system/base/compile.scm: 153: 19 [#<procedure 1e757a0 at system/base/compile.scm:151:8 (port)> #<closed: file 0>] 216: 18 [read-and-compile #<input: scripts/scan-api.scm 5> #:from ...] 232: 17 [lp () #f #<module (#{ g165}#) 1f5f8b8>] 180: 16 [lp # # # ...] In ice-9/boot-9.scm: 2207: 15 [save-module-excursion #<procedure 211c648 at language/scheme/compile-tree-il.scm:29:3 ()>] In language/scheme/compile-tree-il.scm: 31: 14 [#<procedure 211c648 at language/scheme/compile-tree-il.scm:29:3 ()>] In ice-9/psyntax.scm: 1091: 13 [expand-top-sequence ((define-module # :use-module # ...)) () ((top)) ...] 976: 12 [scan ((define-module (scripts scan-api) :use-module ...)) () ...] 270: 11 [scan ((#(syntax-object let # ...) (#) (# #) ...)) () ...] In ice-9/eval.scm: 411: 10 [eval # ()] In ice-9/boot-9.scm: 2757: 9 [define-module* (scripts scan-api) #:filename ...] 2732: 8 [resolve-imports (((ice-9 popen)) ((ice-9 rdelim)) ((ice-9 regex)))] 2670: 7 [resolve-interface (ice-9 popen) #:select ...] 2595: 6 [#<procedure 1d164c0 at ice-9/boot-9.scm:2583:4 (name #:optional autoload version #:key ensure)> # ...] 2868: 5 [try-module-autoload (ice-9 popen) #f] 2207: 4 [save-module-excursion #<procedure 2175e58 at ice-9/boot-9.scm:2869:17 ()>] 2888: 3 [#<procedure 2175e58 at ice-9/boot-9.scm:2869:17 ()>] In unknown file: ?: 2 [primitive-load-path "ice-9\\popen" ...] ?: 1 [load-extension "libguile-2.0" "scm_init_popen"] In ice-9/boot-9.scm: 106: 0 [#<procedure 1e75740 at ice-9/boot-9.scm:97:6 (thrown-k . args)> misc-error ...] ice-9/boot-9.scm:106:20: In procedure #<procedure 1e75740 at ice-9/boot-9.scm:97:6 (thrown-k . args)>: ice-9/boot-9.scm:106:20: In procedure dynamic-link: file: "libguile-2.0", message: "The specified module could not be found." make[3]: *** [scripts/scan-api.go] Error 1 GUILEC scripts/api-diff.go wrote `scripts/api-diff.go' GUILEC scripts/read-rfc822.go wrote `scripts/read-rfc822.go' GUILEC scripts/snarf-guile-m4-docs.go wrote `scripts/snarf-guile-m4-docs.go' GUILEC language/ecmascript/tokenize.go wrote `language/ecmascript/tokenize.go' GUILEC language/ecmascript/parse.go %% Shift/Reduce conflict (shift 36, reduce 82) on 'lbrace' in state 437 %% Shift/Reduce conflict (shift 35, reduce 82) on 'lparen' in state 437 %% Shift/Reduce conflict (shift 34, reduce 82) on 'lbracket' in state 437 %% Shift/Reduce conflict (shift 33, reduce 82) on 'dot' in state 437 %% Shift/Reduce conflict (shift 32, reduce 82) on 'semicolon' in state 437 %% Shift/Reduce conflict (shift 31, reduce 82) on '+' in state 437 %% Shift/Reduce conflict (shift 30, reduce 82) on '-' in state 437 %% Shift/Reduce conflict (shift 29, reduce 82) on '++' in state 437 %% Shift/Reduce conflict (shift 28, reduce 82) on '--' in state 437 %% Shift/Reduce conflict (shift 27, reduce 82) on '!' in state 437 %% Shift/Reduce conflict (shift 26, reduce 82) on '~' in state 437 %% Shift/Reduce conflict (shift 25, reduce 82) on 'break' in state 437 %% Shift/Reduce conflict (shift 24, reduce 82) on 'new' in state 437 %% Shift/Reduce conflict (shift 23, reduce 82) on 'var' in state 437 %% Shift/Reduce conflict (shift 22, reduce 82) on 'return' in state 437 %% Shift/Reduce conflict (shift 21, reduce 82) on 'void' in state 437 %% Shift/Reduce conflict (shift 20, reduce 82) on 'for' in state 437 %% Shift/Reduce conflict (shift 19, reduce 82) on 'switch' in state 437 %% Shift/Reduce conflict (shift 18, reduce 82) on 'while' in state 437 %% Shift/Reduce conflict (shift 17, reduce 82) on 'continue' in state 437 %% Shift/Reduce conflict (shift 82, reduce 82) on 'function' in state 437 %% Shift/Reduce conflict (shift 15, reduce 82) on 'this' in state 437 %% Shift/Reduce conflict (shift 14, reduce 82) on 'with' in state 437 %% Shift/Reduce conflict (shift 13, reduce 82) on 'if' in state 437 %% Shift/Reduce conflict (shift 12, reduce 82) on 'throw' in state 437 %% Shift/Reduce conflict (shift 11, reduce 82) on 'delete' in state 437 %% Shift/Reduce conflict (shift 10, reduce 82) on 'try' in state 437 %% Shift/Reduce conflict (shift 9, reduce 82) on 'do' in state 437 %% Shift/Reduce conflict (shift 8, reduce 82) on 'typeof' in state 437 %% Shift/Reduce conflict (shift 7, reduce 82) on 'null' in state 437 %% Shift/Reduce conflict (shift 6, reduce 82) on 'true' in state 437 %% Shift/Reduce conflict (shift 5, reduce 82) on 'false' in state 437 %% Shift/Reduce conflict (shift 4, reduce 82) on 'Identifier' in state 437 %% Shift/Reduce conflict (shift 3, reduce 82) on 'StringLiteral' in state 437 %% Shift/Reduce conflict (shift 2, reduce 82) on 'NumericLiteral' in state 437 %% Shift/Reduce conflict (shift 1, reduce 82) on 'RegexpLiteral' in state 437 %% Shift/Reduce conflict (shift 36, reduce 81) on 'lbrace' in state 424 %% Shift/Reduce conflict (shift 35, reduce 81) on 'lparen' in state 424 %% Shift/Reduce conflict (shift 34, reduce 81) on 'lbracket' in state 424 %% Shift/Reduce conflict (shift 33, reduce 81) on 'dot' in state 424 %% Shift/Reduce conflict (shift 32, reduce 81) on 'semicolon' in state 424 %% Shift/Reduce conflict (shift 31, reduce 81) on '+' in state 424 %% Shift/Reduce conflict (shift 30, reduce 81) on '-' in state 424 %% Shift/Reduce conflict (shift 29, reduce 81) on '++' in state 424 %% Shift/Reduce conflict (shift 28, reduce 81) on '--' in state 424 %% Shift/Reduce conflict (shift 27, reduce 81) on '!' in state 424 %% Shift/Reduce conflict (shift 26, reduce 81) on '~' in state 424 %% Shift/Reduce conflict (shift 25, reduce 81) on 'break' in state 424 %% Shift/Reduce conflict (shift 24, reduce 81) on 'new' in state 424 %% Shift/Reduce conflict (shift 23, reduce 81) on 'var' in state 424 %% Shift/Reduce conflict (shift 22, reduce 81) on 'return' in state 424 %% Shift/Reduce conflict (shift 21, reduce 81) on 'void' in state 424 %% Shift/Reduce conflict (shift 20, reduce 81) on 'for' in state 424 %% Shift/Reduce conflict (shift 19, reduce 81) on 'switch' in state 424 %% Shift/Reduce conflict (shift 18, reduce 81) on 'while' in state 424 %% Shift/Reduce conflict (shift 17, reduce 81) on 'continue' in state 424 %% Shift/Reduce conflict (shift 82, reduce 81) on 'function' in state 424 %% Shift/Reduce conflict (shift 15, reduce 81) on 'this' in state 424 %% Shift/Reduce conflict (shift 14, reduce 81) on 'with' in state 424 %% Shift/Reduce conflict (shift 13, reduce 81) on 'if' in state 424 %% Shift/Reduce conflict (shift 12, reduce 81) on 'throw' in state 424 %% Shift/Reduce conflict (shift 11, reduce 81) on 'delete' in state 424 %% Shift/Reduce conflict (shift 10, reduce 81) on 'try' in state 424 %% Shift/Reduce conflict (shift 9, reduce 81) on 'do' in state 424 %% Shift/Reduce conflict (shift 8, reduce 81) on 'typeof' in state 424 %% Shift/Reduce conflict (shift 7, reduce 81) on 'null' in state 424 %% Shift/Reduce conflict (shift 6, reduce 81) on 'true' in state 424 %% Shift/Reduce conflict (shift 5, reduce 81) on 'false' in state 424 %% Shift/Reduce conflict (shift 4, reduce 81) on 'Identifier' in state 424 %% Shift/Reduce conflict (shift 3, reduce 81) on 'StringLiteral' in state 424 %% Shift/Reduce conflict (shift 2, reduce 81) on 'NumericLiteral' in state 424 %% Shift/Reduce conflict (shift 1, reduce 81) on 'RegexpLiteral' in state 424 %% Shift/Reduce conflict (shift 36, reduce 84) on 'lbrace' in state 423 %% Shift/Reduce conflict (shift 35, reduce 84) on 'lparen' in state 423 %% Shift/Reduce conflict (shift 34, reduce 84) on 'lbracket' in state 423 %% Shift/Reduce conflict (shift 33, reduce 84) on 'dot' in state 423 %% Shift/Reduce conflict (shift 32, reduce 84) on 'semicolon' in state 423 %% Shift/Reduce conflict (shift 31, reduce 84) on '+' in state 423 %% Shift/Reduce conflict (shift 30, reduce 84) on '-' in state 423 %% Shift/Reduce conflict (shift 29, reduce 84) on '++' in state 423 %% Shift/Reduce conflict (shift 28, reduce 84) on '--' in state 423 %% Shift/Reduce conflict (shift 27, reduce 84) on '!' in state 423 %% Shift/Reduce conflict (shift 26, reduce 84) on '~' in state 423 %% Shift/Reduce conflict (shift 25, reduce 84) on 'break' in state 423 %% Shift/Reduce conflict (shift 24, reduce 84) on 'new' in state 423 %% Shift/Reduce conflict (shift 23, reduce 84) on 'var' in state 423 %% Shift/Reduce conflict (shift 22, reduce 84) on 'return' in state 423 %% Shift/Reduce conflict (shift 21, reduce 84) on 'void' in state 423 %% Shift/Reduce conflict (shift 20, reduce 84) on 'for' in state 423 %% Shift/Reduce conflict (shift 19, reduce 84) on 'switch' in state 423 %% Shift/Reduce conflict (shift 18, reduce 84) on 'while' in state 423 %% Shift/Reduce conflict (shift 17, reduce 84) on 'continue' in state 423 %% Shift/Reduce conflict (shift 82, reduce 84) on 'function' in state 423 %% Shift/Reduce conflict (shift 15, reduce 84) on 'this' in state 423 %% Shift/Reduce conflict (shift 14, reduce 84) on 'with' in state 423 %% Shift/Reduce conflict (shift 13, reduce 84) on 'if' in state 423 %% Shift/Reduce conflict (shift 12, reduce 84) on 'throw' in state 423 %% Shift/Reduce conflict (shift 11, reduce 84) on 'delete' in state 423 %% Shift/Reduce conflict (shift 10, reduce 84) on 'try' in state 423 %% Shift/Reduce conflict (shift 9, reduce 84) on 'do' in state 423 %% Shift/Reduce conflict (shift 8, reduce 84) on 'typeof' in state 423 %% Shift/Reduce conflict (shift 7, reduce 84) on 'null' in state 423 %% Shift/Reduce conflict (shift 6, reduce 84) on 'true' in state 423 %% Shift/Reduce conflict (shift 5, reduce 84) on 'false' in state 423 %% Shift/Reduce conflict (shift 4, reduce 84) on 'Identifier' in state 423 %% Shift/Reduce conflict (shift 3, reduce 84) on 'StringLiteral' in state 423 %% Shift/Reduce conflict (shift 2, reduce 84) on 'NumericLiteral' in state 423 %% Shift/Reduce conflict (shift 1, reduce 84) on 'RegexpLiteral' in state 423 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '--' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '++' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '-' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '+' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'semicolon' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'dot' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lbracket' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lparen' in state 422 %% Shift/Reduce conflict (shift 36, reduce 83) on 'lbrace' in state 400 %% Shift/Reduce conflict (shift 35, reduce 83) on 'lparen' in state 400 %% Shift/Reduce conflict (shift 34, reduce 83) on 'lbracket' in state 400 %% Shift/Reduce conflict (shift 33, reduce 83) on 'dot' in state 400 %% Shift/Reduce conflict (shift 32, reduce 83) on 'semicolon' in state 400 %% Shift/Reduce conflict (shift 31, reduce 83) on '+' in state 400 %% Shift/Reduce conflict (shift 30, reduce 83) on '-' in state 400 %% Shift/Reduce conflict (shift 29, reduce 83) on '++' in state 400 %% Shift/Reduce conflict (shift 28, reduce 83) on '--' in state 400 %% Shift/Reduce conflict (shift 27, reduce 83) on '!' in state 400 %% Shift/Reduce conflict (shift 26, reduce 83) on '~' in state 400 %% Shift/Reduce conflict (shift 25, reduce 83) on 'break' in state 400 %% Shift/Reduce conflict (shift 24, reduce 83) on 'new' in state 400 %% Shift/Reduce conflict (shift 23, reduce 83) on 'var' in state 400 %% Shift/Reduce conflict (shift 22, reduce 83) on 'return' in state 400 %% Shift/Reduce conflict (shift 21, reduce 83) on 'void' in state 400 %% Shift/Reduce conflict (shift 20, reduce 83) on 'for' in state 400 %% Shift/Reduce conflict (shift 19, reduce 83) on 'switch' in state 400 %% Shift/Reduce conflict (shift 18, reduce 83) on 'while' in state 400 %% Shift/Reduce conflict (shift 17, reduce 83) on 'continue' in state 400 %% Shift/Reduce conflict (shift 82, reduce 83) on 'function' in state 400 %% Shift/Reduce conflict (shift 15, reduce 83) on 'this' in state 400 %% Shift/Reduce conflict (shift 14, reduce 83) on 'with' in state 400 %% Shift/Reduce conflict (shift 13, reduce 83) on 'if' in state 400 %% Shift/Reduce conflict (shift 12, reduce 83) on 'throw' in state 400 %% Shift/Reduce conflict (shift 11, reduce 83) on 'delete' in state 400 %% Shift/Reduce conflict (shift 10, reduce 83) on 'try' in state 400 %% Shift/Reduce conflict (shift 9, reduce 83) on 'do' in state 400 %% Shift/Reduce conflict (shift 8, reduce 83) on 'typeof' in state 400 %% Shift/Reduce conflict (shift 7, reduce 83) on 'null' in state 400 %% Shift/Reduce conflict (shift 6, reduce 83) on 'true' in state 400 %% Shift/Reduce conflict (shift 5, reduce 83) on 'false' in state 400 %% Shift/Reduce conflict (shift 4, reduce 83) on 'Identifier' in state 400 %% Shift/Reduce conflict (shift 3, reduce 83) on 'StringLiteral' in state 400 %% Shift/Reduce conflict (shift 2, reduce 83) on 'NumericLiteral' in state 400 %% Shift/Reduce conflict (shift 1, reduce 83) on 'RegexpLiteral' in state 400 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '--' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '++' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '-' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '+' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'semicolon' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'dot' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lbracket' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lparen' in state 397 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 393 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 393 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 393 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 393 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 393 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 393 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 393 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 393 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 393 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 393 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 393 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 393 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 393 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 393 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 393 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 393 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 393 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 393 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 393 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 393 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 393 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 393 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 393 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 393 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 393 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 393 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 393 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 393 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 393 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 393 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 393 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 393 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 393 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 393 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 393 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 393 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 369 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 369 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 369 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 369 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 369 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 369 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 369 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 369 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 369 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 369 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 369 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 369 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 369 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 369 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 369 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 369 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 369 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 369 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 369 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 369 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 369 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 369 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 369 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 369 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 369 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 369 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 369 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 369 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 369 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 369 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 369 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 369 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 369 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 369 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 369 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 369 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 363 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 363 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 363 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 363 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 363 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 363 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 363 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 363 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 363 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 363 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 363 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 363 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 363 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 363 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 363 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 363 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 363 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 363 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 363 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 363 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 363 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 363 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 363 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 363 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 363 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 363 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 363 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 363 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 363 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 363 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 363 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 363 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 363 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 363 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 363 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 363 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 338 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 338 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 338 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 338 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 338 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 338 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 338 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 338 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 338 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 338 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 338 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 338 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 338 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 338 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 326 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 326 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 326 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 326 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 326 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 326 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 326 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 326 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 326 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 326 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 326 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 326 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 326 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 326 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 326 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 326 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 326 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 326 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 326 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 326 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 326 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 326 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 326 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 326 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 326 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 326 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 326 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 326 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 326 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 326 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 326 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 326 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 326 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 326 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 326 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 326 %% Shift/Reduce conflict (shift 36, reduce 16) on 'lbrace' in state 324 %% Shift/Reduce conflict (shift 35, reduce 16) on 'lparen' in state 324 %% Shift/Reduce conflict (shift 34, reduce 16) on 'lbracket' in state 324 %% Shift/Reduce conflict (shift 33, reduce 16) on 'dot' in state 324 %% Shift/Reduce conflict (shift 32, reduce 16) on 'semicolon' in state 324 %% Shift/Reduce conflict (shift 31, reduce 16) on '+' in state 324 %% Shift/Reduce conflict (shift 30, reduce 16) on '-' in state 324 %% Shift/Reduce conflict (shift 29, reduce 16) on '++' in state 324 %% Shift/Reduce conflict (shift 28, reduce 16) on '--' in state 324 %% Shift/Reduce conflict (shift 27, reduce 16) on '!' in state 324 %% Shift/Reduce conflict (shift 26, reduce 16) on '~' in state 324 %% Shift/Reduce conflict (shift 25, reduce 16) on 'break' in state 324 %% Shift/Reduce conflict (shift 24, reduce 16) on 'new' in state 324 %% Shift/Reduce conflict (shift 23, reduce 16) on 'var' in state 324 %% Shift/Reduce conflict (shift 22, reduce 16) on 'return' in state 324 %% Shift/Reduce conflict (shift 21, reduce 16) on 'void' in state 324 %% Shift/Reduce conflict (shift 20, reduce 16) on 'for' in state 324 %% Shift/Reduce conflict (shift 19, reduce 16) on 'switch' in state 324 %% Shift/Reduce conflict (shift 18, reduce 16) on 'while' in state 324 %% Shift/Reduce conflict (shift 17, reduce 16) on 'continue' in state 324 %% Shift/Reduce conflict (shift 16, reduce 16) on 'function' in state 324 %% Shift/Reduce conflict (shift 15, reduce 16) on 'this' in state 324 %% Shift/Reduce conflict (shift 14, reduce 16) on 'with' in state 324 %% Shift/Reduce conflict (shift 13, reduce 16) on 'if' in state 324 %% Shift/Reduce conflict (shift 12, reduce 16) on 'throw' in state 324 %% Shift/Reduce conflict (shift 11, reduce 16) on 'delete' in state 324 %% Shift/Reduce conflict (shift 10, reduce 16) on 'try' in state 324 %% Shift/Reduce conflict (shift 9, reduce 16) on 'do' in state 324 %% Shift/Reduce conflict (shift 8, reduce 16) on 'typeof' in state 324 %% Shift/Reduce conflict (shift 7, reduce 16) on 'null' in state 324 %% Shift/Reduce conflict (shift 6, reduce 16) on 'true' in state 324 %% Shift/Reduce conflict (shift 5, reduce 16) on 'false' in state 324 %% Shift/Reduce conflict (shift 4, reduce 16) on 'Identifier' in state 324 %% Shift/Reduce conflict (shift 3, reduce 16) on 'StringLiteral' in state 324 %% Shift/Reduce conflict (shift 2, reduce 16) on 'NumericLiteral' in state 324 %% Shift/Reduce conflict (shift 1, reduce 16) on 'RegexpLiteral' in state 324 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 321 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 321 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 321 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 321 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 321 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 321 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 321 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 321 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 321 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 321 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 321 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 321 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 321 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 321 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 321 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 321 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 321 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 321 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 321 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 321 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 321 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 321 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 321 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 321 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 321 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 321 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 321 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 321 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 321 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 321 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 321 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 321 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 321 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 321 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 321 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 321 %% Shift/Reduce conflict (shift 367, reduce 49) on 'else' in state 319 %% Shift/Reduce conflict (shift 216, reduce 42) on '=' in state 279 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 274 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 274 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 274 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 274 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 274 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 274 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 274 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 274 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 274 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 274 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 274 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 274 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 274 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 274 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 274 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 274 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 274 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 274 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 274 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 274 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 274 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 274 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 274 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 274 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 274 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 274 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 274 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 274 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 274 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 274 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 274 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 274 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 274 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 274 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 274 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 274 %% Shift/Reduce conflict (shift 144, reduce 177) on 'in' in state 242 %% Shift/Reduce conflict (shift 144, reduce 178) on 'in' in state 241 %% Shift/Reduce conflict (shift 144, reduce 179) on 'in' in state 240 %% Shift/Reduce conflict (shift 144, reduce 180) on 'in' in state 239 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 214 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 214 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 214 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 214 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 214 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 214 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 214 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 214 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 214 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 214 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 214 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 214 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 214 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 214 %% Shift/Reduce conflict (shift 301, reduce 139) on 'in' in state 214 %% Shift/Reduce conflict (shift 188, reduce 87) on 'finally' in state 190 %% Shift/Reduce conflict (shift 80, reduce 119) on 'colon' in state 125 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 107 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 107 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 107 %% Shift/Reduce conflict (shift 216, reduce 40) on '=' in state 103 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 85 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 85 %% Shift/Reduce conflict (shift 36, reduce 2) on 'lbrace' in state 75 %% Shift/Reduce conflict (shift 35, reduce 2) on 'lparen' in state 75 %% Shift/Reduce conflict (shift 34, reduce 2) on 'lbracket' in state 75 %% Shift/Reduce conflict (shift 33, reduce 2) on 'dot' in state 75 %% Shift/Reduce conflict (shift 32, reduce 2) on 'semicolon' in state 75 %% Shift/Reduce conflict (shift 31, reduce 2) on '+' in state 75 %% Shift/Reduce conflict (shift 30, reduce 2) on '-' in state 75 %% Shift/Reduce conflict (shift 29, reduce 2) on '++' in state 75 %% Shift/Reduce conflict (shift 28, reduce 2) on '--' in state 75 %% Shift/Reduce conflict (shift 27, reduce 2) on '!' in state 75 %% Shift/Reduce conflict (shift 26, reduce 2) on '~' in state 75 %% Shift/Reduce conflict (shift 25, reduce 2) on 'break' in state 75 %% Shift/Reduce conflict (shift 24, reduce 2) on 'new' in state 75 %% Shift/Reduce conflict (shift 23, reduce 2) on 'var' in state 75 %% Shift/Reduce conflict (shift 22, reduce 2) on 'return' in state 75 %% Shift/Reduce conflict (shift 21, reduce 2) on 'void' in state 75 %% Shift/Reduce conflict (shift 20, reduce 2) on 'for' in state 75 %% Shift/Reduce conflict (shift 19, reduce 2) on 'switch' in state 75 %% Shift/Reduce conflict (shift 18, reduce 2) on 'while' in state 75 %% Shift/Reduce conflict (shift 17, reduce 2) on 'continue' in state 75 %% Shift/Reduce conflict (shift 16, reduce 2) on 'function' in state 75 %% Shift/Reduce conflict (shift 15, reduce 2) on 'this' in state 75 %% Shift/Reduce conflict (shift 14, reduce 2) on 'with' in state 75 %% Shift/Reduce conflict (shift 13, reduce 2) on 'if' in state 75 %% Shift/Reduce conflict (shift 12, reduce 2) on 'throw' in state 75 %% Shift/Reduce conflict (shift 11, reduce 2) on 'delete' in state 75 %% Shift/Reduce conflict (shift 10, reduce 2) on 'try' in state 75 %% Shift/Reduce conflict (shift 9, reduce 2) on 'do' in state 75 %% Shift/Reduce conflict (shift 8, reduce 2) on 'typeof' in state 75 %% Shift/Reduce conflict (shift 7, reduce 2) on 'null' in state 75 %% Shift/Reduce conflict (shift 6, reduce 2) on 'true' in state 75 %% Shift/Reduce conflict (shift 5, reduce 2) on 'false' in state 75 %% Shift/Reduce conflict (shift 4, reduce 2) on 'Identifier' in state 75 %% Shift/Reduce conflict (shift 3, reduce 2) on 'StringLiteral' in state 75 %% Shift/Reduce conflict (shift 2, reduce 2) on 'NumericLiteral' in state 75 %% Shift/Reduce conflict (shift 1, reduce 2) on 'RegexpLiteral' in state 75 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 56 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 56 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 56 %% Shift/Reduce conflict (shift 174, reduce 138) on 'lparen' in state 54 %% Shift/Reduce conflict (shift 173, reduce 138) on 'lbracket' in state 54 %% Shift/Reduce conflict (shift 172, reduce 138) on 'dot' in state 54 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 53 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 53 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 53 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 53 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 53 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 53 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 53 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 53 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 53 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 53 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 53 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 53 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 53 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 53 %% Shift/Reduce conflict (shift 153, reduce 159) on '+' in state 49 %% Shift/Reduce conflict (shift 152, reduce 159) on '-' in state 49 %% Shift/Reduce conflict (shift 144, reduce 176) on 'in' in state 47 wrote `language/ecmascript/parse.go' GUILEC language/ecmascript/impl.go wrote `language/ecmascript/impl.go' GUILEC language/ecmascript/base.go wrote `language/ecmascript/base.go' language/ecmascript/base.scm:227:22: warning: possibly unbound variable `Boolean' language/ecmascript/base.scm:228:21: warning: possibly unbound variable `String' language/ecmascript/base.scm:229:21: warning: possibly unbound variable `Number' GUILEC language/ecmascript/function.go wrote `language/ecmascript/function.go' language/ecmascript/function.scm:40:9: warning: possibly unbound variable `<js-array-object>' language/ecmascript/function.scm:44:43: warning: possibly unbound variable `js-array-vector' GUILEC language/ecmascript/array.go wrote `language/ecmascript/array.go' GUILEC language/ecmascript/compile-tree-il.go wrote `language/ecmascript/compile-tree-il.go' GUILEC language/ecmascript/spec.go wrote `language/ecmascript/spec.go' GUILEC language/elisp/lexer.go wrote `language/elisp/lexer.go' GUILEC language/elisp/parser.go wrote `language/elisp/parser.go' GUILEC language/elisp/bindings.go wrote `language/elisp/bindings.go' GUILEC language/elisp/compile-tree-il.go wrote `language/elisp/compile-tree-il.go' GUILEC language/elisp/runtime.go wrote `language/elisp/runtime.go' GUILEC language/elisp/runtime/function-slot.go WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `if' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let*' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `while' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `defmacro' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `quote' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `lambda' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `when' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `unless' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `cond' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `and' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `or' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `catch' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `max' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `min' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `abs' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1+}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1-}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `+' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `-' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `*' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `car' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cdr' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `length' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cons' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `list' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `make-list' WARNING: (language elisp runtime function-slot): importewrote `language/elisp/runtime/function-slot.go' d module (language elisp runtime subrs) overrides core binding `append' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `reverse' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `copy-tree' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `apply' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `throw' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `not' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `eval' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `load' GUILEC language/elisp/runtime/value-slot.go wrote `language/elisp/runtime/value-slot.go' GUILEC language/elisp/runtime/macros.go wrote `language/elisp/runtime/macros.go' GUILEC language/elisp/runtime/subrs.go wrote `language/elisp/runtime/subrs.go' GUILEC language/elisp/spec.go wrote `language/elisp/spec.go' GUILEC language/brainfuck/parse.go wrote `language/brainfuck/parse.go' GUILEC language/brainfuck/compile-scheme.go wrote `language/brainfuck/compile-scheme.go' GUILEC language/brainfuck/compile-tree-il.go wrote `language/brainfuck/compile-tree-il.go' GUILEC language/brainfuck/spec.go wrote `language/brainfuck/spec.go' GUILEC statprof.go wrote `statprof.go' statprof.scm:303:8: warning: possibly unbound variable `setitimer' statprof.scm:303:8: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:355:12: warning: possibly unbound variable `setitimer' statprof.scm:355:12: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:356:12: warning: possibly unbound variable `setitimer' statprof.scm:356:12: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:380:34: warning: possibly unbound variable `setitimer' statprof.scm:380:34: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:404:2: warning: possibly unbound variable `SIGPROF' GUILEC sxml/apply-templates.go wrote `sxml/apply-templates.go' GUILEC sxml/fold.go wrote `sxml/fold.go' GUILEC sxml/match.go wrote `sxml/match.go' GUILEC sxml/simple.go wrote `sxml/simple.go' GUILEC sxml/ssax/input-parse.go wrote `sxml/ssax/input-parse.go' GUILEC sxml/ssax.go wrote `sxml/ssax.go' GUILEC sxml/transform.go wrote `sxml/transform.go' GUILEC sxml/xpath.go wrote `sxml/xpath.go' GUILEC texinfo.go wrote `texinfo.go' texinfo.scm:102:19: warning: possibly unbound variable `chdir' texinfo.scm:105:19: warning: possibly unbound variable `chdir' GUILEC texinfo/docbook.go wrote `texinfo/docbook.go' GUILEC texinfo/html.go wrote `texinfo/html.go' GUILEC texinfo/indexing.go wrote `texinfo/indexing.go' GUILEC texinfo/string-utils.go wrote `texinfo/string-utils.go' GUILEC texinfo/plain-text.go wrote `texinfo/plain-text.go' GUILEC texinfo/reflection.go wrote `texinfo/reflection.go' GUILEC texinfo/serialize.go wrote `texinfo/serialize.go' GUILEC web/client.go wrote `web/client.go' web/client.scm:90:10: warning: possibly unbound variable `close' GUILEC web/http.go wrote `web/http.go' GUILEC web/request.go wrote `web/request.go' GUILEC web/response.go wrote `web/response.go' GUILEC web/server.go web/server.scm:314:24: warning: possibly unbound variable `SIGINT' web/server.scm:319:22: warning: possibly unbound variable `SIGINT' web/server.scm:321:22: warning: possibly unbound variable `SIGINT' wrote `web/server.go' GUILEC web/server/http.go web/server/http.scm:67:2: warning: possibly unbound variable `SIGPIPE' wrote `web/server/http.go' GUILEC web/uri.go wrote `web/uri.go' make[3]: Target `install' not remade because of errors. make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' Making install in guile-readline make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0/' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' Making install in examples make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' Making install in emacs make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' Making install in test-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in standalone make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make install-am make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Nothing to be done for `install-exec-am'. make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' Making install in vm make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in benchmark-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' Making install in gc-benchmarks make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' Making install in am make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' Making install in doc make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' Making install in ref make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' MAKEINFO guile.info make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./guile.info ./guile.info-1 ./guile.info-2 ./guile.info-3 ./guile.info-4 ./guile.info-5 ./guile.info-6 ./guile.info-7 ./guile.info-8 ./guile.info-9 ./guile.info-10 '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/guile.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' Making install in r5rs make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./r5rs.info '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/r5rs.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/man/man1' /bin/install -c -m 644 guile.1 '/c/Users/shookie/guiletest/lib/share/man/man1' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0' /bin/install -c -m 644 libguile.h '/c/Users/shookie/guiletest/lib/include/guile/2.0' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[1]: *** [install] Error 2 make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make: *** [lib/lib/libguile-2.0.a] Error 2 ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-16 1:36 ` Jan Schukat @ 2013-03-29 19:35 ` Ludovic Courtès 2013-03-30 0:20 ` Jan Schukat 0 siblings, 1 reply; 42+ messages in thread From: Ludovic Courtès @ 2013-03-29 19:35 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848-done Jan Schukat <shookie@email.de> skribis: > Ok finally got to it. Made 3 builds from the 194-dfd1d tarball: mingw > with posix and threads, without posix and threads and linux with posix > and threads. > > All three still have problems compiling the scheme code. All three > have problems with scan-api and two of them with popen. I believe the popen-related issues are fixed by <http://git.savannah.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=df3d365a99311ecfe921d1dfd1848ff65112e572>. You can check with a tarball from <http://hydra.nixos.org/job/gnu/guile-2-0/tarball/latest/download>. Thanks! Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-29 19:35 ` Ludovic Courtès @ 2013-03-30 0:20 ` Jan Schukat 2013-03-30 21:27 ` Ludovic Courtès 0 siblings, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-03-30 0:20 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848-done [-- Attachment #1: Type: text/plain, Size: 1382 bytes --] Must be psychic! Today I was just thinking about giving it a try on windows again. It builds with only a few warnings, and as far as I have seen all scheme modules are compiled into .go files in the ccache. Starting the guile.exe or my own guiletest.exe still fails due to init not finding the paths to the scheme modules, but that is something I need to look into anyway, and will do that over Easter. It's possible that that is due to the different path treatment in mingw and windows proper, or it could just be that guile can't handle windows paths with drive letters, colons and backslashes. I have attached my build log anyway, in case that is of interest. Regards Jan Schukat On 03/29/2013 08:35 PM, Ludovic Courtès wrote: > Jan Schukat <shookie@email.de> skribis: > >> Ok finally got to it. Made 3 builds from the 194-dfd1d tarball: mingw >> with posix and threads, without posix and threads and linux with posix >> and threads. >> >> All three still have problems compiling the scheme code. All three >> have problems with scan-api and two of them with popen. > I believe the popen-related issues are fixed by > <http://git.savannah.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=df3d365a99311ecfe921d1dfd1848ff65112e572>. > > You can check with a tarball from > <http://hydra.nixos.org/job/gnu/guile-2-0/tarball/latest/download>. > > Thanks! > > Ludo’. > [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: build_windows.log --] [-- Type: text/x-log; name="build_windows.log", Size: 172868 bytes --] cd lib/guile-2.0 && ./configure --prefix=/c/Users/shookie/guiletest/lib --disable-shared --disable-fast-install --with-gnu-ld --disable-deprecated --enable-nls --with-libgmp-prefix=/c/Users/shookie/guiletest/lib LIBFFI_CFLAGS='-I/c/Users/shookie/guiletest/lib/lib/libffi-3.0.12/include' LIBFFI_LIBS='-lffi' BDW_GC_LIBS='-lgc' BDW_GC_CFLAGS='-I/c/Users/shookie/guiletest/lib' CPPFLAGS='-D HAVE_GC_SET_FINALIZER_NOTIFIER -D HAVE_GC_GET_FREE_SPACE_DIVISOR -D HAVE_GC_GET_HEAP_USAGE_SAFE -D HAVE_GC_SET_FINALIZE_ON_DEMAND' CFLAGS='-s' && make -k install checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking build system type... i686-pc-mingw32 checking host system type... i686-pc-mingw32 checking for as... as checking for dlltool... dlltool checking for objdump... objdump checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.exe checking for suffix of executables... .exe checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for Minix Amsterdam compiler... no checking for ar... ar checking for ranlib... ranlib checking whether gcc and cc understand -c and -o together... yes checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... unknown checking for _LARGE_FILES value needed for large files... unknown configure: autobuild project... GNU Guile configure: autobuild revision... 2.0.7.259-beac4-dirty configure: autobuild hostname... bias configure: autobuild timestamp... 20130329T221341Z checking how to run the C preprocessor... gcc -E checking for a sed that does not truncate output... /bin/sed checking for gawk... (cached) gawk checking whether ln -s works... no, using cp -pR checking the archiver (ar) interface... ar checking for sys/socket.h... no checking for arpa/inet.h... no checking for features.h... no checking for sys/param.h... yes checking for dirent.h... yes checking for xlocale.h... no checking for unistd.h... (cached) yes checking for sys/stat.h... (cached) yes checking for netdb.h... no checking for netinet/in.h... no checking for iconv.h... yes checking for langinfo.h... no checking for math.h... yes checking for sys/mman.h... no checking for poll.h... no checking for sys/ioctl.h... no checking for sys/filio.h... no checking for sys/select.h... no checking for sys/time.h... yes checking for wchar.h... yes checking for stdint.h... (cached) yes checking for sys/file.h... yes checking for sys/times.h... no checking for sys/uio.h... no checking for wctype.h... yes checking ws2tcpip.h usability... yes checking ws2tcpip.h presence... yes checking for ws2tcpip.h... yes checking whether the preprocessor supports include_next... yes checking whether system header files limit the line length... no checking whether <sys/socket.h> is self-contained... no checking for struct sockaddr_storage... yes checking for sa_family_t... no checking for struct sockaddr_storage.ss_family... yes checking winsock2.h usability... yes checking winsock2.h presence... yes checking for winsock2.h... yes checking whether socket is declared without a macro... no checking whether connect is declared without a macro... no checking whether accept is declared without a macro... no checking whether bind is declared without a macro... no checking whether getpeername is declared without a macro... no checking whether getsockname is declared without a macro... no checking whether getsockopt is declared without a macro... no checking whether listen is declared without a macro... no checking whether recv is declared without a macro... no checking whether send is declared without a macro... no checking whether recvfrom is declared without a macro... no checking whether sendto is declared without a macro... no checking whether setsockopt is declared without a macro... no checking whether shutdown is declared without a macro... no checking whether accept4 is declared without a macro... no checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking whether <wchar.h> uses 'inline' correctly... yes checking for btowc... yes checking for canonicalize_file_name... no checking for getcwd... yes checking for readlink... no checking for realpath... no checking for _set_invalid_parameter_handler... no checking for duplocale... no checking for symlink... no checking for flock... no checking for fcntl... no checking for alarm... no checking for getlogin... no checking for lstat... no checking for mbsinit... yes checking for mbrtowc... yes checking for mprotect... yes checking for nl_langinfo... no checking for pipe... no checking for pipe2... no checking for isblank... yes checking for iswctype... yes checking for wcscoll... yes checking for link... no checking for setenv... no checking for snprintf... yes checking for tzset... yes checking for localtime_r... no checking for times... no checking for vasnprintf... no checking for wcrtomb... yes checking for iswcntrl... yes checking for nl_langinfo and CODESET... no checking for a traditional french locale... French_France.1252 checking whether // is distinct from /... yes checking whether realpath works... no checking for wchar_t... yes checking whether NULL can be used in arbitrary expressions... yes checking whether locale.h conforms to POSIX:2001... no checking whether struct lconv is properly defined... no checking whether setlocale is declared without a macro... yes checking whether duplocale is declared without a macro... no checking if environ is properly declared... yes checking for complete errno.h... no checking for EMULTIHOP value... no checking for ENOLINK value... no checking for EOVERFLOW value... no checking for working fcntl.h... no checking for pid_t... yes checking for mode_t... yes checking whether frexp() can be used without linking with libm... yes checking whether stat file-mode macros are broken... no checking for 64-bit off_t... no checking for nlink_t... no checking whether fchmodat is declared without a macro... no checking whether fstat is declared without a macro... yes checking whether fstatat is declared without a macro... no checking whether futimens is declared without a macro... no checking whether lchmod is declared without a macro... no checking whether lstat is declared without a macro... no checking whether mkdirat is declared without a macro... no checking whether mkfifo is declared without a macro... no checking whether mkfifoat is declared without a macro... no checking whether mknod is declared without a macro... no checking whether mknodat is declared without a macro... no checking whether stat is declared without a macro... yes checking whether utimensat is declared without a macro... no checking whether getaddrinfo is declared without a macro... no checking whether freeaddrinfo is declared without a macro... no checking whether gai_strerror is declared without a macro... no checking whether getnameinfo is declared without a macro... no checking for library containing gethostbyname... no checking for gethostbyname... no checking for gethostbyname in winsock2.h and -lws2_32... yes checking for library containing getservbyname... no checking for getservbyname... no checking for getservbyname in winsock2.h and -lws2_32... yes checking for C/C++ restrict keyword... __restrict checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... no checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for shared library run path origin... done checking for iconv... yes checking for working iconv... yes checking how to link with libiconv... -liconv checking for iconv declaration... extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for inline... inline checking whether byte ordering is bigendian... no checking whether long double and double are the same... no checking where to find the exponent in a 'float'... word 0 bit 23 checking whether isnan(float) can be used without linking with libm... yes checking whether isnan(float) works... yes checking whether isnan(double) can be used without linking with libm... yes checking whether isnan(long double) can be used without linking with libm... yes checking whether isnanl works... no checking where to find the exponent in a 'double'... word 1 bit 20 checking whether ldexp() can be used without linking with libm... yes checking for libunistring... yes checking how to link with libunistring... -lunistring checking for libunistring version... 0.9.3 checking whether getc_unlocked is declared... no checking whether we are using the GNU C Library >= 2.1 or uClibc... no checking whether pow can be used without linking with libm... yes checking whether log works... yes checking whether round is declared... yes checking whether round works... yes checking whether lstat correctly handles trailing slash... guessing no checking whether malloc, realloc, calloc are POSIX compliant... no checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for unsigned long long int... yes checking for long long int... yes checking for mbstate_t... yes checking for a traditional japanese locale... none checking for a transitional chinese locale... none checking for a french Unicode locale... none checking for mmap... no checking whether memchr works... yes checking for promoted mode_t type... int checking whether poll is declared without a macro... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... yes checking for ssize_t... yes checking whether <sys/select.h> is self-contained... no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... no checking whether select is declared without a macro... no checking whether setenv is declared... no checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking for sigset_t... yes checking for uid_t in sys/types.h... no checking whether snprintf returns a byte count as in C99... yes checking whether snprintf is declared... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking whether stdint.h conforms to C99... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_zone... no checking whether tzname is declared... yes checking for tzname... yes checking for struct tm.tm_gmtoff... no checking whether ffsl is declared without a macro... no checking whether ffsll is declared without a macro... no checking whether memmem is declared without a macro... no checking whether mempcpy is declared without a macro... no checking whether memrchr is declared without a macro... no checking whether rawmemchr is declared without a macro... no checking whether stpcpy is declared without a macro... no checking whether stpncpy is declared without a macro... no checking whether strchrnul is declared without a macro... no checking whether strdup is declared without a macro... yes checking whether strncat is declared without a macro... yes checking whether strndup is declared without a macro... no checking whether strnlen is declared without a macro... no checking whether strpbrk is declared without a macro... yes checking whether strsep is declared without a macro... no checking whether strcasestr is declared without a macro... no checking whether strtok_r is declared without a macro... no checking whether strerror_r is declared without a macro... no checking whether strsignal is declared without a macro... no checking whether strverscmp is declared without a macro... no checking for winsock2.h... (cached) yes checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking whether gettimeofday is declared without a macro... yes checking for struct timespec in <time.h>... no checking for struct timespec in <sys/time.h>... no checking for struct timespec in <pthread.h>... yes checking for wint_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking for snprintf... (cached) yes checking for strnlen... no checking for wcslen... yes checking for wcsnlen... no checking for mbrtowc... (cached) yes checking for wcrtomb... (cached) yes checking whether _snprintf is declared... yes checking whether vsnprintf is declared... yes checking whether inet_ntop is declared without a macro... no checking whether inet_pton is declared without a macro... no checking whether btowc(0) is correct... yes checking whether btowc(EOF) is correct... yes checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking for library containing clock_gettime... no checking for clock_gettime... no checking for clock_settime... no checking for clock_getcpuclockid... no checking for winsock2.h... (cached) yes checking whether alphasort is declared without a macro... no checking whether closedir is declared without a macro... yes checking whether dirfd is declared without a macro... no checking whether fdopendir is declared without a macro... no checking whether opendir is declared without a macro... yes checking whether readdir is declared without a macro... yes checking whether rewinddir is declared without a macro... yes checking whether scandir is declared without a macro... no checking for dirfd... no checking whether dirfd is declared... no checking whether dirfd is a macro... no checking how to get the file descriptor associated with an open DIR*... no_such_member checking whether // is distinct from /... (cached) yes checking whether dup2 works... no checking whether fcntl is declared without a macro... no checking whether openat is declared without a macro... no checking whether conversion from 'int' to 'long double' works... yes checking for struct flock.l_type... no checking whether frexp works... no checking whether __func__ is available... yes configure: checking how to do getaddrinfo, freeaddrinfo and getnameinfo checking for library containing getaddrinfo... no checking for getaddrinfo... no checking for getaddrinfo in ws2tcpip.h and -lws2_32... no checking whether gai_strerror is declared... yes checking whether gai_strerrorA is declared... yes checking for gai_strerror with POSIX signature... no checking for struct sockaddr.sa_len... no checking whether getaddrinfo is declared... no checking whether freeaddrinfo is declared... no checking whether getnameinfo is declared... no checking for struct addrinfo... yes checking for library containing gethostbyname... (cached) no checking for gethostbyname... (cached) no checking for gethostbyname in winsock2.h and -lws2_32... (cached) yes checking whether iconv supports conversion between UTF-8 and UTF-{16,32}{BE,LE}... yes checking for winsock2.h... (cached) yes checking whether inet_ntop is declared... (cached) no checking for winsock2.h... (cached) yes checking whether inet_pton is declared... no checking whether the compiler generally respects inline... no checking whether isinf is declared... yes checking whether isinf(long double) works... yes checking whether isnan macro works... no checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(double) can be used without linking with libm... (cached) yes checking whether isnan(float) can be used without linking with libm... (cached) yes checking whether isnan(float) works... (cached) yes checking where to find the exponent in a 'float'... (cached) word 0 bit 23 checking whether isnan(long double) can be used without linking with libm... (cached) yes checking whether isnanl works... (cached) no checking where to find the exponent in a 'long double'... word 2 bit 0 checking whether nl_langinfo is declared without a macro... no checking if LD -Wl,--version-script works... yes checking whether the -Werror option is usable... yes checking for simple visibility declarations... yes checking whether locale.h conforms to POSIX:2001... (cached) no checking whether struct lconv is properly defined... (cached) no checking whether setlocale is declared without a macro... (cached) yes checking whether duplocale is declared without a macro... (cached) no checking for struct lconv.decimal_point... yes checking for log1p... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking whether NAN macro works... yes checking whether HUGE_VAL works... yes checking whether acosf is declared without a macro... yes checking whether acosl is declared without a macro... yes checking whether asinf is declared without a macro... yes checking whether asinl is declared without a macro... yes checking whether atanf is declared without a macro... yes checking whether atanl is declared without a macro... yes checking whether cbrt is declared without a macro... yes checking whether cbrtf is declared without a macro... yes checking whether cbrtl is declared without a macro... yes checking whether ceilf is declared without a macro... yes checking whether ceill is declared without a macro... yes checking whether copysign is declared without a macro... yes checking whether copysignf is declared without a macro... yes checking whether copysignl is declared without a macro... yes checking whether cosf is declared without a macro... yes checking whether cosl is declared without a macro... yes checking whether coshf is declared without a macro... yes checking whether expf is declared without a macro... yes checking whether expl is declared without a macro... yes checking whether exp2 is declared without a macro... yes checking whether exp2f is declared without a macro... yes checking whether exp2l is declared without a macro... yes checking whether expm1 is declared without a macro... yes checking whether expm1f is declared without a macro... yes checking whether expm1l is declared without a macro... yes checking whether fabsf is declared without a macro... yes checking whether fabsl is declared without a macro... yes checking whether floorf is declared without a macro... yes checking whether floorl is declared without a macro... yes checking whether fma is declared without a macro... yes checking whether fmaf is declared without a macro... yes checking whether fmal is declared without a macro... yes checking whether fmod is declared without a macro... yes checking whether fmodf is declared without a macro... yes checking whether fmodl is declared without a macro... yes checking whether frexpf is declared without a macro... yes checking whether frexpl is declared without a macro... yes checking whether hypotf is declared without a macro... yes checking whether hypotl is declared without a macro... yes checking whether ilogb is declared without a macro... yes checking whether ilogbf is declared without a macro... yes checking whether ilogbl is declared without a macro... yes checking whether ldexpf is declared without a macro... yes checking whether ldexpl is declared without a macro... yes checking whether log is declared without a macro... yes checking whether logf is declared without a macro... yes checking whether logl is declared without a macro... yes checking whether log10 is declared without a macro... yes checking whether log10f is declared without a macro... yes checking whether log10l is declared without a macro... yes checking whether log1p is declared without a macro... yes checking whether log1pf is declared without a macro... yes checking whether log1pl is declared without a macro... yes checking whether log2 is declared without a macro... yes checking whether log2f is declared without a macro... yes checking whether log2l is declared without a macro... yes checking whether logb is declared without a macro... yes checking whether logbf is declared without a macro... yes checking whether logbl is declared without a macro... yes checking whether modf is declared without a macro... yes checking whether modff is declared without a macro... yes checking whether modfl is declared without a macro... yes checking whether powf is declared without a macro... yes checking whether remainder is declared without a macro... yes checking whether remainderf is declared without a macro... yes checking whether remainderl is declared without a macro... yes checking whether rint is declared without a macro... yes checking whether rintf is declared without a macro... yes checking whether rintl is declared without a macro... yes checking whether round is declared without a macro... yes checking whether roundf is declared without a macro... yes checking whether roundl is declared without a macro... yes checking whether sinf is declared without a macro... yes checking whether sinl is declared without a macro... yes checking whether sinhf is declared without a macro... yes checking whether sqrtf is declared without a macro... yes checking whether sqrtl is declared without a macro... yes checking whether tanf is declared without a macro... yes checking whether tanl is declared without a macro... yes checking whether tanhf is declared without a macro... yes checking whether trunc is declared without a macro... yes checking whether truncf is declared without a macro... yes checking whether truncl is declared without a macro... yes checking whether mbrtowc handles incomplete characters... guessing yes checking whether mbrtowc works as well as mbtowc... guessing yes checking whether mbrtowc handles a NULL pwc argument... guessing yes checking whether mbrtowc handles a NULL string argument... guessing yes checking whether mbrtowc has a correct return value... no checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether getaddrinfo is declared without a macro... (cached) no checking whether freeaddrinfo is declared without a macro... (cached) no checking whether gai_strerror is declared without a macro... (cached) no checking whether getnameinfo is declared without a macro... (cached) no checking whether <netinet/in.h> is self-contained... no checking for netinet/in.h... (cached) no checking for sys/pstat.h... no checking for sys/sysmp.h... no checking for sys/param.h... (cached) yes checking for sys/sysctl.h... no checking for sched_getaffinity... no checking for sched_getaffinity_np... no checking for pstat_getdynamic... no checking for sysmp... no checking for sysctl... no checking for poll... (cached) no checking whether poll is declared without a macro... (cached) no checking for putenv compatible with GNU and SVID... no checking for _putenv... yes checking for raise... yes checking for working re_compile_pattern... no checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking whether isblank is declared... yes checking whether rename honors trailing slash on destination... no checking whether rename honors trailing slash on source... yes checking whether rename manages hard links correctly... yes checking whether rename manages existing destinations correctly... no checking whether rmdir works... no checking whether round is declared... (cached) yes checking whether round works... (cached) yes checking for library containing getservbyname... (cached) no checking for getservbyname... (cached) no checking for getservbyname in winsock2.h and -lws2_32... (cached) yes checking for volatile sig_atomic_t... yes checking for sighandler_t... no checking whether pthread_sigmask is declared without a macro... no checking whether sigaction is declared without a macro... no checking whether sigaddset is declared without a macro... no checking whether sigdelset is declared without a macro... no checking whether sigemptyset is declared without a macro... no checking whether sigfillset is declared without a macro... no checking whether sigismember is declared without a macro... no checking whether sigpending is declared without a macro... no checking whether sigprocmask is declared without a macro... no checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking for snprintf... (cached) yes checking whether snprintf respects a size of 1... yes checking whether printf supports POSIX/XSI format strings with positions... no checking for winsock2.h... (cached) yes checking if we need to call WSAStartup in winsock2.h and -lws2_32... (cached) yes checking for socklen_t... yes checking for ssize_t... (cached) yes checking whether stat handles trailing slashes on directories... no checking whether stat handles trailing slashes on files... yes checking for struct stat.st_atim.tv_nsec... no checking for struct stat.st_atimespec.tv_nsec... no checking for struct stat.st_atimensec... no checking for struct stat.st_atim.st__tim.tv_nsec... no checking for struct stat.st_birthtimespec.tv_nsec... no checking for struct stat.st_birthtimensec... no checking for struct stat.st_birthtim.tv_nsec... no checking for working stdalign.h... yes checking whether NULL can be used in arbitrary expressions... (cached) yes checking whether dprintf is declared without a macro... no checking whether fpurge is declared without a macro... no checking whether fseeko is declared without a macro... no checking whether ftello is declared without a macro... no checking whether getdelim is declared without a macro... no checking whether getline is declared without a macro... no checking whether gets is declared without a macro... yes checking whether pclose is declared without a macro... yes checking whether popen is declared without a macro... yes checking whether renameat is declared without a macro... no checking whether snprintf is declared without a macro... yes checking whether tmpfile is declared without a macro... yes checking whether vdprintf is declared without a macro... no checking whether vsnprintf is declared without a macro... yes checking whether _Exit is declared without a macro... yes checking whether atoll is declared without a macro... yes checking whether canonicalize_file_name is declared without a macro... no checking whether getloadavg is declared without a macro... no checking whether getsubopt is declared without a macro... no checking whether grantpt is declared without a macro... no checking whether initstate is declared without a macro... no checking whether initstate_r is declared without a macro... no checking whether mkdtemp is declared without a macro... no checking whether mkostemp is declared without a macro... no checking whether mkostemps is declared without a macro... no checking whether mkstemp is declared without a macro... no checking whether mkstemps is declared without a macro... no checking whether posix_openpt is declared without a macro... no checking whether ptsname is declared without a macro... no checking whether ptsname_r is declared without a macro... no checking whether random is declared without a macro... no checking whether random_r is declared without a macro... no checking whether realpath is declared without a macro... no checking whether rpmatch is declared without a macro... no checking whether secure_getenv is declared without a macro... no checking whether setenv is declared without a macro... no checking whether setstate is declared without a macro... no checking whether setstate_r is declared without a macro... no checking whether srandom is declared without a macro... no checking whether srandom_r is declared without a macro... no checking whether strtod is declared without a macro... yes checking whether strtoll is declared without a macro... yes checking whether strtoull is declared without a macro... yes checking whether unlockpt is declared without a macro... no checking whether unsetenv is declared without a macro... no checking whether flock is declared without a macro... no checking whether <sys/select.h> is self-contained... (cached) no checking for winsock2.h... (cached) yes checking whether pselect is declared without a macro... (cached) no checking whether select is declared without a macro... (cached) no checking whether <sys/socket.h> is self-contained... (cached) no checking for struct sockaddr_storage... (cached) yes checking for sa_family_t... (cached) no checking for struct sockaddr_storage.ss_family... (cached) yes checking for winsock2.h... (cached) yes checking whether socket is declared without a macro... (cached) no checking whether connect is declared without a macro... (cached) no checking whether accept is declared without a macro... (cached) no checking whether bind is declared without a macro... (cached) no checking whether getpeername is declared without a macro... (cached) no checking whether getsockname is declared without a macro... (cached) no checking whether getsockopt is declared without a macro... (cached) no checking whether listen is declared without a macro... (cached) no checking whether recv is declared without a macro... (cached) no checking whether send is declared without a macro... (cached) no checking whether recvfrom is declared without a macro... (cached) no checking whether sendto is declared without a macro... (cached) no checking whether setsockopt is declared without a macro... (cached) no checking whether shutdown is declared without a macro... (cached) no checking whether accept4 is declared without a macro... (cached) no checking for nlink_t... (cached) no checking whether fchmodat is declared without a macro... (cached) no checking whether fstat is declared without a macro... (cached) yes checking whether fstatat is declared without a macro... (cached) no checking whether futimens is declared without a macro... (cached) no checking whether lchmod is declared without a macro... (cached) no checking whether lstat is declared without a macro... (cached) no checking whether mkdirat is declared without a macro... (cached) no checking whether mkfifo is declared without a macro... (cached) no checking whether mkfifoat is declared without a macro... (cached) no checking whether mknod is declared without a macro... (cached) no checking whether mknodat is declared without a macro... (cached) no checking whether stat is declared without a macro... (cached) yes checking whether utimensat is declared without a macro... (cached) no checking whether times is declared without a macro... no checking whether localtime_r is declared... no checking whether trunc is declared... (cached) yes checking whether chdir is declared without a macro... yes checking whether chown is declared without a macro... no checking whether dup is declared without a macro... yes checking whether dup2 is declared without a macro... yes checking whether dup3 is declared without a macro... no checking whether environ is declared without a macro... no checking whether euidaccess is declared without a macro... no checking whether faccessat is declared without a macro... no checking whether fchdir is declared without a macro... no checking whether fchownat is declared without a macro... no checking whether fdatasync is declared without a macro... no checking whether fsync is declared without a macro... no checking whether ftruncate is declared without a macro... yes checking whether getcwd is declared without a macro... yes checking whether getdomainname is declared without a macro... no checking whether getdtablesize is declared without a macro... no checking whether getgroups is declared without a macro... no checking whether gethostname is declared without a macro... no checking whether getlogin is declared without a macro... no checking whether getlogin_r is declared without a macro... no checking whether getpagesize is declared without a macro... no checking whether getusershell is declared without a macro... no checking whether setusershell is declared without a macro... no checking whether endusershell is declared without a macro... no checking whether group_member is declared without a macro... no checking whether isatty is declared without a macro... yes checking whether lchown is declared without a macro... no checking whether link is declared without a macro... no checking whether linkat is declared without a macro... no checking whether lseek is declared without a macro... yes checking whether pipe is declared without a macro... no checking whether pipe2 is declared without a macro... no checking whether pread is declared without a macro... no checking whether pwrite is declared without a macro... no checking whether readlink is declared without a macro... no checking whether readlinkat is declared without a macro... no checking whether rmdir is declared without a macro... yes checking whether sethostname is declared without a macro... no checking whether sleep is declared without a macro... no checking whether symlink is declared without a macro... no checking whether symlinkat is declared without a macro... no checking whether ttyname_r is declared without a macro... no checking whether unlink is declared without a macro... yes checking whether unlinkat is declared without a macro... no checking whether usleep is declared without a macro... yes checking for ptrdiff_t... yes checking for vsnprintf... yes checking whether snprintf respects a size of 1... (cached) yes checking whether printf supports POSIX/XSI format strings with positions... (cached) no checking whether btowc is declared without a macro... yes checking whether wctob is declared without a macro... yes checking whether mbsinit is declared without a macro... yes checking whether mbrtowc is declared without a macro... yes checking whether mbrlen is declared without a macro... yes checking whether mbsrtowcs is declared without a macro... yes checking whether mbsnrtowcs is declared without a macro... no checking whether wcrtomb is declared without a macro... yes checking whether wcsrtombs is declared without a macro... yes checking whether wcsnrtombs is declared without a macro... no checking whether wcwidth is declared without a macro... no checking whether wmemchr is declared without a macro... yes checking whether wmemcmp is declared without a macro... yes checking whether wmemcpy is declared without a macro... yes checking whether wmemmove is declared without a macro... yes checking whether wmemset is declared without a macro... yes checking whether wcslen is declared without a macro... yes checking whether wcsnlen is declared without a macro... no checking whether wcscpy is declared without a macro... yes checking whether wcpcpy is declared without a macro... no checking whether wcsncpy is declared without a macro... yes checking whether wcpncpy is declared without a macro... no checking whether wcscat is declared without a macro... yes checking whether wcsncat is declared without a macro... yes checking whether wcscmp is declared without a macro... yes checking whether wcsncmp is declared without a macro... yes checking whether wcscasecmp is declared without a macro... no checking whether wcsncasecmp is declared without a macro... no checking whether wcscoll is declared without a macro... yes checking whether wcsxfrm is declared without a macro... yes checking whether wcsdup is declared without a macro... yes checking whether wcschr is declared without a macro... yes checking whether wcsrchr is declared without a macro... yes checking whether wcscspn is declared without a macro... yes checking whether wcsspn is declared without a macro... yes checking whether wcspbrk is declared without a macro... yes checking whether wcsstr is declared without a macro... yes checking whether wcstok is declared without a macro... yes checking whether wcswidth is declared without a macro... no checking whether mbrtowc handles incomplete characters... (cached) guessing yes checking whether mbrtowc works as well as mbtowc... (cached) guessing yes checking whether wcrtomb return value is correct... yes checking whether iswcntrl works... yes checking for towlower... yes checking for wctype_t... yes checking for wctrans_t... yes checking whether wctype is declared without a macro... yes checking whether iswctype is declared without a macro... yes checking whether wctrans is declared without a macro... yes checking whether towctrans is declared without a macro... yes checking for stdint.h... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for fgrep... /bin/grep -F checking for ld used by gcc... c:/mingw/mingw32/bin/ld.exe checking if the linker (c:/mingw/mingw32/bin/ld.exe) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /mingw/bin/nm checking the name lister (/mingw/bin/nm) interface... BSD nm checking the maximum length of command line arguments... 8192 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert i686-pc-mingw32 file names to i686-pc-mingw32 format... func_convert_file_msys_to_w32 checking how to convert i686-pc-mingw32 file names to toolchain format... func_convert_file_msys_to_w32 checking for c:/mingw/mingw32/bin/ld.exe option to reload object files... -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... func_cygming_dll_for_implib checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... (cached) ranlib checking command to parse /mingw/bin/nm output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... no checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (c:/mingw/mingw32/bin/ld.exe) supports shared libraries... yes checking dynamic linker characteristics... Win32 ld.exe checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking for libltdl... yes checking how to link with libltdl... -lltdl checking for makeinfo... yes checking for emacs... no checking for xemacs... no checking where .elc files should go... ${datadir}/emacs/site-lisp checking whether to use system and library "64" calls... yes checking for __uc_get_ar_bsp in -luca... no checking for an ANSI C-conforming const... yes checking for working volatile... yes checking for inline... (cached) inline checking for __uc_get_ar_bsp in -luca... (cached) no checking whether byte ordering is bigendian... (cached) no checking labels as values... yes checking size of char... 1 checking size of unsigned char... 1 checking size of short... 2 checking size of unsigned short... 2 checking size of int... 4 checking size of unsigned int... 4 checking size of long... 4 checking size of unsigned long... 4 checking size of size_t... 4 checking size of long long... 8 checking size of unsigned long long... 8 checking size of __int64... 8 checking size of unsigned __int64... 8 checking size of void *... 4 checking size of intptr_t... 4 checking size of uintptr_t... 4 checking size of ptrdiff_t... 4 checking size of size_t... (cached) 4 checking size of off_t... 4 checking for stdint.h... (cached) yes checking for inttypes.h... (cached) yes checking size of intmax_t... 8 checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... yes checking for uintptr_t... yes checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking for intmax_t... yes checking for uintmax_t... yes checking for intptr_t... (cached) yes checking for uintptr_t... (cached) yes checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for struct dirent64.d_name... no checking complex.h usability... yes checking complex.h presence... yes checking for complex.h... yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking io.h usability... yes checking io.h presence... yes checking for io.h... yes checking libc.h usability... no checking libc.h presence... no checking for libc.h... no checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for memory.h... (cached) yes checking process.h usability... yes checking process.h presence... yes checking for process.h... yes checking for string.h... (cached) yes checking sys/dir.h usability... no checking sys/dir.h presence... no checking for sys/dir.h... no checking for sys/ioctl.h... (cached) no checking for sys/select.h... (cached) no checking for sys/time.h... (cached) yes checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking for sys/times.h... (cached) no checking sys/stdtypes.h usability... no checking sys/stdtypes.h presence... no checking for sys/stdtypes.h... no checking for sys/types.h... (cached) yes checking sys/utime.h usability... yes checking sys/utime.h presence... yes checking for sys/utime.h... yes checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking for unistd.h... (cached) yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking pwd.h usability... no checking pwd.h presence... no checking for pwd.h... no checking grp.h usability... no checking grp.h presence... no checking for grp.h... no checking sys/utsname.h usability... no checking sys/utsname.h presence... no checking for sys/utsname.h... no checking direct.h usability... yes checking direct.h presence... yes checking for direct.h... yes checking machine/fpu.h usability... no checking machine/fpu.h presence... no checking for machine/fpu.h... no checking sched.h usability... yes checking sched.h presence... yes checking for sched.h... yes checking sys/sendfile.h usability... no checking sys/sendfile.h presence... no checking for sys/sendfile.h... no checking for complex double... yes checking for socklen_t... (cached) yes checking for struct ip_mreq... no checking for libc.h... (cached) no checking for unistd.h... (cached) yes checking whether libc.h and unistd.h can be included together... no checking type of array argument to getgroups... int checking return type of signal handlers... void checking for mode_t... (cached) yes checking for cos in -lm... yes checking for gethostbyname... (cached) no checking for gethostbyname in -lnsl... no checking for connect... no checking for connect in -lsocket... no checking for winsock2.h... (cached) yes checking for main in -lws2_32... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking crt_externs.h usability... no checking crt_externs.h presence... no checking for crt_externs.h... no checking for DINFINITY... no checking for DQNAN... no checking for cexp... yes checking for chsize... yes checking for clog... yes checking for clog10... no checking for ctermid... no checking for fesetround... yes checking for ftime... yes checking for ftruncate... yes checking for fchown... no checking for fchmod... no checking for getcwd... (cached) yes checking for geteuid... no checking for getsid... no checking for gettimeofday... yes checking for gmtime_r... no checking for ioctl... no checking for lstat... (cached) no checking for mkdir... yes checking for mknod... no checking for nice... no checking for pipe... (cached) no checking for _pipe... yes checking for readdir_r... no checking for readdir64_r... no checking for readlink... (cached) no checking for rename... yes checking for rmdir... yes checking for select... no checking for setegid... no checking for seteuid... no checking for setlocale... yes checking for setpgid... no checking for setsid... no checking for sigaction... no checking for siginterrupt... no checking for stat64... no checking for strftime... yes checking for strptime... no checking for symlink... (cached) no checking for sync... no checking for sysconf... no checking for tcgetpgrp... no checking for tcsetpgrp... no checking for times... (cached) no checking for uname... no checking for waitpid... no checking for strdup... yes checking for system... yes checking for usleep... yes checking for atexit... yes checking for on_exit... no checking for chown... no checking for link... (cached) no checking for fcntl... (cached) no checking for ttyname... no checking for getpwent... no checking for getgrent... no checking for kill... no checking for getppid... no checking for getpgrp... no checking for fork... no checking for setitimer... no checking for getitimer... no checking for strchr... yes checking for strcmp... yes checking for index... no checking for bcopy... no checking for memcpy... yes checking for rindex... no checking for truncate... no checking for unsetenv... no checking for isblank... (cached) yes checking for _NSGetEnviron... no checking for strcoll... yes checking for strcoll_l... no checking for newlocale... no checking for utimensat... no checking for sched_getaffinity... (cached) no checking for sched_setaffinity... no checking for sendfile... no checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking for netdb.h... (cached) no checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking pthread_np.h usability... no checking pthread_np.h presence... no checking for pthread_np.h... no checking for sys/param.h... (cached) yes checking sys/resource.h usability... no checking sys/resource.h presence... no checking for sys/resource.h... no checking for sys/file.h... (cached) yes checking for sys/mman.h... (cached) no checking for chroot... no checking for flock... (cached) no checking for getlogin... (cached) no checking for cuserid... no checking for getpriority... no checking for setpriority... no checking for getpass... no checking for sethostname... no checking for gethostname... no checking whether sethostname is declared... no checking whether hstrerror is declared... no checking whether cuserid is declared... no checking for library containing crypt... no checking for i... _Complex_I checking whether csqrt is usable... yes checking for libgmp... yes checking how to link with libgmp... /c/Users/shookie/guiletest/lib/lib/libgmp.a checking whether mpz_inits is declared... yes checking whether libunistring was built with iconv support... yes checking for pkg-config... no checking for LIBFFI... yes checking size of size_t... (cached) 4 checking size of ssize_t... 4 checking whether NLS is requested... yes checking for msgfmt... /mingw/bin/msgfmt checking for gmsgfmt... /mingw/bin/msgfmt checking for xgettext... /mingw/bin/xgettext checking for msgmerge... /mingw/bin/msgmerge checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking for GNU gettext in libc... no checking for iconv... (cached) yes checking for working iconv... (cached) yes checking how to link with libiconv... -liconv checking for GNU gettext in libintl... yes checking whether to use NLS... yes checking where the gettext function comes from... external libintl checking how to link with libintl... -lintl checking for sleep declaration... yes checking for usleep declaration... yes checking whether getlogin is declared... no checking whether alarm is declared... no checking whether strptime is declared... no checking return type of usleep... int checking sys/un.h usability... no checking sys/un.h presence... no checking for sys/un.h... no checking for getrlimit... no checking for setrlimit... no checking for socketpair... no checking for getgroups... no checking for setgroups... no checking for setpwent... no checking for pause... no checking for tzset... (cached) yes checking for sethostent... no checking for gethostent... no checking for endhostent... no checking for setnetent... no checking for getnetent... no checking for endnetent... no checking for setprotoent... no checking for getprotoent... no checking for endprotoent... no checking for setservent... no checking for getservent... no checking for endservent... no checking for getnetbyaddr... no checking for getnetbyname... no checking for inet_lnaof... no checking for inet_makeaddr... no checking for inet_netof... no checking for hstrerror... no checking for struct sockaddr_in.sin_len... no checking for __libc_stack_end... no checking whether netdb.h declares h_errno... no checking whether uint32_t is defined... no checking for working IPv6 support... no checking whether sockaddr_in6 has sin6_scope_id... no checking for struct sockaddr_in6.sin6_len... no checking whether localtime caches TZ... yes checking for strerror... yes checking for memmove... yes checking for mkstemp... no checking for asinh... yes checking for acosh... yes checking for atanh... yes checking for copysign... yes checking for finite... yes checking for sincos... no checking for trunc... yes checking for isinf... yes checking for isnan... yes checking for struct stat.st_rdev... yes checking for struct stat.st_blksize... no checking for struct stat.st_blocks... no checking for struct stat.st_atim... no checking for struct stat.st_mtim... no checking for struct stat.st_ctim... no checking for struct tm.tm_zone... (cached) no checking whether tzname is declared... (cached) yes checking for tzname... (cached) yes checking for struct tm.tm_gmtoff... (cached) no checking whether we need POSIX to get struct utimbuf... no checking the value of `iconveh_error'... 0 checking the value of `iconveh_question_mark'... 1 checking the value of `iconveh_escape_sequence'... 2 checking for BDW_GC... yes checking for GC_do_blocking... no checking for GC_call_with_gc_active... no checking for GC_pthread_exit... no checking for GC_pthread_cancel... no checking for GC_allow_register_threads... no checking for GC_pthread_sigmask... no checking for GC_set_start_callback... no checking for GC_get_heap_usage_safe... no checking for GC_get_free_space_divisor... no checking for GC_gcollect_and_unmap... no checking for GC_get_unmapped_bytes... no checking for GC_set_finalizer_notifier... no checking for GC_set_finalize_on_demand... no checking for GC_set_all_interior_pointers... no checking for GC_get_gc_no... no checking for GC_set_java_finalization... no checking whether GC_do_blocking is declared... yes checking for GC_fn_type... yes checking for struct GC_stack_base... yes checking size of float... 4 checking for struct linger... no checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no checking whether pthreads work with -kthread... no checking for the pthreads library -llthread... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... no checking for pthread_attr_getstack... no checking for pthread_getattr_np... no checking for pthread_get_stackaddr_np... no checking for pthread_attr_get_np... no checking for pthread_sigmask... no checking whether PTHREAD_ONCE_INIT needs braces... no checking whether PTHREAD_MUTEX_INITIALIZER needs braces... no checking for library containing sched_yield... no checking what kind of threads to support... pthreads checking whether pthread_attr_getstack works for the main thread... no checking whether the `__thread' storage class is available... yes checking whether C compiler handles -Wall... yes checking whether C compiler handles -Wmissing-prototypes... yes checking whether C compiler handles -Wdeclaration-after-statement... yes checking whether C compiler handles -Wpointer-arith... yes checking whether C compiler handles -Wswitch-enum... yes checking whether C compiler handles -fno-strict-aliasing... yes checking whether the linker understands `-z relro'... no checking for tgoto in -lncurses... no checking for tgoto in -lcurses... no checking for tgoto in -ltermcap... no checking for tgoto in -lterminfo... no checking for tgoto in -ltermlib... no checking for tgoto in -lpdcurses... no checking how to link with libreadline... /c/Users/shookie/guiletest/lib/lib/libreadline.a checking for siginterrupt... (cached) no checking for rl_clear_signals... no checking for rl_cleanup_after_signal... no checking for rl_filename_completion_function... no checking whether rl_catch_signals is declared... yes checking whether rl_catch_sigwinch is declared... yes checking for rl_get_keymap... no checking for rl_getc_function pointer in readline... no configure: WARNING: *** GNU Readline is too old on your system. configure: WARNING: *** You need readline version 2.1 or later. checking for strdup... (cached) yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating libguile/gen-scmconfig.h config.status: creating Makefile config.status: creating am/Makefile config.status: creating lib/Makefile config.status: creating benchmark-suite/Makefile config.status: creating gc-benchmarks/Makefile config.status: creating doc/Makefile config.status: creating doc/r5rs/Makefile config.status: creating doc/ref/Makefile config.status: creating emacs/Makefile config.status: creating examples/Makefile config.status: creating libguile/Makefile config.status: creating libguile/version.h config.status: creating guile-readline/Makefile config.status: creating test-suite/Makefile config.status: creating test-suite/standalone/Makefile config.status: creating test-suite/vm/Makefile config.status: creating meta/Makefile config.status: creating module/Makefile config.status: creating meta/guile-2.0.pc config.status: creating meta/guile-2.0-uninstalled.pc config.status: creating check-guile config.status: creating benchmark-guile config.status: creating meta/guile config.status: creating meta/uninstalled-env config.status: creating meta/gdb-uninstalled-guile config.status: creating meta/guild config.status: creating libguile/guile-snarf config.status: creating libguile/guile-snarf-docs config.status: creating test-suite/standalone/test-use-srfi config.status: creating test-suite/standalone/test-fast-slot-ref config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands config.status: executing po-directories commands make[1]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make install-recursive make[2]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' Making install in lib make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' GEN alloca.h GEN c++defs.h GEN warn-on-use.h GEN arg-nonnull.h GEN arpa/inet.h GEN byteswap.h GEN configmake.h GEN dirent.h GEN errno.h GEN fcntl.h GEN iconv.h GEN langinfo.h GEN locale.h GEN math.h GEN netdb.h GEN netinet/in.h GEN poll.h GEN signal.h GEN unused-parameter.h GEN stdio.h GEN stdlib.h GEN string.h GEN sys/file.h GEN sys/select.h GEN sys/socket.h GEN sys/stat.h GEN sys/time.h GEN sys/times.h GEN sys/types.h GEN sys/uio.h GEN time.h GEN unistd.h GEN wchar.h GEN wctype.h make install-recursive make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' CC binary-io.lo CC c-ctype.lo CC c-strcasecmp.lo CC c-strncasecmp.lo CC dirname-lgpl.lo CC basename-lgpl.lo CC stripslash.lo CC fd-hook.lo CC full-read.lo CC full-write.lo CC localcharset.lo CC malloca.lo CC math.lo CC nproc.lo CC pipe2.lo CC safe-read.lo CC safe-write.lo CC sockets.lo CC stat-time.lo CC strftime.lo CC striconveh.lo CC sys_socket.lo CC unistd.lo CC unistr/u8-mbtouc.lo CC unistr/u8-mbtouc-aux.lo CC unistr/u8-mbtouc-unsafe.lo CC unistr/u8-mbtouc-unsafe-aux.lo CC wctype-h.lo CC xsize.lo CC accept.lo CC asnprintf.lo CC bind.lo CC canonicalize-lgpl.lo CC close.lo CC connect.lo CC dirfd.lo CC dup2.lo CC flock.lo CC frexp.lo CC fstat.lo CC gai_strerror.lo CC getaddrinfo.lo CC getlogin.lo CC getpeername.lo CC getsockname.lo CC getsockopt.lo CC inet_ntop.lo CC inet_pton.lo CC isnand.lo CC isnanf.lo CC isnanl.lo CC listen.lo CC localeconv.lo CC malloc.lo CC mbrtowc.lo CC mbsinit.lo CC nl_langinfo.lo CC open.lo CC pipe.lo CC poll.lo CC printf-args.lo CC printf-parse.lo CC putenv.lo CC readlink.lo CC recv.lo CC recvfrom.lo CC regex.lo CC rename.lo CC rmdir.lo CC select.lo CC send.lo CC sendto.lo CC setenv.lo CC setsockopt.lo CC shutdown.lo CC snprintf.lo CC socket.lo CC stat.lo CC time_r.lo CC times.lo CC vasnprintf.lo CC vsnprintf.lo CCLD libgnu.la GEN charset.alias GEN ref-add.sed GEN ref-del.sed make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' if test no = no; then \ case 'mingw32' in \ darwin[56]*) \ need_charset_alias=true ;; \ darwin* | cygwin* | mingw* | pw32* | cegcc*) \ need_charset_alias=false ;; \ *) \ need_charset_alias=true ;; \ esac ; \ else \ need_charset_alias=false ; \ fi ; \ if $need_charset_alias; then \ /bin/sh /c/Users/shookie/guiletest/lib/guile-2.0/build-aux/install-sh -d /c/Users/shookie/guiletest/lib/lib ; \ fi ; \ if test -f /c/Users/shookie/guiletest/lib/lib/charset.alias; then \ sed -f ref-add.sed /c/Users/shookie/guiletest/lib/lib/charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ else \ if $need_charset_alias; then \ sed -f ref-add.sed charset.alias > /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ /bin/install -c -m 644 /c/Users/shookie/guiletest/lib/lib/charset.tmp /c/Users/shookie/guiletest/lib/lib/charset.alias ; \ rm -f /c/Users/shookie/guiletest/lib/lib/charset.tmp ; \ fi ; \ fi make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/lib' Making install in meta make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guile="/c/Users/shookie/guiletest/lib/bin/`echo guile | /bin/sed -e 's,x,x,'`" ; \ cat ./guile-config.in \ | /bin/sed -e "s,@pkgconfigdir@,/c/Users/shookie/guiletest/lib/lib/pkgconfig,g" \ -e "s,@""PKG_CONFIG@,,g" \ -e "s,@installed_guile@,$guile,g" \ > guile-config.out mv guile-config.out guile-config chmod +x guile-config make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-config guild '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' guild="`echo -n guild \ | /bin/sed -e 's,x,x,'`.exe" ; \ guile_tools="`echo -n guile-tools \ | /bin/sed -e 's,x,x,'`.exe" ; \ cd /c/Users/shookie/guiletest/lib/bin && rm -f "$guile_tools" && \ cp -pR "$guild" "$guile_tools" make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/install -c -m 644 guile.m4 '/c/Users/shookie/guiletest/lib/share/aclocal' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/pkgconfig' /bin/install -c -m 644 guile-2.0.pc '/c/Users/shookie/guiletest/lib/lib/pkgconfig' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/meta' Making install in libguile make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' GEN libpath.h GEN gen-scmconfig.o GEN gen-scmconfig.exe GEN scmconfig.h GEN vm-i-system.i GEN vm-i-scheme.i GEN vm-i-loader.i SNARF alist.x SNARF arbiters.x SNARF array-handle.x SNARF array-map.x SNARF arrays.x SNARF async.x SNARF backtrace.x SNARF boolean.x SNARF bitvectors.x SNARF bytevectors.x SNARF chars.x SNARF control.x SNARF continuations.x SNARF debug.x SNARF deprecated.x SNARF deprecation.x SNARF dynl.x SNARF dynwind.x SNARF eq.x SNARF error.x SNARF eval.x SNARF evalext.x SNARF expand.x SNARF extensions.x SNARF feature.x SNARF filesys.x SNARF fluids.x SNARF foreign.x SNARF fports.x SNARF gc-malloc.x SNARF gc.x SNARF gettext.x SNARF generalized-arrays.x SNARF generalized-vectors.x SNARF goops.x SNARF gsubr.x SNARF guardians.x SNARF hash.x SNARF hashtab.x SNARF hooks.x SNARF i18n.x SNARF init.x SNARF ioext.x SNARF keywords.x SNARF list.x SNARF load.x SNARF macros.x SNARF mallocs.x SNARF memoize.x SNARF modules.x SNARF numbers.x SNARF objprop.x SNARF options.x SNARF pairs.x SNARF ports.x SNARF print.x SNARF procprop.x SNARF procs.x SNARF promises.x SNARF r6rs-ports.x SNARF random.x SNARF rdelim.x SNARF read.x SNARF root.x SNARF rw.x SNARF scmsigs.x SNARF script.x SNARF simpos.x SNARF smob.x SNARF sort.x SNARF srcprop.x SNARF srfi-1.x SNARF srfi-4.x SNARF srfi-13.x SNARF srfi-14.x SNARF srfi-60.x SNARF stackchk.x SNARF stacks.x SNARF stime.x SNARF strings.x SNARF strorder.x SNARF strports.x SNARF struct.x SNARF symbols.x SNARF threads.x SNARF throw.x SNARF trees.x SNARF uniform.x SNARF values.x SNARF variable.x SNARF vectors.x SNARF version.x SNARF vports.x SNARF weaks.x SNARF frames.x SNARF instructions.x SNARF objcodes.x SNARF programs.x SNARF vm.x SNARF posix.x SNARF net_db.x SNARF socket.x SNARF win32-uname.x SNARF regex-posix.x SNARF mkstemp.x make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' CC libguile_2.0_la-alist.lo CC libguile_2.0_la-arbiters.lo CC libguile_2.0_la-array-handle.lo CC libguile_2.0_la-array-map.lo CC libguile_2.0_la-arrays.lo CC libguile_2.0_la-async.lo CC libguile_2.0_la-backtrace.lo CC libguile_2.0_la-boolean.lo CC libguile_2.0_la-bitvectors.lo CC libguile_2.0_la-bytevectors.lo CC libguile_2.0_la-chars.lo CC libguile_2.0_la-control.lo CC libguile_2.0_la-continuations.lo CC libguile_2.0_la-debug.lo CC libguile_2.0_la-deprecated.lo CC libguile_2.0_la-deprecation.lo CC libguile_2.0_la-dynwind.lo CC libguile_2.0_la-eq.lo CC libguile_2.0_la-error.lo CC libguile_2.0_la-eval.lo CC libguile_2.0_la-evalext.lo CC libguile_2.0_la-expand.lo CC libguile_2.0_la-extensions.lo CC libguile_2.0_la-feature.lo CC libguile_2.0_la-filesys.lo CC libguile_2.0_la-finalizers.lo CC libguile_2.0_la-fluids.lo CC libguile_2.0_la-foreign.lo CC libguile_2.0_la-fports.lo CC libguile_2.0_la-frames.lo CC libguile_2.0_la-gc-malloc.lo CC libguile_2.0_la-gc.lo CC libguile_2.0_la-gdbint.lo CC libguile_2.0_la-gettext.lo CC libguile_2.0_la-generalized-arrays.lo CC libguile_2.0_la-generalized-vectors.lo CC libguile_2.0_la-goops.lo CC libguile_2.0_la-gsubr.lo CC libguile_2.0_la-guardians.lo CC libguile_2.0_la-hash.lo CC libguile_2.0_la-hashtab.lo CC libguile_2.0_la-hooks.lo CC libguile_2.0_la-i18n.lo CC libguile_2.0_la-init.lo CC libguile_2.0_la-inline.lo CC libguile_2.0_la-instructions.lo CC libguile_2.0_la-ioext.lo CC libguile_2.0_la-keywords.lo CC libguile_2.0_la-list.lo CC libguile_2.0_la-load.lo CC libguile_2.0_la-macros.lo CC libguile_2.0_la-mallocs.lo CC libguile_2.0_la-memoize.lo CC libguile_2.0_la-modules.lo CC libguile_2.0_la-null-threads.lo CC libguile_2.0_la-numbers.lo CC libguile_2.0_la-objcodes.lo CC libguile_2.0_la-objprop.lo CC libguile_2.0_la-options.lo CC libguile_2.0_la-pairs.lo CC libguile_2.0_la-poll.lo CC libguile_2.0_la-ports.lo CC libguile_2.0_la-print.lo CC libguile_2.0_la-procprop.lo CC libguile_2.0_la-procs.lo CC libguile_2.0_la-programs.lo CC libguile_2.0_la-promises.lo CC libguile_2.0_la-r6rs-ports.lo CC libguile_2.0_la-random.lo CC libguile_2.0_la-rdelim.lo CC libguile_2.0_la-read.lo CC libguile_2.0_la-root.lo CC libguile_2.0_la-rw.lo CC libguile_2.0_la-scmsigs.lo CC libguile_2.0_la-script.lo CC libguile_2.0_la-simpos.lo CC libguile_2.0_la-smob.lo CC libguile_2.0_la-sort.lo CC libguile_2.0_la-srcprop.lo CC libguile_2.0_la-srfi-1.lo CC libguile_2.0_la-srfi-4.lo CC libguile_2.0_la-srfi-13.lo CC libguile_2.0_la-srfi-14.lo CC libguile_2.0_la-srfi-60.lo CC libguile_2.0_la-stackchk.lo CC libguile_2.0_la-stacks.lo CC libguile_2.0_la-stime.lo CC libguile_2.0_la-strings.lo CC libguile_2.0_la-strorder.lo CC libguile_2.0_la-strports.lo CC libguile_2.0_la-struct.lo CC libguile_2.0_la-symbols.lo CC libguile_2.0_la-threads.lo threads.c: In function 'scm_pthread_cond_timedwait': threads.c:2005:3: warning: passing argument 3 of 'pthread_cond_timedwait' from incompatible pointer type [enabled by default] In file included from ../lib/time.h:369:0, from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/sys/time.h:3, from ../lib/sys/time.h:30, from ../libguile/scmconfig.h:26, from ../libguile/bdw-gc.h:24, from threads.c:27: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/pthread.h:1097:31: note: expected 'const struct timespec *' but argument is of type 'const struct scm_t_timespec *' CC libguile_2.0_la-throw.lo CC libguile_2.0_la-trees.lo CC libguile_2.0_la-uniform.lo CC libguile_2.0_la-values.lo CC libguile_2.0_la-variable.lo CC libguile_2.0_la-vectors.lo CC libguile_2.0_la-version.lo CC libguile_2.0_la-vm.lo CC libguile_2.0_la-vports.lo CC libguile_2.0_la-weaks.lo CC dynl.lo CC posix.lo posix.c: In function 'scm_execl': posix.c:1145:3: warning: passing argument 2 of 'execv' from incompatible pointer type [enabled by default] In file included from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/unistd.h:13:0, from ../lib/unistd.h:27, from posix.c:50: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/process.h:118:42: note: expected 'const char * const*' but argument is of type 'char **' posix.c: In function 'scm_execlp': posix.c:1174:3: warning: passing argument 2 of 'execvp' from incompatible pointer type [enabled by default] In file included from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/unistd.h:13:0, from ../lib/unistd.h:27, from posix.c:50: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/process.h:120:42: note: expected 'const char * const*' but argument is of type 'char **' posix.c: In function 'scm_execle': posix.c:1208:3: warning: passing argument 2 of 'execve' from incompatible pointer type [enabled by default] In file included from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/unistd.h:13:0, from ../lib/unistd.h:27, from posix.c:50: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/process.h:119:42: note: expected 'const char * const*' but argument is of type 'char **' posix.c:1208:3: warning: passing argument 3 of 'execve' from incompatible pointer type [enabled by default] In file included from c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/unistd.h:13:0, from ../lib/unistd.h:27, from posix.c:50: c:\mingw\bin\../lib/gcc/mingw32/4.7.2/../../../../include/process.h:119:42: note: expected 'const char * const*' but argument is of type 'char **' CC net_db.lo CC socket.lo socket.c: In function 'scm_fill_sockaddr': socket.c:819:16: warning: variable 'scope_id' set but not used [-Wunused-but-set-variable] CC win32-uname.lo CC regex-posix.lo CC mkstemp.lo CCLD libguile-2.0.la copying selected object files to avoid basename conflicts... CC guile-guile.o CCLD guile.exe GEN c-tokenize.o GEN guile_filter_doc_snarfage.exe SNARF alist.doc SNARF arbiters.doc SNARF array-handle.doc SNARF array-map.doc SNARF arrays.doc SNARF async.doc SNARF backtrace.doc SNARF boolean.doc SNARF bitvectors.doc SNARF bytevectors.doc SNARF chars.doc SNARF control.doc SNARF continuations.doc SNARF debug.doc SNARF deprecated.doc SNARF deprecation.doc SNARF dynl.doc SNARF dynwind.doc SNARF eq.doc SNARF error.doc SNARF eval.doc SNARF evalext.doc SNARF expand.doc SNARF extensions.doc SNARF feature.doc SNARF filesys.doc SNARF fluids.doc SNARF foreign.doc SNARF fports.doc SNARF gc-malloc.doc SNARF gc.doc SNARF gettext.doc SNARF generalized-arrays.doc SNARF generalized-vectors.doc SNARF goops.doc SNARF gsubr.doc SNARF guardians.doc SNARF hash.doc SNARF hashtab.doc SNARF hooks.doc SNARF i18n.doc SNARF init.doc SNARF ioext.doc SNARF keywords.doc SNARF list.doc SNARF load.doc SNARF macros.doc SNARF mallocs.doc SNARF memoize.doc memoize.c:515:***Mismatching FUNC_NAME. Should be: `#define FUNC_NAME s_"@prompt"' SNARF modules.doc SNARF numbers.doc SNARF objprop.doc SNARF options.doc SNARF pairs.doc pairs.c:147:***Missing or erroneous `#define FUNC_NAME s_scm_cdr' pairs.c:150:***pairs.c:155:***Missing or erroneous `#define FUNC_NAME s_scm_cddr' pairs.c:158:***pairs.c:163:***Missing or erroneous `#define FUNC_NAME s_scm_cadr' pairs.c:166:***pairs.c:171:***Missing or erroneous `#define FUNC_NAME s_scm_cdddr' pairs.c:174:***pairs.c:179:***Missing or erroneous `#define FUNC_NAME s_scm_cdadr' pairs.c:182:***pairs.c:187:***Missing or erroneous `#define FUNC_NAME s_scm_caddr' pairs.c:190:***pairs.c:195:***Missing or erroneous `#define FUNC_NAME s_scm_caadr' pairs.c:198:***pairs.c:203:***Missing or erroneous `#define FUNC_NAME s_scm_cddddr' pairs.c:206:***pairs.c:211:***Missing or erroneous `#define FUNC_NAME s_scm_cddadr' pairs.c:214:***pairs.c:219:***Missing or erroneous `#define FUNC_NAME s_scm_cdaddr' pairs.c:222:***pairs.c:227:***Missing or erroneous `#define FUNC_NAME s_scm_cdaadr' pairs.c:230:***pairs.c:235:***Missing or erroneous `#define FUNC_NAME s_scm_cadddr' pairs.c:238:***pairs.c:243:***Missing or erroneous `#define FUNC_NAME s_scm_cadadr' pairs.c:246:***pairs.c:251:***Missing or erroneous `#define FUNC_NAME s_scm_caaddr' pairs.c:254:***pairs.c:259:***Missing or erroneous `#define FUNC_NAME s_scm_caaadr' pairs.c:262:***Missing or erroneous #undef for scm_car: Missing or erroneous #undef for scm_cdar: Missing or erroneous #undef for scm_caar: Missing or erroneous #undef for scm_cddar: Missing or erroneous #undef for scm_cdaar: Missing or erroneous #undef for scm_cadar: Missing or erroneous #undef for scm_caaar: Missing or erroneous #undef for scm_cdddar: Missing or erroneous #undef for scm_cddaar: Missing or erroneous #undef for scm_cdadar: Missing or erroneous #undef for scm_cdaaar: Missing or erroneous #undef for scm_caddar: Missing or erroneous #undef for scm_cadaar: Missing or erroneous #undef for scm_caadar: Missing or erroneous #undef for scm_caaaar: SNARF ports.doc SNARF print.doc SNARF procprop.doc SNARF procs.doc SNARF promises.doc SNARF r6rs-ports.doc SNARF random.doc SNARF rdelim.doc SNARF read.doc SNARF root.doc SNARF rw.doc SNARF scmsigs.doc SNARF script.doc SNARF simpos.doc SNARF smob.doc SNARF sort.doc SNARF srcprop.doc SNARF srfi-1.doc SNARF srfi-4.doc SNARF srfi-13.doc SNARF srfi-14.doc SNARF srfi-60.doc SNARF stackchk.doc SNARF stacks.doc SNARF stime.doc SNARF strings.doc SNARF strorder.doc SNARF strports.doc SNARF struct.doc SNARF symbols.doc SNARF threads.doc SNARF throw.doc SNARF trees.doc SNARF uniform.doc SNARF values.doc SNARF variable.doc SNARF vectors.doc SNARF version.doc SNARF vports.doc SNARF weaks.doc SNARF posix.doc SNARF net_db.doc SNARF socket.doc SNARF win32-uname.doc SNARF regex-posix.doc SNARF mkstemp.doc GEN guile-procedures.texi make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib' /bin/sh ../libtool --mode=install /bin/install -c libguile-2.0.la '/c/Users/shookie/guiletest/lib/lib' libtool: install: /bin/install -c .libs/libguile-2.0.lai /c/Users/shookie/guiletest/lib/lib/libguile-2.0.la libtool: install: /bin/install -c .libs/libguile-2.0.a /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: chmod 644 /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a libtool: install: ranlib /c/Users/shookie/guiletest/lib/lib/libguile-2.0.a /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/sh ../libtool --mode=install /bin/install -c guile.exe '/c/Users/shookie/guiletest/lib/bin' libtool: install: /bin/install -c guile.exe /c/Users/shookie/guiletest/lib/bin/guile.exe /bin/mkdir -p '/c/Users/shookie/guiletest/lib/bin' /bin/install -c guile-snarf '/c/Users/shookie/guiletest/lib/bin' make install-exec-hook make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' rm -f /c/Users/shookie/guiletest/lib/bin/guile-snarf.awk make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 __scm.h alist.h arbiters.h array-handle.h array-map.h arrays.h async.h backtrace.h bdw-gc.h boolean.h bitvectors.h bytevectors.h chars.h control.h continuations.h debug-malloc.h debug.h deprecated.h deprecation.h dynl.h dynwind.h eq.h error.h eval.h evalext.h expand.h extensions.h feature.h finalizers.h filesys.h fluids.h foreign.h fports.h frames.h gc.h gdb_interface.h gdbint.h gettext.h generalized-arrays.h generalized-vectors.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 goops.h gsubr.h guardians.h hash.h hashtab.h hooks.h i18n.h init.h inline.h instructions.h ioext.h iselect.h keywords.h list.h load.h macros.h mallocs.h memoize.h modules.h net_db.h null-threads.h numbers.h objcodes.h objprop.h options.h pairs.h poll.h ports.h posix.h print.h procprop.h procs.h programs.h promises.h pthread-threads.h r6rs-ports.h random.h rdelim.h read.h regex-posix.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 root.h rw.h scmsigs.h script.h simpos.h smob.h snarf.h socket.h sort.h srcprop.h srfi-1.h srfi-4.h srfi-13.h srfi-14.h srfi-60.h stackchk.h stacks.h stime.h strings.h strorder.h strports.h struct.h symbols.h tags.h threads.h throw.h trees.h validate.h uniform.h values.h variable.h vectors.h vm-engine.h vm-expand.h vm.h vports.h weaks.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' /bin/install -c -m 644 version.h scmconfig.h '/c/Users/shookie/guiletest/lib/include/guile/2.0/libguile' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/libguile' Making install in module make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' GUILEC ice-9/eval.go wrote `ice-9/eval.go' GUILEC ice-9/psyntax-pp.go wrote `ice-9/psyntax-pp.go' GUILEC ice-9/boot-9.go wrote `ice-9/boot-9.go' ice-9/boot-9.scm:1521:61: warning: possibly unbound variable `getuid' GUILEC ice-9/vlist.go wrote `ice-9/vlist.go' GUILEC srfi/srfi-1.go wrote `srfi/srfi-1.go' GUILEC language/tree-il/peval.go wrote `language/tree-il/peval.go' GUILEC language/tree-il/cse.go wrote `language/tree-il/cse.go' GUILEC language/tree-il.go wrote `language/tree-il.go' GUILEC language/glil.go wrote `language/glil.go' GUILEC language/assembly.go wrote `language/assembly.go' GUILEC language/tree-il/primitives.go wrote `language/tree-il/primitives.go' GUILEC language/tree-il/effects.go wrote `language/tree-il/effects.go' GUILEC language/tree-il/fix-letrec.go wrote `language/tree-il/fix-letrec.go' GUILEC language/tree-il/optimize.go wrote `language/tree-il/optimize.go' GUILEC language/tree-il/canonicalize.go wrote `language/tree-il/canonicalize.go' GUILEC language/tree-il/analyze.go wrote `language/tree-il/analyze.go' GUILEC language/tree-il/inline.go wrote `language/tree-il/inline.go' GUILEC language/tree-il/compile-glil.go wrote `language/tree-il/compile-glil.go' GUILEC language/tree-il/debug.go wrote `language/tree-il/debug.go' GUILEC language/tree-il/spec.go wrote `language/tree-il/spec.go' GUILEC language/glil/spec.go wrote `language/glil/spec.go' GUILEC language/glil/compile-assembly.go wrote `language/glil/compile-assembly.go' GUILEC language/assembly/spec.go wrote `language/assembly/spec.go' GUILEC language/assembly/compile-bytecode.go wrote `language/assembly/compile-bytecode.go' GUILEC language/assembly/decompile-bytecode.go wrote `language/assembly/decompile-bytecode.go' GUILEC language/assembly/disassemble.go wrote `language/assembly/disassemble.go' GUILEC language/bytecode/spec.go wrote `language/bytecode/spec.go' GUILEC language/objcode/spec.go wrote `language/objcode/spec.go' GUILEC language/value/spec.go wrote `language/value/spec.go' GUILEC language/scheme/spec.go wrote `language/scheme/spec.go' GUILEC language/scheme/compile-tree-il.go wrote `language/scheme/compile-tree-il.go' GUILEC language/scheme/decompile-tree-il.go wrote `language/scheme/decompile-tree-il.go' GUILEC system/base/pmatch.go wrote `system/base/pmatch.go' GUILEC system/base/syntax.go wrote `system/base/syntax.go' GUILEC system/base/compile.go wrote `system/base/compile.go' GUILEC system/base/language.go wrote `system/base/language.go' GUILEC system/base/lalr.go wrote `system/base/lalr.go' GUILEC system/base/message.go wrote `system/base/message.go' GUILEC system/base/target.go wrote `system/base/target.go' GUILEC system/base/ck.go wrote `system/base/ck.go' GUILEC ice-9/r4rs.go wrote `ice-9/r4rs.go' GUILEC ice-9/r5rs.go wrote `ice-9/r5rs.go' GUILEC ice-9/deprecated.go wrote `ice-9/deprecated.go' ice-9/deprecated.scm:119:18: warning: possibly unbound variable `c-registered-modules' ice-9/deprecated.scm:120:4: warning: possibly unbound variable `c-clear-registered-modules' ice-9/deprecated.scm:904:8: warning: possibly unbound variable `standard-eval-closure' GUILEC ice-9/and-let-star.go wrote `ice-9/and-let-star.go' GUILEC ice-9/binary-ports.go wrote `ice-9/binary-ports.go' GUILEC ice-9/calling.go wrote `ice-9/calling.go' GUILEC ice-9/command-line.go wrote `ice-9/command-line.go' GUILEC ice-9/common-list.go wrote `ice-9/common-list.go' GUILEC ice-9/control.go wrote `ice-9/control.go' GUILEC ice-9/curried-definitions.go wrote `ice-9/curried-definitions.go' GUILEC ice-9/debug.go wrote `ice-9/debug.go' GUILEC ice-9/documentation.go wrote `ice-9/documentation.go' GUILEC ice-9/eval-string.go wrote `ice-9/eval-string.go' GUILEC ice-9/expect.go wrote `ice-9/expect.go' GUILEC ice-9/format.go wrote `ice-9/format.go' GUILEC ice-9/futures.go wrote `ice-9/futures.go' GUILEC ice-9/getopt-long.go wrote `ice-9/getopt-long.go' GUILEC ice-9/hcons.go wrote `ice-9/hcons.go' GUILEC ice-9/i18n.go wrote `ice-9/i18n.go' GUILEC ice-9/iconv.go wrote `ice-9/iconv.go' GUILEC ice-9/lineio.go wrote `ice-9/lineio.go' GUILEC ice-9/ls.go wrote `ice-9/ls.go' GUILEC ice-9/mapping.go wrote `ice-9/mapping.go' GUILEC ice-9/match.go wrote `ice-9/match.go' GUILEC ice-9/networking.go ice-9/networking.scm:23:29: warning: possibly unbound variable `gethost' ice-9/networking.scm:24:29: warning: possibly unbound variable `gethost' ice-9/networking.scm:26:28: warning: possibly unbound variable `getnet' ice-9/networking.scm:27:28: warning: possibly unbound variable `getnet' ice-9/networking.scm:29:30: warning: possibly unbound variable `getproto' ice-9/networking.scm:30:32: warning: possibly unbound variable `getproto' ice-9/networking.scm:32:35: warning: possibly unbound variable `getserv' ice-9/networking.scm:33:35: warning: possibly unbound variable `getserv' ice-9/networking.scm:37:6: warning: possibly unbound variable `sethost' ice-9/networking.scm:38:6: warning: possibly unbound variable `sethost' ice-9/networking.scm:41:6: warning: possibly unbound variable `setnet' ice-9/networking.scm:42:6: warning: possibly unbound variable `setnet' ice-9/networking.scm:45:6: warning: possibly unbound variable `setproto' ice-9/networking.scm:46:6: warning: possibly unbound variable `setproto' ice-9/networking.scm:49:6: warning: possibly unbound variable `setserv' ice-9/networking.scm:50:6: warning: possibly unbound variable `setserv' ice-9/networking.scm:52:21: warning: possibly unbound variable `gethost' ice-9/networking.scm:53:20: warning: possibly unbound variable `getnet' ice-9/networking.scm:54:22: warning: possibly unbound variable `getproto' ice-9/networking.scm:55:21: warning: possibly unbound variable `getserv' ice-9/networking.scm:57:21: warning: possibly unbound variable `sethost' ice-9/networking.scm:58:20: warning: possibly unbound variable `setnet' ice-9/networking.scm:59:22: warning: possibly unbound variable `setproto' ice-9/networking.scm:60:21: warning: possibly unbound variable `setserv' wrote `ice-9/networking.go' GUILEC ice-9/null.go wrote `ice-9/null.go' GUILEC ice-9/occam-channel.go wrote `ice-9/occam-channel.go' GUILEC ice-9/optargs.go wrote `ice-9/optargs.go' GUILEC ice-9/poe.go wrote `ice-9/poe.go' GUILEC ice-9/poll.go wrote `ice-9/poll.go' GUILEC ice-9/posix.go wrote `ice-9/posix.go' ice-9/posix.scm:63:19: warning: possibly unbound variable `getpw' ice-9/posix.scm:64:19: warning: possibly unbound variable `setpw' ice-9/posix.scm:65:19: warning: possibly unbound variable `setpw' ice-9/posix.scm:67:24: warning: possibly unbound variable `getpw' ice-9/posix.scm:68:23: warning: possibly unbound variable `getpw' ice-9/posix.scm:70:19: warning: possibly unbound variable `getgr' ice-9/posix.scm:71:19: warning: possibly unbound variable `setgr' ice-9/posix.scm:72:19: warning: possibly unbound variable `setgr' ice-9/posix.scm:74:24: warning: possibly unbound variable `getgr' ice-9/posix.scm:75:22: warning: possibly unbound variable `getgr' GUILEC ice-9/q.go wrote `ice-9/q.go' GUILEC ice-9/rdelim.go wrote `ice-9/rdelim.go' GUILEC ice-9/receive.go wrote `ice-9/receive.go' GUILEC ice-9/regex.go wrote `ice-9/regex.go' GUILEC ice-9/runq.go wrote `ice-9/runq.go' ice-9/runq.scm:93:8: warning: possibly unbound variable `apply-to-args' GUILEC ice-9/rw.go wrote `ice-9/rw.go' GUILEC ice-9/safe-r5rs.go wrote `ice-9/safe-r5rs.go' GUILEC ice-9/safe.go wrote `ice-9/safe.go' GUILEC ice-9/save-stack.go wrote `ice-9/save-stack.go' GUILEC ice-9/scm-style-repl.go wrote `ice-9/scm-style-repl.go' GUILEC ice-9/session.go wrote `ice-9/session.go' ice-9/session.scm:241:11: warning: non-literal format string GUILEC ice-9/slib.go wrote `ice-9/slib.go' GUILEC ice-9/stack-catch.go wrote `ice-9/stack-catch.go' GUILEC ice-9/streams.go wrote `ice-9/streams.go' GUILEC ice-9/string-fun.go wrote `ice-9/string-fun.go' GUILEC ice-9/syncase.go wrote `ice-9/syncase.go' GUILEC ice-9/threads.go wrote `ice-9/threads.go' GUILEC ice-9/top-repl.go wrote `ice-9/top-repl.go' GUILEC ice-9/buffered-input.go wrote `ice-9/buffered-input.go' GUILEC ice-9/time.go wrote `ice-9/time.go' ice-9/time.scm:37:20: warning: possibly unbound variable `times' ice-9/time.scm:39:18: warning: possibly unbound variable `times' GUILEC ice-9/history.go wrote `ice-9/history.go' GUILEC ice-9/channel.go wrote `ice-9/channel.go' GUILEC ice-9/pretty-print.go wrote `ice-9/pretty-print.go' GUILEC ice-9/ftw.go wrote `ice-9/ftw.go' ice-9/ftw.scm:256:13: warning: possibly unbound variable `getuid' ice-9/ftw.scm:257:13: warning: possibly unbound variable `getgid' ice-9/ftw.scm:284:35: warning: possibly unbound variable `lstat' ice-9/ftw.scm:307:46: warning: possibly unbound variable `getuid' ice-9/ftw.scm:307:55: warning: possibly unbound variable `getgid' ice-9/ftw.scm:327:44: warning: possibly unbound variable `lstat' ice-9/ftw.scm:353:52: warning: possibly unbound variable `getuid' ice-9/ftw.scm:353:61: warning: possibly unbound variable `getgid' ice-9/ftw.scm:399:0: warning: possibly unbound variable `lstat' ice-9/ftw.scm:493:0: warning: possibly unbound variable `lstat' ice-9/ftw.scm:565:9: warning: possibly unbound variable `lstat' GUILEC ice-9/gap-buffer.go wrote `ice-9/gap-buffer.go' GUILEC ice-9/weak-vector.go wrote `ice-9/weak-vector.go' GUILEC ice-9/list.go wrote `ice-9/list.go' GUILEC ice-9/serialize.go wrote `ice-9/serialize.go' GUILEC ice-9/local-eval.go wrote `ice-9/local-eval.go' GUILEC srfi/srfi-2.go wrote `srfi/srfi-2.go' GUILEC srfi/srfi-4.go wrote `srfi/srfi-4.go' GUILEC srfi/srfi-4/gnu.go wrote `srfi/srfi-4/gnu.go' GUILEC srfi/srfi-6.go wrote `srfi/srfi-6.go' GUILEC srfi/srfi-8.go wrote `srfi/srfi-8.go' GUILEC srfi/srfi-9.go wrote `srfi/srfi-9.go' GUILEC srfi/srfi-9/gnu.go wrote `srfi/srfi-9/gnu.go' GUILEC srfi/srfi-10.go wrote `srfi/srfi-10.go' GUILEC srfi/srfi-11.go wrote `srfi/srfi-11.go' GUILEC srfi/srfi-13.go wrote `srfi/srfi-13.go' GUILEC srfi/srfi-14.go wrote `srfi/srfi-14.go' GUILEC srfi/srfi-16.go wrote `srfi/srfi-16.go' GUILEC srfi/srfi-17.go wrote `srfi/srfi-17.go' GUILEC srfi/srfi-18.go wrote `srfi/srfi-18.go' GUILEC srfi/srfi-19.go wrote `srfi/srfi-19.go' GUILEC srfi/srfi-26.go wrote `srfi/srfi-26.go' GUILEC srfi/srfi-27.go wrote `srfi/srfi-27.go' GUILEC srfi/srfi-31.go wrote `srfi/srfi-31.go' GUILEC srfi/srfi-34.go wrote `srfi/srfi-34.go' GUILEC srfi/srfi-35.go wrote `srfi/srfi-35.go' GUILEC srfi/srfi-37.go wrote `srfi/srfi-37.go' GUILEC srfi/srfi-38.go wrote `srfi/srfi-38.go' GUILEC srfi/srfi-41.go wrote `srfi/srfi-41.go' GUILEC srfi/srfi-42.go wrote `srfi/srfi-42.go' GUILEC srfi/srfi-39.go wrote `srfi/srfi-39.go' GUILEC srfi/srfi-45.go wrote `srfi/srfi-45.go' GUILEC srfi/srfi-60.go wrote `srfi/srfi-60.go' GUILEC srfi/srfi-67.go wrote `srfi/srfi-67.go' GUILEC srfi/srfi-69.go wrote `srfi/srfi-69.go' GUILEC srfi/srfi-88.go wrote `srfi/srfi-88.go' GUILEC srfi/srfi-98.go wrote `srfi/srfi-98.go' GUILEC rnrs/base.go wrote `rnrs/base.go' GUILEC rnrs/conditions.go wrote `rnrs/conditions.go' GUILEC rnrs/control.go wrote `rnrs/control.go' GUILEC rnrs/enums.go wrote `rnrs/enums.go' GUILEC rnrs/eval.go wrote `rnrs/eval.go' GUILEC rnrs/exceptions.go wrote `rnrs/exceptions.go' GUILEC rnrs/files.go wrote `rnrs/files.go' GUILEC rnrs/hashtables.go wrote `rnrs/hashtables.go' GUILEC rnrs/lists.go wrote `rnrs/lists.go' GUILEC rnrs/mutable-pairs.go wrote `rnrs/mutable-pairs.go' GUILEC rnrs/mutable-strings.go wrote `rnrs/mutable-strings.go' GUILEC rnrs/programs.go wrote `rnrs/programs.go' GUILEC rnrs/r5rs.go wrote `rnrs/r5rs.go' GUILEC rnrs/sorting.go wrote `rnrs/sorting.go' GUILEC rnrs/syntax-case.go wrote `rnrs/syntax-case.go' GUILEC rnrs/unicode.go wrote `rnrs/unicode.go' GUILEC rnrs/arithmetic/bitwise.go wrote `rnrs/arithmetic/bitwise.go' GUILEC rnrs/arithmetic/fixnums.go wrote `rnrs/arithmetic/fixnums.go' GUILEC rnrs/arithmetic/flonums.go wrote `rnrs/arithmetic/flonums.go' GUILEC rnrs/bytevectors.go wrote `rnrs/bytevectors.go' GUILEC rnrs/io/simple.go wrote `rnrs/io/simple.go' GUILEC rnrs/io/ports.go wrote `rnrs/io/ports.go' GUILEC rnrs/records/inspection.go wrote `rnrs/records/inspection.go' GUILEC rnrs/records/procedural.go wrote `rnrs/records/procedural.go' GUILEC rnrs/records/syntactic.go wrote `rnrs/records/syntactic.go' GUILEC rnrs.go wrote `rnrs.go' GUILEC oop/goops.go wrote `oop/goops.go' GUILEC oop/goops/active-slot.go wrote `oop/goops/active-slot.go' GUILEC oop/goops/compile.go wrote `oop/goops/compile.go' GUILEC oop/goops/composite-slot.go wrote `oop/goops/composite-slot.go' GUILEC oop/goops/describe.go wrote `oop/goops/describe.go' GUILEC oop/goops/dispatch.go wrote `oop/goops/dispatch.go' GUILEC oop/goops/internal.go wrote `oop/goops/internal.go' GUILEC oop/goops/save.go wrote `oop/goops/save.go' GUILEC oop/goops/stklos.go wrote `oop/goops/stklos.go' GUILEC oop/goops/util.go wrote `oop/goops/util.go' GUILEC oop/goops/accessors.go wrote `oop/goops/accessors.go' GUILEC oop/goops/simple.go wrote `oop/goops/simple.go' GUILEC system/vm/inspect.go wrote `system/vm/inspect.go' GUILEC system/vm/coverage.go wrote `system/vm/coverage.go' GUILEC system/vm/frame.go wrote `system/vm/frame.go' GUILEC system/vm/instruction.go wrote `system/vm/instruction.go' GUILEC system/vm/objcode.go wrote `system/vm/objcode.go' GUILEC system/vm/program.go wrote `system/vm/program.go' GUILEC system/vm/trace.go wrote `system/vm/trace.go' GUILEC system/vm/traps.go wrote `system/vm/traps.go' GUILEC system/vm/trap-state.go wrote `system/vm/trap-state.go' GUILEC system/vm/vm.go wrote `system/vm/vm.go' GUILEC system/foreign.go wrote `system/foreign.go' GUILEC system/xref.go wrote `system/xref.go' GUILEC system/repl/debug.go wrote `system/repl/debug.go' GUILEC system/repl/error-handling.go wrote `system/repl/error-handling.go' GUILEC system/repl/common.go wrote `system/repl/common.go' system/repl/common.scm:147:25: warning: possibly unbound variable `times' GUILEC system/repl/command.go wrote `system/repl/command.go' system/repl/command.scm:885:18: warning: possibly unbound variable `times' GUILEC system/repl/repl.go wrote `system/repl/repl.go' GUILEC system/repl/server.go wrote `system/repl/server.go' system/repl/server.scm:57:41: warning: possibly unbound variable `inet-aton' system/repl/server.scm:106:2: warning: possibly unbound variable `SIGPIPE' GUILEC scripts/compile.go wrote `scripts/compile.go' GUILEC scripts/disassemble.go wrote `scripts/disassemble.go' GUILEC scripts/display-commentary.go wrote `scripts/display-commentary.go' GUILEC scripts/doc-snarf.go wrote `scripts/doc-snarf.go' GUILEC scripts/frisk.go wrote `scripts/frisk.go' GUILEC scripts/generate-autoload.go wrote `scripts/generate-autoload.go' GUILEC scripts/help.go wrote `scripts/help.go' GUILEC scripts/lint.go wrote `scripts/lint.go' GUILEC scripts/list.go wrote `scripts/list.go' GUILEC scripts/punify.go wrote `scripts/punify.go' GUILEC scripts/read-scheme-source.go wrote `scripts/read-scheme-source.go' GUILEC scripts/read-text-outline.go wrote `scripts/read-text-outline.go' GUILEC scripts/use2dot.go wrote `scripts/use2dot.go' GUILEC scripts/snarf-check-and-output-texi.go wrote `scripts/snarf-check-and-output-texi.go' GUILEC scripts/summarize-guile-TODO.go wrote `scripts/summarize-guile-TODO.go' GUILEC scripts/api-diff.go wrote `scripts/api-diff.go' GUILEC scripts/read-rfc822.go wrote `scripts/read-rfc822.go' GUILEC scripts/snarf-guile-m4-docs.go wrote `scripts/snarf-guile-m4-docs.go' GUILEC language/ecmascript/tokenize.go wrote `language/ecmascript/tokenize.go' GUILEC language/ecmascript/parse.go %% Shift/Reduce conflict (shift 36, reduce 82) on 'lbrace' in state 437 %% Shift/Reduce conflict (shift 35, reduce 82) on 'lparen' in state 437 %% Shift/Reduce conflict (shift 34, reduce 82) on 'lbracket' in state 437 %% Shift/Reduce conflict (shift 33, reduce 82) on 'dot' in state 437 %% Shift/Reduce conflict (shift 32, reduce 82) on 'semicolon' in state 437 %% Shift/Reduce conflict (shift 31, reduce 82) on '+' in state 437 %% Shift/Reduce conflict (shift 30, reduce 82) on '-' in state 437 %% Shift/Reduce conflict (shift 29, reduce 82) on '++' in state 437 %% Shift/Reduce conflict (shift 28, reduce 82) on '--' in state 437 %% Shift/Reduce conflict (shift 27, reduce 82) on '!' in state 437 %% Shift/Reduce conflict (shift 26, reduce 82) on '~' in state 437 %% Shift/Reduce conflict (shift 25, reduce 82) on 'break' in state 437 %% Shift/Reduce conflict (shift 24, reduce 82) on 'new' in state 437 %% Shift/Reduce conflict (shift 23, reduce 82) on 'var' in state 437 %% Shift/Reduce conflict (shift 22, reduce 82) on 'return' in state 437 %% Shift/Reduce conflict (shift 21, reduce 82) on 'void' in state 437 %% Shift/Reduce conflict (shift 20, reduce 82) on 'for' in state 437 %% Shift/Reduce conflict (shift 19, reduce 82) on 'switch' in state 437 %% Shift/Reduce conflict (shift 18, reduce 82) on 'while' in state 437 %% Shift/Reduce conflict (shift 17, reduce 82) on 'continue' in state 437 %% Shift/Reduce conflict (shift 82, reduce 82) on 'function' in state 437 %% Shift/Reduce conflict (shift 15, reduce 82) on 'this' in state 437 %% Shift/Reduce conflict (shift 14, reduce 82) on 'with' in state 437 %% Shift/Reduce conflict (shift 13, reduce 82) on 'if' in state 437 %% Shift/Reduce conflict (shift 12, reduce 82) on 'throw' in state 437 %% Shift/Reduce conflict (shift 11, reduce 82) on 'delete' in state 437 %% Shift/Reduce conflict (shift 10, reduce 82) on 'try' in state 437 %% Shift/Reduce conflict (shift 9, reduce 82) on 'do' in state 437 %% Shift/Reduce conflict (shift 8, reduce 82) on 'typeof' in state 437 %% Shift/Reduce conflict (shift 7, reduce 82) on 'null' in state 437 %% Shift/Reduce conflict (shift 6, reduce 82) on 'true' in state 437 %% Shift/Reduce conflict (shift 5, reduce 82) on 'false' in state 437 %% Shift/Reduce conflict (shift 4, reduce 82) on 'Identifier' in state 437 %% Shift/Reduce conflict (shift 3, reduce 82) on 'StringLiteral' in state 437 %% Shift/Reduce conflict (shift 2, reduce 82) on 'NumericLiteral' in state 437 %% Shift/Reduce conflict (shift 1, reduce 82) on 'RegexpLiteral' in state 437 %% Shift/Reduce conflict (shift 36, reduce 81) on 'lbrace' in state 424 %% Shift/Reduce conflict (shift 35, reduce 81) on 'lparen' in state 424 %% Shift/Reduce conflict (shift 34, reduce 81) on 'lbracket' in state 424 %% Shift/Reduce conflict (shift 33, reduce 81) on 'dot' in state 424 %% Shift/Reduce conflict (shift 32, reduce 81) on 'semicolon' in state 424 %% Shift/Reduce conflict (shift 31, reduce 81) on '+' in state 424 %% Shift/Reduce conflict (shift 30, reduce 81) on '-' in state 424 %% Shift/Reduce conflict (shift 29, reduce 81) on '++' in state 424 %% Shift/Reduce conflict (shift 28, reduce 81) on '--' in state 424 %% Shift/Reduce conflict (shift 27, reduce 81) on '!' in state 424 %% Shift/Reduce conflict (shift 26, reduce 81) on '~' in state 424 %% Shift/Reduce conflict (shift 25, reduce 81) on 'break' in state 424 %% Shift/Reduce conflict (shift 24, reduce 81) on 'new' in state 424 %% Shift/Reduce conflict (shift 23, reduce 81) on 'var' in state 424 %% Shift/Reduce conflict (shift 22, reduce 81) on 'return' in state 424 %% Shift/Reduce conflict (shift 21, reduce 81) on 'void' in state 424 %% Shift/Reduce conflict (shift 20, reduce 81) on 'for' in state 424 %% Shift/Reduce conflict (shift 19, reduce 81) on 'switch' in state 424 %% Shift/Reduce conflict (shift 18, reduce 81) on 'while' in state 424 %% Shift/Reduce conflict (shift 17, reduce 81) on 'continue' in state 424 %% Shift/Reduce conflict (shift 82, reduce 81) on 'function' in state 424 %% Shift/Reduce conflict (shift 15, reduce 81) on 'this' in state 424 %% Shift/Reduce conflict (shift 14, reduce 81) on 'with' in state 424 %% Shift/Reduce conflict (shift 13, reduce 81) on 'if' in state 424 %% Shift/Reduce conflict (shift 12, reduce 81) on 'throw' in state 424 %% Shift/Reduce conflict (shift 11, reduce 81) on 'delete' in state 424 %% Shift/Reduce conflict (shift 10, reduce 81) on 'try' in state 424 %% Shift/Reduce conflict (shift 9, reduce 81) on 'do' in state 424 %% Shift/Reduce conflict (shift 8, reduce 81) on 'typeof' in state 424 %% Shift/Reduce conflict (shift 7, reduce 81) on 'null' in state 424 %% Shift/Reduce conflict (shift 6, reduce 81) on 'true' in state 424 %% Shift/Reduce conflict (shift 5, reduce 81) on 'false' in state 424 %% Shift/Reduce conflict (shift 4, reduce 81) on 'Identifier' in state 424 %% Shift/Reduce conflict (shift 3, reduce 81) on 'StringLiteral' in state 424 %% Shift/Reduce conflict (shift 2, reduce 81) on 'NumericLiteral' in state 424 %% Shift/Reduce conflict (shift 1, reduce 81) on 'RegexpLiteral' in state 424 %% Shift/Reduce conflict (shift 36, reduce 84) on 'lbrace' in state 423 %% Shift/Reduce conflict (shift 35, reduce 84) on 'lparen' in state 423 %% Shift/Reduce conflict (shift 34, reduce 84) on 'lbracket' in state 423 %% Shift/Reduce conflict (shift 33, reduce 84) on 'dot' in state 423 %% Shift/Reduce conflict (shift 32, reduce 84) on 'semicolon' in state 423 %% Shift/Reduce conflict (shift 31, reduce 84) on '+' in state 423 %% Shift/Reduce conflict (shift 30, reduce 84) on '-' in state 423 %% Shift/Reduce conflict (shift 29, reduce 84) on '++' in state 423 %% Shift/Reduce conflict (shift 28, reduce 84) on '--' in state 423 %% Shift/Reduce conflict (shift 27, reduce 84) on '!' in state 423 %% Shift/Reduce conflict (shift 26, reduce 84) on '~' in state 423 %% Shift/Reduce conflict (shift 25, reduce 84) on 'break' in state 423 %% Shift/Reduce conflict (shift 24, reduce 84) on 'new' in state 423 %% Shift/Reduce conflict (shift 23, reduce 84) on 'var' in state 423 %% Shift/Reduce conflict (shift 22, reduce 84) on 'return' in state 423 %% Shift/Reduce conflict (shift 21, reduce 84) on 'void' in state 423 %% Shift/Reduce conflict (shift 20, reduce 84) on 'for' in state 423 %% Shift/Reduce conflict (shift 19, reduce 84) on 'switch' in state 423 %% Shift/Reduce conflict (shift 18, reduce 84) on 'while' in state 423 %% Shift/Reduce conflict (shift 17, reduce 84) on 'continue' in state 423 %% Shift/Reduce conflict (shift 82, reduce 84) on 'function' in state 423 %% Shift/Reduce conflict (shift 15, reduce 84) on 'this' in state 423 %% Shift/Reduce conflict (shift 14, reduce 84) on 'with' in state 423 %% Shift/Reduce conflict (shift 13, reduce 84) on 'if' in state 423 %% Shift/Reduce conflict (shift 12, reduce 84) on 'throw' in state 423 %% Shift/Reduce conflict (shift 11, reduce 84) on 'delete' in state 423 %% Shift/Reduce conflict (shift 10, reduce 84) on 'try' in state 423 %% Shift/Reduce conflict (shift 9, reduce 84) on 'do' in state 423 %% Shift/Reduce conflict (shift 8, reduce 84) on 'typeof' in state 423 %% Shift/Reduce conflict (shift 7, reduce 84) on 'null' in state 423 %% Shift/Reduce conflict (shift 6, reduce 84) on 'true' in state 423 %% Shift/Reduce conflict (shift 5, reduce 84) on 'false' in state 423 %% Shift/Reduce conflict (shift 4, reduce 84) on 'Identifier' in state 423 %% Shift/Reduce conflict (shift 3, reduce 84) on 'StringLiteral' in state 423 %% Shift/Reduce conflict (shift 2, reduce 84) on 'NumericLiteral' in state 423 %% Shift/Reduce conflict (shift 1, reduce 84) on 'RegexpLiteral' in state 423 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '--' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '++' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '-' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on '+' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'semicolon' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'dot' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lbracket' in state 422 %% Reduce/Reduce conflict (reduce 11, reduce 7) on 'lparen' in state 422 %% Shift/Reduce conflict (shift 36, reduce 83) on 'lbrace' in state 400 %% Shift/Reduce conflict (shift 35, reduce 83) on 'lparen' in state 400 %% Shift/Reduce conflict (shift 34, reduce 83) on 'lbracket' in state 400 %% Shift/Reduce conflict (shift 33, reduce 83) on 'dot' in state 400 %% Shift/Reduce conflict (shift 32, reduce 83) on 'semicolon' in state 400 %% Shift/Reduce conflict (shift 31, reduce 83) on '+' in state 400 %% Shift/Reduce conflict (shift 30, reduce 83) on '-' in state 400 %% Shift/Reduce conflict (shift 29, reduce 83) on '++' in state 400 %% Shift/Reduce conflict (shift 28, reduce 83) on '--' in state 400 %% Shift/Reduce conflict (shift 27, reduce 83) on '!' in state 400 %% Shift/Reduce conflict (shift 26, reduce 83) on '~' in state 400 %% Shift/Reduce conflict (shift 25, reduce 83) on 'break' in state 400 %% Shift/Reduce conflict (shift 24, reduce 83) on 'new' in state 400 %% Shift/Reduce conflict (shift 23, reduce 83) on 'var' in state 400 %% Shift/Reduce conflict (shift 22, reduce 83) on 'return' in state 400 %% Shift/Reduce conflict (shift 21, reduce 83) on 'void' in state 400 %% Shift/Reduce conflict (shift 20, reduce 83) on 'for' in state 400 %% Shift/Reduce conflict (shift 19, reduce 83) on 'switch' in state 400 %% Shift/Reduce conflict (shift 18, reduce 83) on 'while' in state 400 %% Shift/Reduce conflict (shift 17, reduce 83) on 'continue' in state 400 %% Shift/Reduce conflict (shift 82, reduce 83) on 'function' in state 400 %% Shift/Reduce conflict (shift 15, reduce 83) on 'this' in state 400 %% Shift/Reduce conflict (shift 14, reduce 83) on 'with' in state 400 %% Shift/Reduce conflict (shift 13, reduce 83) on 'if' in state 400 %% Shift/Reduce conflict (shift 12, reduce 83) on 'throw' in state 400 %% Shift/Reduce conflict (shift 11, reduce 83) on 'delete' in state 400 %% Shift/Reduce conflict (shift 10, reduce 83) on 'try' in state 400 %% Shift/Reduce conflict (shift 9, reduce 83) on 'do' in state 400 %% Shift/Reduce conflict (shift 8, reduce 83) on 'typeof' in state 400 %% Shift/Reduce conflict (shift 7, reduce 83) on 'null' in state 400 %% Shift/Reduce conflict (shift 6, reduce 83) on 'true' in state 400 %% Shift/Reduce conflict (shift 5, reduce 83) on 'false' in state 400 %% Shift/Reduce conflict (shift 4, reduce 83) on 'Identifier' in state 400 %% Shift/Reduce conflict (shift 3, reduce 83) on 'StringLiteral' in state 400 %% Shift/Reduce conflict (shift 2, reduce 83) on 'NumericLiteral' in state 400 %% Shift/Reduce conflict (shift 1, reduce 83) on 'RegexpLiteral' in state 400 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '--' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '++' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '-' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on '+' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'semicolon' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'dot' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lbracket' in state 397 %% Reduce/Reduce conflict (reduce 9, reduce 6) on 'lparen' in state 397 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 393 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 393 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 393 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 393 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 393 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 393 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 393 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 393 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 393 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 393 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 393 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 393 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 393 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 393 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 393 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 393 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 393 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 393 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 393 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 393 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 393 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 393 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 393 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 393 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 393 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 393 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 393 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 393 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 393 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 393 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 393 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 393 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 393 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 393 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 393 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 393 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 369 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 369 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 369 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 369 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 369 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 369 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 369 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 369 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 369 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 369 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 369 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 369 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 369 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 369 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 369 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 369 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 369 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 369 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 369 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 369 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 369 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 369 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 369 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 369 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 369 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 369 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 369 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 369 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 369 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 369 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 369 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 369 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 369 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 369 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 369 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 369 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 363 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 363 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 363 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 363 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 363 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 363 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 363 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 363 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 363 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 363 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 363 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 363 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 363 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 363 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 363 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 363 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 363 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 363 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 363 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 363 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 363 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 363 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 363 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 363 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 363 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 363 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 363 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 363 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 363 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 363 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 363 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 363 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 363 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 363 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 363 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 363 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 338 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 338 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 338 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 338 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 338 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 338 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 338 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 338 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 338 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 338 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 338 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 338 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 338 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 338 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 326 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 326 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 326 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 326 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 326 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 326 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 326 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 326 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 326 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 326 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 326 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 326 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 326 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 326 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 326 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 326 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 326 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 326 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 326 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 326 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 326 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 326 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 326 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 326 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 326 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 326 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 326 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 326 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 326 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 326 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 326 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 326 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 326 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 326 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 326 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 326 %% Shift/Reduce conflict (shift 36, reduce 16) on 'lbrace' in state 324 %% Shift/Reduce conflict (shift 35, reduce 16) on 'lparen' in state 324 %% Shift/Reduce conflict (shift 34, reduce 16) on 'lbracket' in state 324 %% Shift/Reduce conflict (shift 33, reduce 16) on 'dot' in state 324 %% Shift/Reduce conflict (shift 32, reduce 16) on 'semicolon' in state 324 %% Shift/Reduce conflict (shift 31, reduce 16) on '+' in state 324 %% Shift/Reduce conflict (shift 30, reduce 16) on '-' in state 324 %% Shift/Reduce conflict (shift 29, reduce 16) on '++' in state 324 %% Shift/Reduce conflict (shift 28, reduce 16) on '--' in state 324 %% Shift/Reduce conflict (shift 27, reduce 16) on '!' in state 324 %% Shift/Reduce conflict (shift 26, reduce 16) on '~' in state 324 %% Shift/Reduce conflict (shift 25, reduce 16) on 'break' in state 324 %% Shift/Reduce conflict (shift 24, reduce 16) on 'new' in state 324 %% Shift/Reduce conflict (shift 23, reduce 16) on 'var' in state 324 %% Shift/Reduce conflict (shift 22, reduce 16) on 'return' in state 324 %% Shift/Reduce conflict (shift 21, reduce 16) on 'void' in state 324 %% Shift/Reduce conflict (shift 20, reduce 16) on 'for' in state 324 %% Shift/Reduce conflict (shift 19, reduce 16) on 'switch' in state 324 %% Shift/Reduce conflict (shift 18, reduce 16) on 'while' in state 324 %% Shift/Reduce conflict (shift 17, reduce 16) on 'continue' in state 324 %% Shift/Reduce conflict (shift 16, reduce 16) on 'function' in state 324 %% Shift/Reduce conflict (shift 15, reduce 16) on 'this' in state 324 %% Shift/Reduce conflict (shift 14, reduce 16) on 'with' in state 324 %% Shift/Reduce conflict (shift 13, reduce 16) on 'if' in state 324 %% Shift/Reduce conflict (shift 12, reduce 16) on 'throw' in state 324 %% Shift/Reduce conflict (shift 11, reduce 16) on 'delete' in state 324 %% Shift/Reduce conflict (shift 10, reduce 16) on 'try' in state 324 %% Shift/Reduce conflict (shift 9, reduce 16) on 'do' in state 324 %% Shift/Reduce conflict (shift 8, reduce 16) on 'typeof' in state 324 %% Shift/Reduce conflict (shift 7, reduce 16) on 'null' in state 324 %% Shift/Reduce conflict (shift 6, reduce 16) on 'true' in state 324 %% Shift/Reduce conflict (shift 5, reduce 16) on 'false' in state 324 %% Shift/Reduce conflict (shift 4, reduce 16) on 'Identifier' in state 324 %% Shift/Reduce conflict (shift 3, reduce 16) on 'StringLiteral' in state 324 %% Shift/Reduce conflict (shift 2, reduce 16) on 'NumericLiteral' in state 324 %% Shift/Reduce conflict (shift 1, reduce 16) on 'RegexpLiteral' in state 324 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 321 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 321 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 321 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 321 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 321 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 321 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 321 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 321 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 321 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 321 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 321 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 321 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 321 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 321 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 321 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 321 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 321 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 321 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 321 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 321 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 321 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 321 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 321 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 321 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 321 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 321 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 321 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 321 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 321 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 321 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 321 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 321 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 321 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 321 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 321 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 321 %% Shift/Reduce conflict (shift 367, reduce 49) on 'else' in state 319 %% Shift/Reduce conflict (shift 216, reduce 42) on '=' in state 279 %% Shift/Reduce conflict (shift 36, reduce 17) on 'lbrace' in state 274 %% Shift/Reduce conflict (shift 35, reduce 17) on 'lparen' in state 274 %% Shift/Reduce conflict (shift 34, reduce 17) on 'lbracket' in state 274 %% Shift/Reduce conflict (shift 33, reduce 17) on 'dot' in state 274 %% Shift/Reduce conflict (shift 32, reduce 17) on 'semicolon' in state 274 %% Shift/Reduce conflict (shift 31, reduce 17) on '+' in state 274 %% Shift/Reduce conflict (shift 30, reduce 17) on '-' in state 274 %% Shift/Reduce conflict (shift 29, reduce 17) on '++' in state 274 %% Shift/Reduce conflict (shift 28, reduce 17) on '--' in state 274 %% Shift/Reduce conflict (shift 27, reduce 17) on '!' in state 274 %% Shift/Reduce conflict (shift 26, reduce 17) on '~' in state 274 %% Shift/Reduce conflict (shift 25, reduce 17) on 'break' in state 274 %% Shift/Reduce conflict (shift 24, reduce 17) on 'new' in state 274 %% Shift/Reduce conflict (shift 23, reduce 17) on 'var' in state 274 %% Shift/Reduce conflict (shift 22, reduce 17) on 'return' in state 274 %% Shift/Reduce conflict (shift 21, reduce 17) on 'void' in state 274 %% Shift/Reduce conflict (shift 20, reduce 17) on 'for' in state 274 %% Shift/Reduce conflict (shift 19, reduce 17) on 'switch' in state 274 %% Shift/Reduce conflict (shift 18, reduce 17) on 'while' in state 274 %% Shift/Reduce conflict (shift 17, reduce 17) on 'continue' in state 274 %% Shift/Reduce conflict (shift 16, reduce 17) on 'function' in state 274 %% Shift/Reduce conflict (shift 15, reduce 17) on 'this' in state 274 %% Shift/Reduce conflict (shift 14, reduce 17) on 'with' in state 274 %% Shift/Reduce conflict (shift 13, reduce 17) on 'if' in state 274 %% Shift/Reduce conflict (shift 12, reduce 17) on 'throw' in state 274 %% Shift/Reduce conflict (shift 11, reduce 17) on 'delete' in state 274 %% Shift/Reduce conflict (shift 10, reduce 17) on 'try' in state 274 %% Shift/Reduce conflict (shift 9, reduce 17) on 'do' in state 274 %% Shift/Reduce conflict (shift 8, reduce 17) on 'typeof' in state 274 %% Shift/Reduce conflict (shift 7, reduce 17) on 'null' in state 274 %% Shift/Reduce conflict (shift 6, reduce 17) on 'true' in state 274 %% Shift/Reduce conflict (shift 5, reduce 17) on 'false' in state 274 %% Shift/Reduce conflict (shift 4, reduce 17) on 'Identifier' in state 274 %% Shift/Reduce conflict (shift 3, reduce 17) on 'StringLiteral' in state 274 %% Shift/Reduce conflict (shift 2, reduce 17) on 'NumericLiteral' in state 274 %% Shift/Reduce conflict (shift 1, reduce 17) on 'RegexpLiteral' in state 274 %% Shift/Reduce conflict (shift 144, reduce 177) on 'in' in state 242 %% Shift/Reduce conflict (shift 144, reduce 178) on 'in' in state 241 %% Shift/Reduce conflict (shift 144, reduce 179) on 'in' in state 240 %% Shift/Reduce conflict (shift 144, reduce 180) on 'in' in state 239 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 214 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 214 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 214 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 214 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 214 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 214 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 214 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 214 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 214 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 214 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 214 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 214 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 214 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 214 %% Shift/Reduce conflict (shift 301, reduce 139) on 'in' in state 214 %% Shift/Reduce conflict (shift 188, reduce 87) on 'finally' in state 190 %% Shift/Reduce conflict (shift 80, reduce 119) on 'colon' in state 125 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 107 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 107 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 107 %% Shift/Reduce conflict (shift 216, reduce 40) on '=' in state 103 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 85 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 85 %% Shift/Reduce conflict (shift 36, reduce 2) on 'lbrace' in state 75 %% Shift/Reduce conflict (shift 35, reduce 2) on 'lparen' in state 75 %% Shift/Reduce conflict (shift 34, reduce 2) on 'lbracket' in state 75 %% Shift/Reduce conflict (shift 33, reduce 2) on 'dot' in state 75 %% Shift/Reduce conflict (shift 32, reduce 2) on 'semicolon' in state 75 %% Shift/Reduce conflict (shift 31, reduce 2) on '+' in state 75 %% Shift/Reduce conflict (shift 30, reduce 2) on '-' in state 75 %% Shift/Reduce conflict (shift 29, reduce 2) on '++' in state 75 %% Shift/Reduce conflict (shift 28, reduce 2) on '--' in state 75 %% Shift/Reduce conflict (shift 27, reduce 2) on '!' in state 75 %% Shift/Reduce conflict (shift 26, reduce 2) on '~' in state 75 %% Shift/Reduce conflict (shift 25, reduce 2) on 'break' in state 75 %% Shift/Reduce conflict (shift 24, reduce 2) on 'new' in state 75 %% Shift/Reduce conflict (shift 23, reduce 2) on 'var' in state 75 %% Shift/Reduce conflict (shift 22, reduce 2) on 'return' in state 75 %% Shift/Reduce conflict (shift 21, reduce 2) on 'void' in state 75 %% Shift/Reduce conflict (shift 20, reduce 2) on 'for' in state 75 %% Shift/Reduce conflict (shift 19, reduce 2) on 'switch' in state 75 %% Shift/Reduce conflict (shift 18, reduce 2) on 'while' in state 75 %% Shift/Reduce conflict (shift 17, reduce 2) on 'continue' in state 75 %% Shift/Reduce conflict (shift 16, reduce 2) on 'function' in state 75 %% Shift/Reduce conflict (shift 15, reduce 2) on 'this' in state 75 %% Shift/Reduce conflict (shift 14, reduce 2) on 'with' in state 75 %% Shift/Reduce conflict (shift 13, reduce 2) on 'if' in state 75 %% Shift/Reduce conflict (shift 12, reduce 2) on 'throw' in state 75 %% Shift/Reduce conflict (shift 11, reduce 2) on 'delete' in state 75 %% Shift/Reduce conflict (shift 10, reduce 2) on 'try' in state 75 %% Shift/Reduce conflict (shift 9, reduce 2) on 'do' in state 75 %% Shift/Reduce conflict (shift 8, reduce 2) on 'typeof' in state 75 %% Shift/Reduce conflict (shift 7, reduce 2) on 'null' in state 75 %% Shift/Reduce conflict (shift 6, reduce 2) on 'true' in state 75 %% Shift/Reduce conflict (shift 5, reduce 2) on 'false' in state 75 %% Shift/Reduce conflict (shift 4, reduce 2) on 'Identifier' in state 75 %% Shift/Reduce conflict (shift 3, reduce 2) on 'StringLiteral' in state 75 %% Shift/Reduce conflict (shift 2, reduce 2) on 'NumericLiteral' in state 75 %% Shift/Reduce conflict (shift 1, reduce 2) on 'RegexpLiteral' in state 75 %% Shift/Reduce conflict (shift 174, reduce 127) on 'lparen' in state 56 %% Shift/Reduce conflict (shift 177, reduce 127) on 'lbracket' in state 56 %% Shift/Reduce conflict (shift 176, reduce 127) on 'dot' in state 56 %% Shift/Reduce conflict (shift 174, reduce 138) on 'lparen' in state 54 %% Shift/Reduce conflict (shift 173, reduce 138) on 'lbracket' in state 54 %% Shift/Reduce conflict (shift 172, reduce 138) on 'dot' in state 54 %% Shift/Reduce conflict (shift 170, reduce 139) on '++' in state 53 %% Shift/Reduce conflict (shift 169, reduce 139) on '--' in state 53 %% Shift/Reduce conflict (shift 168, reduce 139) on '=' in state 53 %% Shift/Reduce conflict (shift 167, reduce 139) on '+=' in state 53 %% Shift/Reduce conflict (shift 166, reduce 139) on '-=' in state 53 %% Shift/Reduce conflict (shift 165, reduce 139) on '*=' in state 53 %% Shift/Reduce conflict (shift 164, reduce 139) on '%=' in state 53 %% Shift/Reduce conflict (shift 163, reduce 139) on '<<=' in state 53 %% Shift/Reduce conflict (shift 162, reduce 139) on '>>=' in state 53 %% Shift/Reduce conflict (shift 161, reduce 139) on '>>>=' in state 53 %% Shift/Reduce conflict (shift 160, reduce 139) on '&=' in state 53 %% Shift/Reduce conflict (shift 159, reduce 139) on 'bor=' in state 53 %% Shift/Reduce conflict (shift 158, reduce 139) on '^=' in state 53 %% Shift/Reduce conflict (shift 157, reduce 139) on '/=' in state 53 %% Shift/Reduce conflict (shift 153, reduce 159) on '+' in state 49 %% Shift/Reduce conflict (shift 152, reduce 159) on '-' in state 49 %% Shift/Reduce conflict (shift 144, reduce 176) on 'in' in state 47 wrote `language/ecmascript/parse.go' GUILEC language/ecmascript/impl.go wrote `language/ecmascript/impl.go' GUILEC language/ecmascript/base.go wrote `language/ecmascript/base.go' language/ecmascript/base.scm:227:22: warning: possibly unbound variable `Boolean' language/ecmascript/base.scm:228:21: warning: possibly unbound variable `String' language/ecmascript/base.scm:229:21: warning: possibly unbound variable `Number' GUILEC language/ecmascript/function.go wrote `language/ecmascript/function.go' language/ecmascript/function.scm:40:9: warning: possibly unbound variable `<js-array-object>' language/ecmascript/function.scm:44:43: warning: possibly unbound variable `js-array-vector' GUILEC language/ecmascript/array.go wrote `language/ecmascript/array.go' GUILEC language/ecmascript/compile-tree-il.go wrote `language/ecmascript/compile-tree-il.go' GUILEC language/ecmascript/spec.go wrote `language/ecmascript/spec.go' GUILEC language/elisp/lexer.go wrote `language/elisp/lexer.go' GUILEC language/elisp/parser.go wrote `language/elisp/parser.go' GUILEC language/elisp/bindings.go wrote `language/elisp/bindings.go' GUILEC language/elisp/compile-tree-il.go wrote `language/elisp/compile-tree-il.go' GUILEC language/elisp/runtime.go wrote `language/elisp/runtime.go' GUILEC language/elisp/runtime/function-slot.go WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `if' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `let*' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `while' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `defmacro' WARNING: (language elisp runtime function-slot): imported module (language elisp compile-tree-il) overrides core binding `quote' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `lambda' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `when' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `unless' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `cond' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `and' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `or' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime macros) overrides core binding `catch' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `<=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `>=' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `max' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `min' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `abs' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1+}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `#{1-}#' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `+' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `-' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `*' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `car' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cdr' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `length' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `cons' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `list' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `make-list' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `append' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `reverse' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `copy-tree' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `apply' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `throw' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `not' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `eval' WARNING: (language elisp runtime function-slot): imported module (language elisp runtime subrs) overrides core binding `load' wrote `language/elisp/runtime/function-slot.go' GUILEC language/elisp/runtime/value-slot.go wrote `language/elisp/runtime/value-slot.go' GUILEC language/elisp/runtime/macros.go wrote `language/elisp/runtime/macros.go' GUILEC language/elisp/runtime/subrs.go wrote `language/elisp/runtime/subrs.go' GUILEC language/elisp/spec.go wrote `language/elisp/spec.go' GUILEC language/brainfuck/parse.go wrote `language/brainfuck/parse.go' GUILEC language/brainfuck/compile-scheme.go wrote `language/brainfuck/compile-scheme.go' GUILEC language/brainfuck/compile-tree-il.go wrote `language/brainfuck/compile-tree-il.go' GUILEC language/brainfuck/spec.go wrote `language/brainfuck/spec.go' GUILEC statprof.go wrote `statprof.go' statprof.scm:303:8: warning: possibly unbound variable `setitimer' statprof.scm:303:8: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:355:12: warning: possibly unbound variable `setitimer' statprof.scm:355:12: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:356:12: warning: possibly unbound variable `setitimer' statprof.scm:356:12: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:380:34: warning: possibly unbound variable `setitimer' statprof.scm:380:34: warning: possibly unbound variable `ITIMER_PROF' statprof.scm:404:2: warning: possibly unbound variable `SIGPROF' GUILEC sxml/apply-templates.go wrote `sxml/apply-templates.go' GUILEC sxml/fold.go wrote `sxml/fold.go' GUILEC sxml/match.go wrote `sxml/match.go' GUILEC sxml/simple.go wrote `sxml/simple.go' GUILEC sxml/ssax/input-parse.go wrote `sxml/ssax/input-parse.go' GUILEC sxml/ssax.go wrote `sxml/ssax.go' GUILEC sxml/transform.go wrote `sxml/transform.go' GUILEC sxml/xpath.go wrote `sxml/xpath.go' GUILEC texinfo.go wrote `texinfo.go' GUILEC texinfo/docbook.go wrote `texinfo/docbook.go' GUILEC texinfo/html.go wrote `texinfo/html.go' GUILEC texinfo/indexing.go wrote `texinfo/indexing.go' GUILEC texinfo/string-utils.go wrote `texinfo/string-utils.go' GUILEC texinfo/plain-text.go wrote `texinfo/plain-text.go' GUILEC texinfo/reflection.go wrote `texinfo/reflection.go' GUILEC texinfo/serialize.go wrote `texinfo/serialize.go' GUILEC web/client.go wrote `web/client.go' GUILEC web/http.go wrote `web/http.go' GUILEC web/request.go wrote `web/request.go' GUILEC web/response.go wrote `web/response.go' GUILEC web/server.go wrote `web/server.go' GUILEC web/server/http.go web/server/http.scm:67:2: warning: possibly unbound variable `SIGPIPE' wrote `web/server/http.go' GUILEC web/uri.go wrote `web/uri.go' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' make[4]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0/' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/install -c -m 644 ice-9/psyntax-pp.scm ice-9/boot-9.scm ice-9/vlist.scm ice-9/r4rs.scm ice-9/r5rs.scm ice-9/deprecated.scm ice-9/and-let-star.scm ice-9/binary-ports.scm ice-9/calling.scm ice-9/command-line.scm ice-9/common-list.scm ice-9/control.scm ice-9/curried-definitions.scm ice-9/debug.scm ice-9/documentation.scm ice-9/eval-string.scm ice-9/expect.scm ice-9/format.scm ice-9/futures.scm ice-9/getopt-long.scm ice-9/hcons.scm ice-9/i18n.scm ice-9/iconv.scm ice-9/lineio.scm ice-9/ls.scm ice-9/mapping.scm ice-9/match.scm ice-9/networking.scm ice-9/null.scm ice-9/occam-channel.scm ice-9/optargs.scm ice-9/poe.scm ice-9/poll.scm ice-9/posix.scm ice-9/q.scm ice-9/rdelim.scm ice-9/receive.scm ice-9/regex.scm ice-9/runq.scm ice-9/rw.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml' /bin/install -c -m 644 sxml/apply-templates.scm sxml/fold.scm sxml/match.scm sxml/simple.scm sxml/ssax.scm sxml/transform.scm sxml/xpath.scm sxml/sxml-match.ss '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//system' /bin/install -c -m 644 system/foreign.scm system/xref.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//system' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-42' /bin/install -c -m 644 srfi/srfi-42/ec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-42' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//web' /bin/install -c -m 644 web/client.scm web/http.scm web/request.scm web/response.scm web/server.scm web/uri.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//web' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//scripts' /bin/install -c -m 644 scripts/compile.scm scripts/disassemble.scm scripts/display-commentary.scm scripts/doc-snarf.scm scripts/frisk.scm scripts/generate-autoload.scm scripts/help.scm scripts/lint.scm scripts/list.scm scripts/punify.scm scripts/read-scheme-source.scm scripts/read-text-outline.scm scripts/use2dot.scm scripts/snarf-check-and-output-texi.scm scripts/summarize-guile-TODO.scm scripts/api-diff.scm scripts/read-rfc822.scm scripts/snarf-guile-m4-docs.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//scripts' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/scheme' /bin/install -c -m 644 language/scheme/spec.scm language/scheme/compile-tree-il.scm language/scheme/decompile-tree-il.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/scheme' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/glil' /bin/install -c -m 644 language/glil/spec.scm language/glil/compile-assembly.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/glil' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/tree-il' /bin/install -c -m 644 language/tree-il/peval.scm language/tree-il/cse.scm language/tree-il/primitives.scm language/tree-il/effects.scm language/tree-il/fix-letrec.scm language/tree-il/optimize.scm language/tree-il/canonicalize.scm language/tree-il/analyze.scm language/tree-il/inline.scm language/tree-il/compile-glil.scm language/tree-il/debug.scm language/tree-il/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/tree-il' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/value' /bin/install -c -m 644 language/value/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/value' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//web/server' /bin/install -c -m 644 web/server/http.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//web/server' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-4' /bin/install -c -m 644 srfi/srfi-4/gnu.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-4' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/objcode' /bin/install -c -m 644 language/objcode/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/objcode' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/brainfuck' /bin/install -c -m 644 language/brainfuck/parse.scm language/brainfuck/compile-scheme.scm language/brainfuck/compile-tree-il.scm language/brainfuck/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/brainfuck' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/repl' /bin/install -c -m 644 system/repl/debug.scm system/repl/error-handling.scm system/repl/common.scm system/repl/command.scm system/repl/repl.scm system/repl/server.scm system/repl/describe.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/repl' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/records' /bin/install -c -m 644 rnrs/records/inspection.scm rnrs/records/procedural.scm rnrs/records/syntactic.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/records' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/arithmetic' /bin/install -c -m 644 rnrs/arithmetic/bitwise.scm rnrs/arithmetic/fixnums.scm rnrs/arithmetic/flonums.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/arithmetic' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language' /bin/install -c -m 644 language/tree-il.scm language/glil.scm language/assembly.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/io' /bin/install -c -m 644 rnrs/io/simple.scm rnrs/io/ports.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs/io' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/base' /bin/install -c -m 644 system/base/pmatch.scm system/base/syntax.scm system/base/compile.scm system/base/language.scm system/base/lalr.scm system/base/message.scm system/base/target.scm system/base/ck.scm system/base/lalr.upstream.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/base' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/install -c -m 644 ice-9/safe-r5rs.scm ice-9/safe.scm ice-9/save-stack.scm ice-9/scm-style-repl.scm ice-9/session.scm ice-9/slib.scm ice-9/stack-catch.scm ice-9/streams.scm ice-9/string-fun.scm ice-9/syncase.scm ice-9/threads.scm ice-9/top-repl.scm ice-9/buffered-input.scm ice-9/time.scm ice-9/history.scm ice-9/channel.scm ice-9/pretty-print.scm ice-9/ftw.scm ice-9/gap-buffer.scm ice-9/weak-vector.scm ice-9/list.scm ice-9/serialize.scm ice-9/local-eval.scm ice-9/match.upstream.scm ice-9/psyntax.scm ice-9/r6rs-libraries.scm ice-9/quasisyntax.scm ice-9/eval.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//ice-9' /bin/install -c -m 644 rnrs.scm statprof.scm texinfo.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//.' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-67' /bin/install -c -m 644 srfi/srfi-67/compare.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-67' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml/ssax' /bin/install -c -m 644 sxml/ssax/input-parse.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml/ssax' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/vm' /bin/install -c -m 644 system/vm/inspect.scm system/vm/coverage.scm system/vm/frame.scm system/vm/instruction.scm system/vm/objcode.scm system/vm/program.scm system/vm/trace.scm system/vm/traps.scm system/vm/trap-state.scm system/vm/vm.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//system/vm' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs' /bin/install -c -m 644 rnrs/base.scm rnrs/conditions.scm rnrs/control.scm rnrs/enums.scm rnrs/eval.scm rnrs/exceptions.scm rnrs/files.scm rnrs/hashtables.scm rnrs/lists.scm rnrs/mutable-pairs.scm rnrs/mutable-strings.scm rnrs/programs.scm rnrs/r5rs.scm rnrs/sorting.scm rnrs/syntax-case.scm rnrs/unicode.scm rnrs/bytevectors.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//rnrs' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/elisp/runtime' /bin/install -c -m 644 language/elisp/runtime/function-slot.scm language/elisp/runtime/value-slot.scm language/elisp/runtime/macros.scm language/elisp/runtime/subrs.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/elisp/runtime' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/elisp' /bin/install -c -m 644 language/elisp/lexer.scm language/elisp/parser.scm language/elisp/bindings.scm language/elisp/compile-tree-il.scm language/elisp/runtime.scm language/elisp/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/elisp' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/ecmascript' /bin/install -c -m 644 language/ecmascript/tokenize.scm language/ecmascript/parse.scm language/ecmascript/impl.scm language/ecmascript/base.scm language/ecmascript/function.scm language/ecmascript/array.scm language/ecmascript/compile-tree-il.scm language/ecmascript/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/ecmascript' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-9' /bin/install -c -m 644 srfi/srfi-9/gnu.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi/srfi-9' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/assembly' /bin/install -c -m 644 language/assembly/spec.scm language/assembly/compile-bytecode.scm language/assembly/decompile-bytecode.scm language/assembly/disassemble.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/assembly' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml/upstream' /bin/install -c -m 644 sxml/upstream/SSAX.scm sxml/upstream/SXML-tree-trans.scm sxml/upstream/SXPath-old.scm sxml/upstream/assert.scm sxml/upstream/input-parse.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//sxml/upstream' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//texinfo' /bin/install -c -m 644 texinfo/docbook.scm texinfo/html.scm texinfo/indexing.scm texinfo/string-utils.scm texinfo/plain-text.scm texinfo/reflection.scm texinfo/serialize.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//texinfo' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//oop' /bin/install -c -m 644 oop/goops.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//oop' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//oop/goops' /bin/install -c -m 644 oop/goops/active-slot.scm oop/goops/compile.scm oop/goops/composite-slot.scm oop/goops/describe.scm oop/goops/dispatch.scm oop/goops/internal.scm oop/goops/save.scm oop/goops/stklos.scm oop/goops/util.scm oop/goops/accessors.scm oop/goops/simple.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//oop/goops' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/bytecode' /bin/install -c -m 644 language/bytecode/spec.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//language/bytecode' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi' /bin/install -c -m 644 srfi/srfi-1.scm srfi/srfi-2.scm srfi/srfi-4.scm srfi/srfi-6.scm srfi/srfi-8.scm srfi/srfi-9.scm srfi/srfi-10.scm srfi/srfi-11.scm srfi/srfi-13.scm srfi/srfi-14.scm srfi/srfi-16.scm srfi/srfi-17.scm srfi/srfi-18.scm srfi/srfi-19.scm srfi/srfi-26.scm srfi/srfi-27.scm srfi/srfi-31.scm srfi/srfi-34.scm srfi/srfi-35.scm srfi/srfi-37.scm srfi/srfi-38.scm srfi/srfi-41.scm srfi/srfi-42.scm srfi/srfi-39.scm srfi/srfi-45.scm srfi/srfi-60.scm srfi/srfi-67.scm srfi/srfi-69.scm srfi/srfi-88.scm srfi/srfi-98.scm '/c/Users/shookie/guiletest/lib/share/guile/2.0//srfi' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache/' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' /bin/install -c -m 644 ice-9/psyntax-pp.go ice-9/boot-9.go ice-9/vlist.go ice-9/r4rs.go ice-9/r5rs.go ice-9/deprecated.go ice-9/and-let-star.go ice-9/binary-ports.go ice-9/calling.go ice-9/command-line.go ice-9/common-list.go ice-9/control.go ice-9/curried-definitions.go ice-9/debug.go ice-9/documentation.go ice-9/eval-string.go ice-9/expect.go ice-9/format.go ice-9/futures.go ice-9/getopt-long.go ice-9/hcons.go ice-9/i18n.go ice-9/iconv.go ice-9/lineio.go ice-9/ls.go ice-9/mapping.go ice-9/match.go ice-9/networking.go ice-9/null.go ice-9/occam-channel.go ice-9/optargs.go ice-9/poe.go ice-9/poll.go ice-9/posix.go ice-9/q.go ice-9/rdelim.go ice-9/receive.go ice-9/regex.go ice-9/runq.go ice-9/rw.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//sxml' /bin/install -c -m 644 sxml/apply-templates.go sxml/fold.go sxml/match.go sxml/simple.go sxml/ssax.go sxml/transform.go sxml/xpath.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//sxml' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system' /bin/install -c -m 644 system/foreign.go system/xref.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//web' /bin/install -c -m 644 web/client.go web/http.go web/request.go web/response.go web/server.go web/uri.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//web' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//scripts' /bin/install -c -m 644 scripts/compile.go scripts/disassemble.go scripts/display-commentary.go scripts/doc-snarf.go scripts/frisk.go scripts/generate-autoload.go scripts/help.go scripts/lint.go scripts/list.go scripts/punify.go scripts/read-scheme-source.go scripts/read-text-outline.go scripts/use2dot.go scripts/snarf-check-and-output-texi.go scripts/summarize-guile-TODO.go scripts/api-diff.go scripts/read-rfc822.go scripts/snarf-guile-m4-docs.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//scripts' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/scheme' /bin/install -c -m 644 language/scheme/spec.go language/scheme/compile-tree-il.go language/scheme/decompile-tree-il.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/scheme' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/glil' /bin/install -c -m 644 language/glil/spec.go language/glil/compile-assembly.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/glil' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/tree-il' /bin/install -c -m 644 language/tree-il/peval.go language/tree-il/cse.go language/tree-il/primitives.go language/tree-il/effects.go language/tree-il/fix-letrec.go language/tree-il/optimize.go language/tree-il/canonicalize.go language/tree-il/analyze.go language/tree-il/inline.go language/tree-il/compile-glil.go language/tree-il/debug.go language/tree-il/spec.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/tree-il' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/value' /bin/install -c -m 644 language/value/spec.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/value' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//web/server' /bin/install -c -m 644 web/server/http.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//web/server' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//srfi/srfi-4' /bin/install -c -m 644 srfi/srfi-4/gnu.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//srfi/srfi-4' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/objcode' /bin/install -c -m 644 language/objcode/spec.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/objcode' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/brainfuck' /bin/install -c -m 644 language/brainfuck/parse.go language/brainfuck/compile-scheme.go language/brainfuck/compile-tree-il.go language/brainfuck/spec.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/brainfuck' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system/repl' /bin/install -c -m 644 system/repl/debug.go system/repl/error-handling.go system/repl/common.go system/repl/command.go system/repl/repl.go system/repl/server.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system/repl' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//rnrs/records' /bin/install -c -m 644 rnrs/records/inspection.go rnrs/records/procedural.go rnrs/records/syntactic.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//rnrs/records' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//rnrs/arithmetic' /bin/install -c -m 644 rnrs/arithmetic/bitwise.go rnrs/arithmetic/fixnums.go rnrs/arithmetic/flonums.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//rnrs/arithmetic' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language' /bin/install -c -m 644 language/tree-il.go language/glil.go language/assembly.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//rnrs/io' /bin/install -c -m 644 rnrs/io/simple.go rnrs/io/ports.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//rnrs/io' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system/base' /bin/install -c -m 644 system/base/pmatch.go system/base/syntax.go system/base/compile.go system/base/language.go system/base/lalr.go system/base/message.go system/base/target.go system/base/ck.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system/base' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' /bin/install -c -m 644 ice-9/safe-r5rs.go ice-9/safe.go ice-9/save-stack.go ice-9/scm-style-repl.go ice-9/session.go ice-9/slib.go ice-9/stack-catch.go ice-9/streams.go ice-9/string-fun.go ice-9/syncase.go ice-9/threads.go ice-9/top-repl.go ice-9/buffered-input.go ice-9/time.go ice-9/history.go ice-9/channel.go ice-9/pretty-print.go ice-9/ftw.go ice-9/gap-buffer.go ice-9/weak-vector.go ice-9/list.go ice-9/serialize.go ice-9/local-eval.go ice-9/eval.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//ice-9' /bin/install -c -m 644 rnrs.go statprof.go texinfo.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//.' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//sxml/ssax' /bin/install -c -m 644 sxml/ssax/input-parse.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//sxml/ssax' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system/vm' /bin/install -c -m 644 system/vm/inspect.go system/vm/coverage.go system/vm/frame.go system/vm/instruction.go system/vm/objcode.go system/vm/program.go system/vm/trace.go system/vm/traps.go system/vm/trap-state.go system/vm/vm.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//system/vm' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//rnrs' /bin/install -c -m 644 rnrs/base.go rnrs/conditions.go rnrs/control.go rnrs/enums.go rnrs/eval.go rnrs/exceptions.go rnrs/files.go rnrs/hashtables.go rnrs/lists.go rnrs/mutable-pairs.go rnrs/mutable-strings.go rnrs/programs.go rnrs/r5rs.go rnrs/sorting.go rnrs/syntax-case.go rnrs/unicode.go rnrs/bytevectors.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//rnrs' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/elisp/runtime' /bin/install -c -m 644 language/elisp/runtime/function-slot.go language/elisp/runtime/value-slot.go language/elisp/runtime/macros.go language/elisp/runtime/subrs.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/elisp/runtime' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/elisp' /bin/install -c -m 644 language/elisp/lexer.go language/elisp/parser.go language/elisp/bindings.go language/elisp/compile-tree-il.go language/elisp/runtime.go language/elisp/spec.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/elisp' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/ecmascript' /bin/install -c -m 644 language/ecmascript/tokenize.go language/ecmascript/parse.go language/ecmascript/impl.go language/ecmascript/base.go language/ecmascript/function.go language/ecmascript/array.go language/ecmascript/compile-tree-il.go language/ecmascript/spec.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/ecmascript' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//srfi/srfi-9' /bin/install -c -m 644 srfi/srfi-9/gnu.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//srfi/srfi-9' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/assembly' /bin/install -c -m 644 language/assembly/spec.go language/assembly/compile-bytecode.go language/assembly/decompile-bytecode.go language/assembly/disassemble.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/assembly' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//texinfo' /bin/install -c -m 644 texinfo/docbook.go texinfo/html.go texinfo/indexing.go texinfo/string-utils.go texinfo/plain-text.go texinfo/reflection.go texinfo/serialize.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//texinfo' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//oop' /bin/install -c -m 644 oop/goops.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//oop' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//oop/goops' /bin/install -c -m 644 oop/goops/active-slot.go oop/goops/compile.go oop/goops/composite-slot.go oop/goops/describe.go oop/goops/dispatch.go oop/goops/internal.go oop/goops/save.go oop/goops/stklos.go oop/goops/util.go oop/goops/accessors.go oop/goops/simple.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//oop/goops' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/bytecode' /bin/install -c -m 644 language/bytecode/spec.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//language/bytecode' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//srfi' /bin/install -c -m 644 srfi/srfi-1.go srfi/srfi-2.go srfi/srfi-4.go srfi/srfi-6.go srfi/srfi-8.go srfi/srfi-9.go srfi/srfi-10.go srfi/srfi-11.go srfi/srfi-13.go srfi/srfi-14.go srfi/srfi-16.go srfi/srfi-17.go srfi/srfi-18.go srfi/srfi-19.go srfi/srfi-26.go srfi/srfi-27.go srfi/srfi-31.go srfi/srfi-34.go srfi/srfi-35.go srfi/srfi-37.go srfi/srfi-38.go srfi/srfi-41.go srfi/srfi-42.go srfi/srfi-39.go srfi/srfi-45.go srfi/srfi-60.go srfi/srfi-67.go srfi/srfi-69.go srfi/srfi-88.go srfi/srfi-98.go '/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache//srfi' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/module' Making install in guile-readline make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make install-am make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0/' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/guile-readline' Making install in examples make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/examples' Making install in emacs make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/emacs' Making install in test-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in standalone make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make install-am make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[6]: Nothing to be done for `install-exec-am'. make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/standalone' Making install in vm make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite/vm' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/test-suite' Making install in benchmark-suite make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/benchmark-suite' Making install in gc-benchmarks make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/gc-benchmarks' Making install in am make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/am' Making install in doc make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' Making install in ref make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./guile.info ./guile.info-1 ./guile.info-2 ./guile.info-3 ./guile.info-4 ./guile.info-5 ./guile.info-6 ./guile.info-7 ./guile.info-8 ./guile.info-9 ./guile.info-10 '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/guile.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/ref' Making install in r5rs make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/info' /bin/install -c -m 644 ./r5rs.info '/c/Users/shookie/guiletest/lib/share/info' install-info --info-dir='/c/Users/shookie/guiletest/lib/share/info' '/c/Users/shookie/guiletest/lib/share/info/r5rs.info' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc/r5rs' make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[5]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/man/man1' /bin/install -c -m 644 guile.1 '/c/Users/shookie/guiletest/lib/share/man/man1' make[5]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0/doc' make[3]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' GEN libguile/guile-procedures.txt make[4]: Entering directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[4]: Nothing to be done for `install-exec-am'. /bin/mkdir -p '/c/Users/shookie/guiletest/lib/include/guile/2.0' /bin/install -c -m 644 libguile.h '/c/Users/shookie/guiletest/lib/include/guile/2.0' /bin/mkdir -p '/c/Users/shookie/guiletest/lib/share/guile/2.0' /bin/install -c -m 644 libguile/guile-procedures.txt '/c/Users/shookie/guiletest/lib/share/guile/2.0' make[4]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[3]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[2]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' make[1]: Leaving directory `/c/Users/shookie/guiletest/lib/guile-2.0' ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-30 0:20 ` Jan Schukat @ 2013-03-30 21:27 ` Ludovic Courtès 2013-04-05 23:14 ` Jan Schukat 0 siblings, 1 reply; 42+ messages in thread From: Ludovic Courtès @ 2013-03-30 21:27 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848-done Jan Schukat <shookie@email.de> skribis: > Starting the guile.exe or my own guiletest.exe still fails due to init > not finding the paths to the scheme modules, Did you try after running “make install”? If you try before, it’s normal that it doesn’t find. > but that is something I need to look into anyway, and will do that > over Easter. It's possible that that is due to the different path > treatment in mingw and windows proper, or it could just be that guile > can't handle windows paths with drive letters, colons and backslashes. It can handle that now (until 2.0.7 included that didn’t work correctly.) Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-30 21:27 ` Ludovic Courtès @ 2013-04-05 23:14 ` Jan Schukat 2013-04-07 10:20 ` Ludovic Courtès 0 siblings, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-04-05 23:14 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848-done Finally got to look into the load path issues on windows. Did so by adding some debug output into scm_init_load_path and scm_primitive_load_path. When during the build/compile the load paths are are normal windows paths, with output like this: GEN libguile/guile-procedures.txt path: (c:\Users\shookie\guiletest\lib\guile-2.0\module c:\Users\shookie\guiletest\lib\guile-2.0\guile-readline) full_filename: c:\Users\shookie\guiletest\lib\guile-2.0\module\ice-9/boot-9.scm compiled_filename: c:\Users\shookie\guiletest\lib\guile-2.0\module\ice-9/boot-9.go full_filename: c:\Users\shookie\guiletest\lib\guile-2.0\module\ice-9/r4rs.scm compiled_filename: c:\Users\shookie\guiletest\lib\guile-2.0\module\ice-9/r4rs.go But when I start the installed guile.exe, the output is like this and it can't find the scheme modules: path: (/c/Users/shookie/guiletest/lib/share/guile/2.0 /c/Users/shookie/guiletest/lib/share/guile/site/2.0 /c/Users/shookie/guiletest/lib/share/guile/site /c/Users/shookie/guiletest/lib/sh are/guile) full_filename: #f compiled_filename: #f So as I suspected a conflict between mingw-paths and windows paths. I suspect the mingw paths in the installed exe are the static #defines that configure sets up since those /c/User/... paths also show up when you extract the strings fromthe binary with strings guile.exe|grep "/lib". Now when I export GUILE_LOAD_PATH="/c/Users/shookie/guiletest/lib/share/guile/2.0" and GUILE_LOAD_COMPILE_PATH=""/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache" before invoking the installed guile.exe it finds the modules, but it doesn't seem to like compile path and tries to recompile all the modules which eventually fails with a stall, usually at q.scm or thread.scm Here is output from that case: $ export GUILE_LOAD_PATH="/c/Users/shookie/guiletest/lib/share/guile/2.0/" GUILE_LOAD_COMPILED_PATH="/c/Users/shookie/guiletest/lib(lib/guile/2.0/ccache/";./lib/bin/guile path: (c:/Users/shookie/guiletest/lib/share/guile/2.0/ /c/Users/shookie/guiletest/lib/share/guile/2.0 /c/Users/shookie/guiletest/lib/share/guile/site/2.0 /c/Users/shookie/guiletest/lib/share/guile/site /c/Users/shookie/guiletest/lib/sh are/guile) full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/ice-9/boot-9.scm compiled_filename: #fb full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/ice-9/r4rs.scm compiled_filename: #f full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/ice-9/psyntax-pp.scm compiled_filename: #f full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/ice-9/posix.scm compiled_filename: #f full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/ice-9/networking.scm compiled_filename: #f full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/srfi\srfi-4.scm compiled_filename: #f full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/rnrs\bytevectors.scm compiled_filename: #f full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/ice-9\command-line.scm compiled_filename: c:/Users/shookie/.cache/guile/ccache/2.0-LE-4-2.0\c/Users/shookie/guiletest/lib/share/guile/2.0/ice-9/command-line.scm.go ......snip..... full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/ice-9\futures.scm compiled_filename: c:/Users/shookie/.cache/guile/ccache/2.0-LE-4-2.0\c/Users/shookie/guiletest/lib/share/guile/2.0/ice-9/futures.scm.go full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/srfi\srfi-11.scm compiled_filename: #f ;;; compiling c:/Users/shookie/guiletest/lib/share/guile/2.0/srfi\srfi-11.scm ;;; it seems c:/Users/shookie/guiletest/lib/share/guile/2.0/srfi\srfi-11.scm ;;; is part of the compiler; skipping auto-compilation full_filename: c:/Users/shookie/guiletest/lib/share/guile/2.0/ice-9\q.scm compiled_filename: c:/Users/shookie/.cache/guile/ccache/2.0-LE-4-2.0\c/Users/shookie/guiletest/lib/share/guile/2.0/ice-9/q.scm.go And at that point it stalls. I will look more into it, but I hope this is already useful. But as usual each build takes quite a while, so progress is slow, since I always go away doing other things after I initiated a build and test-run. Regards Jan Schukat On 03/30/2013 10:27 PM, Ludovic Courtès wrote: > Jan Schukat <shookie@email.de> skribis: > >> Starting the guile.exe or my own guiletest.exe still fails due to init >> not finding the paths to the scheme modules, > Did you try after running “make install”? If you try before, it’s > normal that it doesn’t find. > >> but that is something I need to look into anyway, and will do that >> over Easter. It's possible that that is due to the different path >> treatment in mingw and windows proper, or it could just be that guile >> can't handle windows paths with drive letters, colons and backslashes. > It can handle that now (until 2.0.7 included that didn’t work > correctly.) > > Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-04-05 23:14 ` Jan Schukat @ 2013-04-07 10:20 ` Ludovic Courtès 2013-04-07 16:20 ` bug#13848: Aw: " Jan Schukat 0 siblings, 1 reply; 42+ messages in thread From: Ludovic Courtès @ 2013-04-07 10:20 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848-done Hi Jan, Jan Schukat <shookie@email.de> skribis: > But when I start the installed guile.exe, the output is like this and > it can't find the scheme modules: > > path: (/c/Users/shookie/guiletest/lib/share/guile/2.0 > /c/Users/shookie/guiletest/lib/share/guile/site/2.0 > /c/Users/shookie/guiletest/lib/share/guile/site > /c/Users/shookie/guiletest/lib/sh are/guile) > full_filename: #f > compiled_filename: #f > > So as I suspected a conflict between mingw-paths and windows paths. I > suspect the mingw paths in the installed exe are the static #defines > that configure sets up since those /c/User/... paths also show up when > you extract the strings fromthe binary with strings guile.exe|grep > "/lib". Yes. > Now when I export > GUILE_LOAD_PATH="/c/Users/shookie/guiletest/lib/share/guile/2.0" and > GUILE_LOAD_COMPILE_PATH=""/c/Users/shookie/guiletest/lib/lib/guile/2.0/ccache" You miss a ‘D’ here: ‘GUILE_LOAD_COMPILED_PATH’. > before invoking the installed guile.exe it finds the modules, but it > doesn't seem to like compile path and tries to recompile all the > modules which eventually fails with a stall, usually at q.scm or > thread.scm That’s probably because of the above. > Here is output from that case: > > $ export > GUILE_LOAD_PATH="/c/Users/shookie/guiletest/lib/share/guile/2.0/" > GUILE_LOAD_COMPILED_PATH="/c/Users/shookie/guiletest/lib(lib/guile/2.0/ccache/";./lib/bin/guile > > > path: (c:/Users/shookie/guiletest/lib/share/guile/2.0/ > /c/Users/shookie/guiletest/lib/share/guile/2.0 > /c/Users/shookie/guiletest/lib/share/guile/site/2.0 > /c/Users/shookie/guiletest/lib/share/guile/site > /c/Users/shookie/guiletest/lib/sh > are/guile) IIUC the difference is that the first element in the path starts with c:/ instead of /c. That’s probably because of the conversion that MinGW does when reading the environment variable (see <http://www.mingw.org/wiki/Posix_path_conversion>.) So that means that the file names obtained by ‘configure’ should be rewritten in Windows style, I suppose. I’m not sure exactly how this should be done though. Suggestions? Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Aw: Re: bug#13848: Statically linking guile-2.0. 2013-04-07 10:20 ` Ludovic Courtès @ 2013-04-07 16:20 ` Jan Schukat 2013-04-07 18:22 ` Andy Wingo 0 siblings, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-04-07 16:20 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848-done [-- Attachment #1: Type: text/html, Size: 3959 bytes --] ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Aw: Re: bug#13848: Statically linking guile-2.0. 2013-04-07 16:20 ` bug#13848: Aw: " Jan Schukat @ 2013-04-07 18:22 ` Andy Wingo 2013-04-07 19:18 ` bug#13848: Aw: " Jan Schukat 0 siblings, 1 reply; 42+ messages in thread From: Andy Wingo @ 2013-04-07 18:22 UTC (permalink / raw) To: Jan Schukat; +Cc: Ludovic Courtès, 13848-done On Sun 07 Apr 2013 18:20, "Jan Schukat" <shookie@email.de> writes: >> path: (/c/Users/shookie/guiletest/lib/share/guile/2.0 >> /c/Users/shookie/guiletest/lib/share/guile/site/2.0 >> /c/Users/shookie/guiletest/lib/share/guile/site >> /c/Users/shookie/guiletest/lib/sh are/guile) Have you tried configuring with --prefix="c:\\Users\\shookie\\guiletest" ? I.e., a windows-style path? Andy -- http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Aw: Re: Re: bug#13848: Statically linking guile-2.0. 2013-04-07 18:22 ` Andy Wingo @ 2013-04-07 19:18 ` Jan Schukat 2013-04-07 20:00 ` Ludovic Courtès 0 siblings, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-04-07 19:18 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848-done [-- Attachment #1: Type: text/html, Size: 9033 bytes --] ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Aw: Re: Re: bug#13848: Statically linking guile-2.0. 2013-04-07 19:18 ` bug#13848: Aw: " Jan Schukat @ 2013-04-07 20:00 ` Ludovic Courtès 2013-04-07 21:06 ` bug#13848: Aw: " Jan Schukat 0 siblings, 1 reply; 42+ messages in thread From: Ludovic Courtès @ 2013-04-07 20:00 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848-done "Jan Schukat" <shookie@email.de> skribis: > cd C:\Users\shookie\guiletest\lib/bin && rm -f "$guile_tools" && \ > cp -pR "$guild" "$guile_tools" > /bin/sh: line 4: cd: C:Usersshookieguiletestlib/bin: No such file or > directory Can you try with forward slashes instead? That should fix the above issue. That is: --prefix=c:/users/shookie/guiletest/ Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Aw: Re: Re: Re: bug#13848: Statically linking guile-2.0. 2013-04-07 20:00 ` Ludovic Courtès @ 2013-04-07 21:06 ` Jan Schukat 2013-04-08 7:48 ` Ludovic Courtès 0 siblings, 1 reply; 42+ messages in thread From: Jan Schukat @ 2013-04-07 21:06 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 13848-done [-- Attachment #1: Type: text/html, Size: 1954 bytes --] ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Aw: Re: Re: Re: bug#13848: Statically linking guile-2.0. 2013-04-07 21:06 ` bug#13848: Aw: " Jan Schukat @ 2013-04-08 7:48 ` Ludovic Courtès 0 siblings, 0 replies; 42+ messages in thread From: Ludovic Courtès @ 2013-04-08 7:48 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848-done "Jan Schukat" <shookie@email.de> skribis: > Ok, windows paths with forward slashes work, I can now start the > installed guile.exe without setting environment variables. Always nice > when the inconsistent formats are the working ones :) Heh. > The remaining issue is that it hangs itself after printing that it is > loading q.scm. Not sure how exactly to appreoach this problem. I guess > I'm gonna put a lot more debug output into the the various load > functions. Or I'm gonna make debug builds and fire up gdb on windows. > Or maybe you have an idea. No idea. If you could get a backtrace with gdb, that’d be helpful, yes. Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-09 23:06 ` Andy Wingo 2013-03-09 23:57 ` shookie 2013-03-10 4:09 ` shookie @ 2013-03-10 17:38 ` shookie 2013-03-10 17:38 ` shookie 2013-03-14 13:54 ` Ludovic Courtès 4 siblings, 0 replies; 42+ messages in thread From: shookie @ 2013-03-10 17:38 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 Ok, the guile compilation, apart from being exceptionally slow and spouting the mentioned backtraces, is also an infinite loop in the build process on my windows/mingw. I guess I adapt my Makefile to fully support cross compilation and make patches to guile load path initialization so that it becomes relative to the executable on windows (and osx too), since you can't rely on absolute paths there and on guile even being available. Will probably take a long while, since I got other stuff to do next week too. When I got results with that, I'm gonna write again probably due to new problems. Regards Jan Schukat On 10.03.2013, at 00:06, Andy Wingo <wingo@pobox.com> wrote: > On Sat 09 Mar 2013 14:44, Jan Schukat <shookie@email.de> writes: > >> Just tried it again on windows/mingw with the newer tarball: >> >> http://hydra.nixos.org/build/4290536/download/3/guile-2.0.7.157-929d1.tar.gz > > FWIW it seems hydra is totally down right now; of course that would > happen as soon as ludo goes on holiday ;) > > Here is a tarball I just generated from make dist: > > http://wingolog.org/priv/guile-2.0.7.179-94c5.tar.gz > >> checking for gcc... gcc >> checking whether the C compiler works... no >> configure: error: in `/c/Users/shookie/guiletest/lib/guile-2.0': >> configure: error: C compiler cannot create executables > > No idea what is happening here, this looks like a problem on your side. > > I fixed a bunch of things today. BTW are you using the old mingw or are > you using mingw32 or mingw64? It seems that the mingw64 project (which > provides both 32- and 64-bit builds) is the current thing, but I don't > really know. > > Anyway, please give the new tarball a roll and see how it works for you. > Be sure to have a relatively new mingw. I built everything myself, with > all default options (except --enable-threads=pthreads in bdw-gc, and > enabling dynamic builds in gmp), and it builds with only some warnings > about iconv (filed with gnulib). I can't get it to run under wine > however, and that must mean something is pretty wrong... > > Happy hacking, > > Andy > -- > http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-09 23:06 ` Andy Wingo ` (2 preceding siblings ...) 2013-03-10 17:38 ` shookie @ 2013-03-10 17:38 ` shookie 2013-03-14 13:54 ` Ludovic Courtès 4 siblings, 0 replies; 42+ messages in thread From: shookie @ 2013-03-10 17:38 UTC (permalink / raw) To: Andy Wingo; +Cc: Ludovic Courtès, 13848 Ok, the guile compilation, apart from being exceptionally slow and spouting the mentioned backtraces, is also an infinite loop in the build process on my windows/mingw. I guess I adapt my Makefile to fully support cross compilation and make patches to guile load path initialization so that it becomes relative to the executable on windows (and osx too), since you can't rely on absolute paths there and on guile even being available. Will probably take a long while, since I got other stuff to do next week too. When I got results with that, I'm gonna write again probably due to new problems. Regards Jan Schukat On 10.03.2013, at 00:06, Andy Wingo <wingo@pobox.com> wrote: > On Sat 09 Mar 2013 14:44, Jan Schukat <shookie@email.de> writes: > >> Just tried it again on windows/mingw with the newer tarball: >> >> http://hydra.nixos.org/build/4290536/download/3/guile-2.0.7.157-929d1.tar.gz > > FWIW it seems hydra is totally down right now; of course that would > happen as soon as ludo goes on holiday ;) > > Here is a tarball I just generated from make dist: > > http://wingolog.org/priv/guile-2.0.7.179-94c5.tar.gz > >> checking for gcc... gcc >> checking whether the C compiler works... no >> configure: error: in `/c/Users/shookie/guiletest/lib/guile-2.0': >> configure: error: C compiler cannot create executables > > No idea what is happening here, this looks like a problem on your side. > > I fixed a bunch of things today. BTW are you using the old mingw or are > you using mingw32 or mingw64? It seems that the mingw64 project (which > provides both 32- and 64-bit builds) is the current thing, but I don't > really know. > > Anyway, please give the new tarball a roll and see how it works for you. > Be sure to have a relatively new mingw. I built everything myself, with > all default options (except --enable-threads=pthreads in bdw-gc, and > enabling dynamic builds in gmp), and it builds with only some warnings > about iconv (filed with gnulib). I can't get it to run under wine > however, and that must mean something is pretty wrong... > > Happy hacking, > > Andy > -- > http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-09 23:06 ` Andy Wingo ` (3 preceding siblings ...) 2013-03-10 17:38 ` shookie @ 2013-03-14 13:54 ` Ludovic Courtès 4 siblings, 0 replies; 42+ messages in thread From: Ludovic Courtès @ 2013-03-14 13:54 UTC (permalink / raw) To: Andy Wingo; +Cc: 13848, Jan Schukat Andy Wingo <wingo@pobox.com> skribis: > On Sat 09 Mar 2013 14:44, Jan Schukat <shookie@email.de> writes: > >> Just tried it again on windows/mingw with the newer tarball: >> >> http://hydra.nixos.org/build/4290536/download/3/guile-2.0.7.157-929d1.tar.gz > > FWIW it seems hydra is totally down right now; of course that would > happen as soon as ludo goes on holiday ;) Indeed. :-) The problem was that the ‘tarball’ job would fail: --8<---------------cut here---------------start------------->8--- perf -m 10 ./iconv_open-hpux.gperf > ./iconv_open-hpux.h-t /bin/sh: gperf: command not found make[2]: *** [iconv_open-hpux.h] Error 127 --8<---------------cut here---------------end--------------->8--- (From <http://hydra.nixos.org/build/4395876>, caused by an upgrade to glibc 2.17 etc.) Should be fixed with <http://git.savannah.gnu.org/cgit/hydra-recipes.git/commit/?id=5096b05a2f552646d148ad161df023293df49536>. Ludo’. ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-01 16:19 bug#13848: Statically linking guile-2.0 Jan Schukat 2013-03-02 15:28 ` Ludovic Courtès @ 2013-03-09 9:32 ` Andy Wingo 2013-03-09 15:42 ` Jan Schukat 1 sibling, 1 reply; 42+ messages in thread From: Andy Wingo @ 2013-03-09 9:32 UTC (permalink / raw) To: Jan Schukat; +Cc: 13848 Hi, On Fri 01 Mar 2013 17:19, Jan Schukat <shookie@email.de> writes: > But compiling guile-2.0 on MinGW is a very hairy undertaking. I'm not > sure how often it is tested by the developers. Approximately never, unfortunately. However we have been improving it recently, and cross-compiling from GNU systems to MinGW is done occasionally. I will mostly address concerns about cross-compiling. Note that you should really be using Guile from stable-2.0 git and the latest MinGW. The easiest way to do that is to install a Fedora 18 VM, because they package mingw very well and are closest to upstream. I'm a Debian user and that's what I did, FWIW. I haven't yet tried with Debian itself. Also I would mention that dynamic linking should work on Windows, if all your DLLs are in the same folder. But I am ignorant and maybe that doesn't work. > Also, when you link statically and the symbol resolving works > differently, you have to go through some hoops to resolve boehm-gc > symbols, despite the preprocessor guards: That concerns > HAVE_GC_SET_FINALIZER_NOTIFIER, HAVE_GC_GET_HEAP_USAGE_SAFE, > HAVE_GC_GET_FREE_SPACE_DIVISOR, HAVE_GC_SET_FINALIZE_ON_DEMAND. In guile > there are statically defined fallbacks for the respective functions, > that cause linker conflicts when statically linked. Those functions > probably should be renamed completely to prevent this kind of problem. Are you saying that symbols with internal, static linkage inside bdw-gc conflict with static symbols inside Guile? This sounds like a misconfiguration issue. > Then there is also the old problem of the conflicting definitions of > struct timespec on MinGW in time.h and pthreads.h. FWIW I did not experience this in my cross-compile. > The bug #13768 about scm_getpid being used in "--without-posix" builds I > have sent already. Fixed upstream; thanks. > Also, on mingw the guile-tools/guild copy script can't deal with the > .exe ending. I have to configure and make once with > --program-suffix=.exe to create the proper script names and files, and > then again without, so they can be copied. (or find and copy them by > hand between builds) Are you certain that the meta/guile and meta/guild scripts need the .exe extension? They are not EXE files. MinGW should add on .exe to programs like libguile/guile (NB: not meta/guile) as needed. Also note that I just fixed a bug in meta/guile in which it was referencing libguile/guile without the @EXEEXT@. Basically I think --program-suffix is not what you want. > But then on install (processing .texi files) guile.exe fails with this > message: > > "Throw without catch before boot: > Throw to key system-error with args ("canonicalize-path" "~A" ("No such > file or directory") (2))Aborting. This is fixed in git, I believe. I think we're close. Can you give it another try? If needed I can handle the autogen side of things and give you a freshly prepared tarball. Andy -- http://wingolog.org/ ^ permalink raw reply [flat|nested] 42+ messages in thread
* bug#13848: Statically linking guile-2.0. 2013-03-09 9:32 ` Andy Wingo @ 2013-03-09 15:42 ` Jan Schukat 0 siblings, 0 replies; 42+ messages in thread From: Jan Schukat @ 2013-03-09 15:42 UTC (permalink / raw) To: Andy Wingo; +Cc: 13848 [-- Attachment #1: Type: text/plain, Size: 5199 bytes --] On 03/09/2013 10:32 AM, Andy Wingo wrote: > Hi, > > On Fri 01 Mar 2013 17:19, Jan Schukat<shookie@email.de> writes: > >> But compiling guile-2.0 on MinGW is a very hairy undertaking. I'm not >> sure how often it is tested by the developers. > Approximately never, unfortunately. However we have been improving it > recently, and cross-compiling from GNU systems to MinGW is done > occasionally. > > I will mostly address concerns about cross-compiling. Note that you > should really be using Guile from stable-2.0 git and the latest MinGW. > > The easiest way to do that is to install a Fedora 18 VM, because they > package mingw very well and are closest to upstream. I'm a Debian user > and that's what I did, FWIW. I haven't yet tried with Debian itself. > > Also I would mention that dynamic linking should work on Windows, if all > your DLLs are in the same folder. But I am ignorant and maybe that > doesn't work. Well, I really do my linux builds and most development on linux: that's the uname -a: Linux solon 3.5.0-26-generic #40-Ubuntu SMP Tue Feb 26 19:59:36 UTC 2013 i686 athlon i686 GNU/Linux My windows builds I really do on windows7/mingw, the uname -a there: MINGW32_NT-6.1 BIAS 1.0.18(0.48/3/2) 2012-11-21 22:34 i686 Msys I haven't even tried to do any of that guile building on OSX, and as I understand cross-compiling from Linux to OSX is more or less impossible/a nightmare (the VLC guys do it though I think), so I will do it on my old iMac too. I really would like to do all 3 targets via cross compiles some day (especially since compilation on linux is the fastest by far), but for now I just want to get it to work and have something to build on. >> Also, when you link statically and the symbol resolving works >> differently, you have to go through some hoops to resolve boehm-gc >> symbols, despite the preprocessor guards: That concerns >> HAVE_GC_SET_FINALIZER_NOTIFIER, HAVE_GC_GET_HEAP_USAGE_SAFE, >> HAVE_GC_GET_FREE_SPACE_DIVISOR, HAVE_GC_SET_FINALIZE_ON_DEMAND. In guile >> there are statically defined fallbacks for the respective functions, >> that cause linker conflicts when statically linked. Those functions >> probably should be renamed completely to prevent this kind of problem. > Are you saying that symbols with internal, static linkage inside bdw-gc > conflict with static symbols inside Guile? This sounds like a > misconfiguration issue. That problem I really have on Linux too. I build my own gc for static linking, and I pass the relevant environment variables to configure (I don't rely in pkg-config, because it is not easily available on windows) .You should be able to reproduce it, with my little test project. But when I don't pass those CPP guards to configure, I get compile errors. >> Then there is also the old problem of the conflicting definitions of >> struct timespec on MinGW in time.h and pthreads.h. > FWIW I did not experience this in my cross-compile. That's a very old and nasty problem with the pthread headers on windows. When I was searching I found people having problems with that for years and years. > >> The bug #13768 about scm_getpid being used in "--without-posix" builds I >> have sent already. > Fixed upstream; thanks. > >> Also, on mingw the guile-tools/guild copy script can't deal with the >> .exe ending. I have to configure and make once with >> --program-suffix=.exe to create the proper script names and files, and >> then again without, so they can be copied. (or find and copy them by >> hand between builds) > Are you certain that the meta/guile and meta/guild scripts need the .exe > extension? They are not EXE files. MinGW should add on .exe to > programs like libguile/guile (NB: not meta/guile) as needed. > > Also note that I just fixed a bug in meta/guile in which it was > referencing libguile/guile without the @EXEEXT@. > > Basically I think --program-suffix is not what you want. I guess You can really only reproduce that on windows, since that really has to do with how windows treats paths and executable file names. >> But then on install (processing .texi files) guile.exe fails with this >> message: >> >> "Throw without catch before boot: >> Throw to key system-error with args ("canonicalize-path" "~A" ("No such >> file or directory") (2))Aborting. > This is fixed in git, I believe. > > I think we're close. Can you give it another try? If needed I can > handle the autogen side of things and give you a freshly prepared > tarball. I tried today with this tarball: http://hydra.nixos.org/build/4290536/download/3/guile-2.0.7.157-929d1.tar.gz Seems to have a gcc check error where a capital -V option is passed and it fails. Summary in previous email to this bug thread. > Andy I will keep trying of course. I can foresee a lot of problems with libreadline and similar loadable modules that use external dynamic libraries that don't come in a standard windows install on windows too. But I plan to make some changes/patches to the load paths anyway, so they work the same everywhere for my program, so I can address that there. But until then I first need to get something that properly builds everywhere reliably. Regards Jan Schukat [-- Attachment #2: guiletest.tgz --] [-- Type: application/x-compressed-tar, Size: 2467 bytes --] ^ permalink raw reply [flat|nested] 42+ messages in thread
end of thread, other threads:[~2013-04-08 7:48 UTC | newest] Thread overview: 42+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-03-01 16:19 bug#13848: Statically linking guile-2.0 Jan Schukat 2013-03-02 15:28 ` Ludovic Courtès 2013-03-03 23:20 ` Jan Schukat 2013-03-05 0:54 ` Jan Schukat 2013-03-05 10:22 ` Ludovic Courtès 2013-03-05 15:44 ` Jan Schukat 2013-03-05 17:25 ` Ludovic Courtès 2013-03-05 22:25 ` Jan Schukat 2013-03-06 23:12 ` Ludovic Courtès 2013-03-09 13:44 ` Jan Schukat 2013-03-09 23:06 ` Andy Wingo 2013-03-09 23:57 ` shookie 2013-03-10 4:09 ` shookie 2013-03-10 17:32 ` Andy Wingo 2013-03-10 18:54 ` shookie 2013-03-10 19:23 ` Andy Wingo 2013-03-10 21:17 ` shookie 2013-03-10 22:03 ` shookie 2013-03-10 22:53 ` Andy Wingo 2013-03-11 0:07 ` shookie 2013-03-11 1:43 ` shookie 2013-03-11 8:26 ` Andy Wingo 2013-03-11 9:30 ` shookie 2013-03-13 9:30 ` Andy Wingo 2013-03-13 19:04 ` bug#13848: Aw: " Jan Schukat 2013-03-16 1:36 ` Jan Schukat 2013-03-29 19:35 ` Ludovic Courtès 2013-03-30 0:20 ` Jan Schukat 2013-03-30 21:27 ` Ludovic Courtès 2013-04-05 23:14 ` Jan Schukat 2013-04-07 10:20 ` Ludovic Courtès 2013-04-07 16:20 ` bug#13848: Aw: " Jan Schukat 2013-04-07 18:22 ` Andy Wingo 2013-04-07 19:18 ` bug#13848: Aw: " Jan Schukat 2013-04-07 20:00 ` Ludovic Courtès 2013-04-07 21:06 ` bug#13848: Aw: " Jan Schukat 2013-04-08 7:48 ` Ludovic Courtès 2013-03-10 17:38 ` shookie 2013-03-10 17:38 ` shookie 2013-03-14 13:54 ` Ludovic Courtès 2013-03-09 9:32 ` Andy Wingo 2013-03-09 15:42 ` Jan Schukat
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).