Re: Again on Windows support (2)

2009-07-01 Thread carlo.bramix
. Sincerely, Carlo Bramini. -- Initial Header --- From : guile-devel-bounces+carlo.bramix=libero...@gnu.org To : guile-devel guile-devel@gnu.org Cc : Date : Fri, 26 Jun 2009 20:45:25 +0200 Subject : Re: Again on Windows support (2) Hello

Re: Again on Windows support (2)

2009-06-26 Thread carlo.bramix
To : guile-devel guile-devel@gnu.org Cc : Date : Mon, 22 Jun 2009 12:22:33 +0200 Subject : Re: Again on Windows support (2) Hello, adding -export-dynamic -no-undefined fixed guile under cygwin. Both make and make install are now executed without troubles. Success! But unfortunately

Re: Again on Windows support (2)

2009-06-23 Thread carlo.bramix
. -- Initial Header --- From : guile-devel-bounces+carlo.bramix=libero...@gnu.org To : guile-devel guile-devel@gnu.org Cc : Date : Mon, 22 Jun 2009 12:22:33 +0200 Subject : Re: Again on Windows support (2) Hello, adding -export-dynamic -no-undefined

Re: Again on Windows support (2)

2009-06-22 Thread carlo.bramix
. Sincerely, Carlo Bramini. -- Initial Header --- From : Andy Wingo wi...@pobox.com To : carlo.bramix carlo.bra...@libero.it Cc : guile-devel guile-devel@gnu.org Date : Sat, 20 Jun 2009 12:53:48 +0200 Subject : Re: Again on Windows support (2) On Fri 19 Jun

Re: Again on Windows support (2)

2009-06-22 Thread carlo.bramix
11:18:05 +0200 Subject : Re: Again on Windows support (2) Hello, Bug found. The problem seems to happen because the libguile-i18n-v-0 is missing these flags: -export-dynamic -no-undefined Infact it created a static library and not a DLL, I believe it failed for this reason. Now I try

Re: Again on Windows support (2)

2009-06-19 Thread carlo.bramix
: guile-devel guile-devel@gnu.org Date : Wed, 17 Jun 2009 21:41:16 +0100 Subject : Re: Again on Windows support (2) carlo.bramix carlo.bra...@libero.it writes: $ ./pre-inst-guile -c '(display foo)' Backtrace: In unknown file: ?: 0* (begin (eval-string (display) (quit)) ?: 1

Re: Again on Windows support (2)

2009-06-19 Thread carlo.bramix
--- From : Neil Jerram n...@ossau.uklinux.net To : carlo.bramix carlo.bra...@libero.it Cc : guile-devel guile-devel@gnu.org Date : Wed, 17 Jun 2009 22:09:08 +0100 Subject : Re: Again on Windows support (2) Neil Jerram n...@ossau.uklinux.net writes: carlo.bramix

Re: Again on Windows support (2)

2009-06-19 Thread Ludovic Courtès
Hi Carlo, carlo.bramix carlo.bra...@libero.it writes: unnamed port: In procedure dynamic-func in expression (dynamic-call scm_init_programs (dynamic-link libguile)): unnamed port: No error Can you try to change the following lines in libguile/programs.h: --8---cut

Re: Again on Windows support (2)

2009-06-19 Thread Neil Jerram
carlo.bramix carlo.bra...@libero.it writes: Hello, this is the command that I gave me some results: $ ./pre-inst-guile-env ./libtool --mode=execute gdb --args libguile/guile.exe -c '(display foo)' As you can see I added --args option to GDB. Thanks, good point. Since I had no idea

Re: Again on Windows support (2)

2009-06-19 Thread carlo.bramix
...@gnu.org To : guile-devel@gnu.org Cc : Date : Fri, 19 Jun 2009 20:30:55 +0200 Subject : Re: Again on Windows support (2) carlo.bramix carlo.bra...@libero.it writes: make[3]: Entering directory `/home/Carlo/guile/module' /usr/bin/mkdir -p `dirname system/base/pmatch.go

Re: Again on Windows support (2)

2009-06-17 Thread Neil Jerram
carlo.bramix carlo.bra...@libero.it writes: $ ./pre-inst-guile -c '(display foo)' Backtrace: In unknown file: ?: 0* (begin (eval-string (display) (quit)) ?: 1* [eval-string (display] That is weird. Can we first rule out a problem with your shell? What output do you get from this? $

Re: Again on Windows support (2)

2009-06-17 Thread Neil Jerram
Neil Jerram n...@ossau.uklinux.net writes: carlo.bramix carlo.bra...@libero.it writes: $ ./pre-inst-guile -c '(display foo)' Backtrace: In unknown file: ?: 0* (begin (eval-string (display) (quit)) ?: 1* [eval-string (display] That is weird. Can we first rule out a problem with

Again on Windows support (2)

2009-06-16 Thread carlo.bramix
Hello, after a while I decided to take again guile and I tried to continue the test on mingw+msys. In one of the messages posted in thread Again on Windows support it has been said to me to put in ~/.guile: (debug-enable 'backtrace) (debug-set! depth 80) Since I was not able to do

Re: Again on Windows support

2009-04-02 Thread carlo.bramix
Hello, I feel a bit stupid because I was not able to create such log file... I put those two lines into a .guile file. I have $HOME variable correctly declared (which is normal: afterall msys aims to be a full posix-like enviroment) and I also tried to put that file into multiple places, but

Re: Again on Windows support

2009-03-29 Thread Andy Wingo
Hi Carlo, On Fri 27 Mar 2009 02:39, carlo.bramix carlo.bra...@libero.it writes: Hello, I did a patch in the usual way instead of using GIT. It's good to have the patch inline to review. It looks fine to me but I will punt to Neil or Ludovic for the final review. Also, thanks for taking care

Re: Again on Windows support

2009-03-27 Thread carlo.bramix
, 24 Mar 2009 23:39:43 +0100 Subject : Re: Again on Windows support Hello, Neil Jerram n...@ossau.uklinux.net writes: carlo.bramix carlo.bra...@libero.it writes: Hello! LIBGUILE/GSUBR.C function alloca() is undefined because under Windows the intrinsic function

Re: Again on Windows support

2009-03-24 Thread Neil Jerram
carlo.bramix carlo.bra...@libero.it writes: Hello! LIBGUILE/GSUBR.C function alloca() is undefined because under Windows the intrinsic function is called _alloca(). Hm, I thought the Gnulib alloca thing should have fixed this. Does adding #include alloca.h in

Re: Again on Windows support

2009-03-24 Thread Ludovic Courtès
Hello, Neil Jerram n...@ossau.uklinux.net writes: carlo.bramix carlo.bra...@libero.it writes: Hello! LIBGUILE/GSUBR.C function alloca() is undefined because under Windows the intrinsic function is called _alloca(). Hm, I thought the Gnulib alloca thing should have

Re: Again on Windows support

2009-03-20 Thread Andy Wingo
Hi Carlo, Thanks for doing this testing. I do not know of anyone who has built Guile with the VM on Windows, so some of these problems are interesting. I can't speak to all of your issues, but regarding some of them: On Wed 18 Mar 2009 12:05, carlo.bramix carlo.bra...@libero.it writes: