bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#13848: Statically linking guile-2.0.


From: Jan Schukat
Subject: bug#13848: Statically linking guile-2.0.
Date: Fri, 01 Mar 2013 17:19:59 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130106 Thunderbird/17.0.2

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






reply via email to

[Prev in Thread] Current Thread [Next in Thread]