* Compiling GUILE
@ 2008-08-30 22:43 Han-Wen Nienhuys
2008-08-31 7:59 ` Marijn Schouten (hkBst)
2008-08-31 10:32 ` Ludovic Courtès
0 siblings, 2 replies; 6+ messages in thread
From: Han-Wen Nienhuys @ 2008-08-30 22:43 UTC (permalink / raw)
To: guile-devel
Hi,
I'm trying to compile GUILE on a x86_64 machine, to figure out the GC problems
autoreconf: Entering directory `.'
autoreconf: configure.in: not using Gettext
autoreconf: running: aclocal --force -I guile-config -I m4
configure.in:815: warning: macro `AM_GNU_GETTEXT' not found in library
autoreconf: configure.in: tracing
autoreconf: configure.in: adding subdirectory guile-readline to autoreconf
autoreconf: Entering directory `guile-readline'
autoreconf: running: aclocal --force
autoreconf: configure.in: not using Libtool
autoreconf: running: /home/hanwen/usr/pkg/ac/bin/autoconf --force
configure.in:20: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.in:21: error: possibly undefined macro: AC_PROG_LIBTOOL
autoreconf: /home/hanwen/usr/pkg/ac/bin/autoconf failed with exit status: 1
To satisfy all the dependencies, I installed m4 (1.4.4), autoconf
(2.60) automake (1.10.1) locally. (sigh.)
How do I get GUILE to actually compile now?
Also, can someone tip me off how I create 64 bit binary on a mixed
32/64 machine? I assume the default
will generate a 32 bit binary.
--
Han-Wen Nienhuys - hanwen@xs4all.nl - http://www.xs4all.nl/~hanwen
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Compiling GUILE
2008-08-30 22:43 Compiling GUILE Han-Wen Nienhuys
@ 2008-08-31 7:59 ` Marijn Schouten (hkBst)
2008-08-31 10:32 ` Ludovic Courtès
1 sibling, 0 replies; 6+ messages in thread
From: Marijn Schouten (hkBst) @ 2008-08-31 7:59 UTC (permalink / raw)
To: hanwen; +Cc: guile-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Han-Wen Nienhuys wrote:
> Also, can someone tip me off how I create 64 bit binary on a mixed
> 32/64 machine? I assume the default
> will generate a 32 bit binary.
Actually I would think the default is to generate 64-bit code, but you can pass
gcc the option "-m32" or "-m64" to force 32-bit or 64-bit code.
Marijn
- --
Marijn Schouten (hkBst), Gentoo Lisp project, Gentoo ML
<http://www.gentoo.org/proj/en/lisp/>, #gentoo-{lisp,ml} on FreeNode
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAki6T3MACgkQp/VmCx0OL2z8lQCglsgVzxWqyy+bfPKNgn56bC7t
BlgAn2rWA4zOvAHNmt+ZwDB9uf8+JQij
=jRlh
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Compiling GUILE
2008-08-30 22:43 Compiling GUILE Han-Wen Nienhuys
2008-08-31 7:59 ` Marijn Schouten (hkBst)
@ 2008-08-31 10:32 ` Ludovic Courtès
2008-08-31 13:54 ` Han-Wen Nienhuys
2008-08-31 13:56 ` Han-Wen Nienhuys
1 sibling, 2 replies; 6+ messages in thread
From: Ludovic Courtès @ 2008-08-31 10:32 UTC (permalink / raw)
To: guile-devel
Hello,
"Han-Wen Nienhuys" <hanwenn@gmail.com> writes:
> autoreconf: running: aclocal --force
> autoreconf: configure.in: not using Libtool
> autoreconf: running: /home/hanwen/usr/pkg/ac/bin/autoconf --force
> configure.in:20: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL
> If this token and others are legitimate, please use m4_pattern_allow.
> See the Autoconf documentation.
> configure.in:21: error: possibly undefined macro: AC_PROG_LIBTOOL
> autoreconf: /home/hanwen/usr/pkg/ac/bin/autoconf failed with exit status: 1
Looks like the machine is missing Libtool or at least that its M4 macros
cannot be found. You need Libtool 1.5.x, *not* Libtool 2.2.
> How do I get GUILE to actually compile now?
How did you get it to compile last week? :-)
Thanks,
Ludo'.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Compiling GUILE
2008-08-31 10:32 ` Ludovic Courtès
@ 2008-08-31 13:54 ` Han-Wen Nienhuys
2008-08-31 13:56 ` Han-Wen Nienhuys
1 sibling, 0 replies; 6+ messages in thread
From: Han-Wen Nienhuys @ 2008-08-31 13:54 UTC (permalink / raw)
To: guile-devel
Ludovic Courtès escreveu:
>
> Looks like the machine is missing Libtool or at least that its M4 macros
> cannot be found. You need Libtool 1.5.x, *not* Libtool 2.2.
>
>> How do I get GUILE to actually compile now?
>
> How did you get it to compile last week? :-)
I used my 32 bit laptop, but that some people complaining :)
--
Han-Wen Nienhuys - hanwen@xs4all.nl - http://www.xs4all.nl/~hanwen
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Compiling GUILE
2008-08-31 10:32 ` Ludovic Courtès
2008-08-31 13:54 ` Han-Wen Nienhuys
@ 2008-08-31 13:56 ` Han-Wen Nienhuys
2008-08-31 19:40 ` Ludovic Courtès
1 sibling, 1 reply; 6+ messages in thread
From: Han-Wen Nienhuys @ 2008-08-31 13:56 UTC (permalink / raw)
To: guile-devel
Ludovic Courtès escreveu:
> Hello,
>
> "Han-Wen Nienhuys" <hanwenn@gmail.com> writes:
>
>> autoreconf: running: aclocal --force
>> autoreconf: configure.in: not using Libtool
>> autoreconf: running: /home/hanwen/usr/pkg/ac/bin/autoconf --force
>> configure.in:20: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL
>> If this token and others are legitimate, please use m4_pattern_allow.
>> See the Autoconf documentation.
>> configure.in:21: error: possibly undefined macro: AC_PROG_LIBTOOL
>> autoreconf: /home/hanwen/usr/pkg/ac/bin/autoconf failed with exit status: 1
>
> Looks like the machine is missing Libtool or at least that its M4 macros
> cannot be found. You need Libtool 1.5.x, *not* Libtool 2.2.
Now that we're busy dropping cruft, it would be really nice if we could
libtool too. (major sigh).
--
Han-Wen Nienhuys - hanwen@xs4all.nl - http://www.xs4all.nl/~hanwen
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-08-31 19:40 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-30 22:43 Compiling GUILE Han-Wen Nienhuys
2008-08-31 7:59 ` Marijn Schouten (hkBst)
2008-08-31 10:32 ` Ludovic Courtès
2008-08-31 13:54 ` Han-Wen Nienhuys
2008-08-31 13:56 ` Han-Wen Nienhuys
2008-08-31 19:40 ` Ludovic Courtès
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).