unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* build failures of master on netbsd/5 amd64
@ 2009-08-21 18:27 Greg Troxel
  2009-08-23 17:35 ` Mike Gran
  0 siblings, 1 reply; 4+ messages in thread
From: Greg Troxel @ 2009-08-21 18:27 UTC (permalink / raw)
  To: guile-devel

[-- Attachment #1: Type: text/plain, Size: 3061 bytes --]


I ran 'gmake -k' to get all the warnings at once.  I think there are
just two groups:


gmake  all-recursive
gmake[1]: Entering directory `/home/gdt/BUILD-GUILE-master/guile'
gmake[2]: Entering directory `/home/gdt/BUILD-GUILE-master/guile/libguile'
gmake  all-am
gmake[3]: Entering directory `/home/gdt/BUILD-GUILE-master/guile/libguile'
/bin/ksh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -DBUILDING_LIBGUILE=1 -I.. -I.. -I../lib -I../lib -I/usr/pkg/include -I/usr/y0/include -I/usr/pkg/include -I/usr/y0/include -pthread -Wall -Wmissing-prototypes -Werror -fvisibility=hidden -g -O2 -MT libguile_la-deprecated.lo -MD -MP -MF .deps/libguile_la-deprecated.Tpo -c -o libguile_la-deprecated.lo `test -f 'deprecated.c' || echo './'`deprecated.c
 gcc -DHAVE_CONFIG_H -DBUILDING_LIBGUILE=1 -I.. -I.. -I../lib -I../lib -I/usr/pkg/include -I/usr/y0/include -I/usr/pkg/include -I/usr/y0/include -pthread -Wall -Wmissing-prototypes -Werror -fvisibility=hidden -g -O2 -MT libguile_la-deprecated.lo -MD -MP -MF .deps/libguile_la-deprecated.Tpo -c deprecated.c  -fPIC -DPIC -o .libs/libguile_la-deprecated.o
cc1: warnings being treated as errors
deprecated.c: In function 'scm_gentemp':
deprecated.c:1092: warning: dereferencing type-punned pointer will break strict-aliasing rules
gmake[3]: *** [libguile_la-deprecated.lo] Error 1
/bin/ksh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -DBUILDING_LIBGUILE=1 -I.. -I.. -I../lib -I../lib -I/usr/pkg/include -I/usr/y0/include -I/usr/pkg/include -I/usr/y0/include -pthread -Wall -Wmissing-prototypes -Werror -fvisibility=hidden -g -O2 -MT libguile_la-vm.lo -MD -MP -MF .deps/libguile_la-vm.Tpo -c -o libguile_la-vm.lo `test -f 'vm.c' || echo './'`vm.c
 gcc -DHAVE_CONFIG_H -DBUILDING_LIBGUILE=1 -I.. -I.. -I../lib -I../lib -I/usr/pkg/include -I/usr/y0/include -I/usr/pkg/include -I/usr/y0/include -pthread -Wall -Wmissing-prototypes -Werror -fvisibility=hidden -g -O2 -MT libguile_la-vm.lo -MD -MP -MF .deps/libguile_la-vm.Tpo -c vm.c  -fPIC -DPIC -o .libs/libguile_la-vm.o
cc1: warnings being treated as errors
In file included from vm-engine.c:139,
                 from vm.c:315:
vm-i-scheme.c: In function 'vm_regular_engine':
vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:439: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:439: warning: comparison is always true due to limited range of data type
In file included from vm-engine.c:139,
                 from vm.c:323:
vm-i-scheme.c: In function 'vm_debug_engine':
vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:439: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:439: warning: comparison is always true due to limited range of data type
gmake[3]: *** [libguile_la-vm.lo] Error 1


[-- Attachment #2: Type: application/pgp-signature, Size: 193 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: build failures of master on netbsd/5 amd64
  2009-08-21 18:27 build failures of master on netbsd/5 amd64 Greg Troxel
@ 2009-08-23 17:35 ` Mike Gran
  2009-08-31  8:18   ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Mike Gran @ 2009-08-23 17:35 UTC (permalink / raw)
  To: Greg Troxel; +Cc: guile-devel

On Fri, 2009-08-21 at 14:27 -0400, Greg Troxel wrote:
> I ran 'gmake -k' to get all the warnings at once.  I think there are
> just two groups:

> deprecated.c:1092: warning: dereferencing type-punned pointer will break strict-aliasing rules

> vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type

I fixed the first one.  Someone more familiar with VM will have to fix
the second. 

-Mike





^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: build failures of master on netbsd/5 amd64
  2009-08-23 17:35 ` Mike Gran
@ 2009-08-31  8:18   ` Ludovic Courtès
  2009-08-31 11:46     ` Greg Troxel
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2009-08-31  8:18 UTC (permalink / raw)
  To: guile-devel

Mike Gran <spk121@yahoo.com> writes:

> On Fri, 2009-08-21 at 14:27 -0400, Greg Troxel wrote:
>> I ran 'gmake -k' to get all the warnings at once.  I think there are
>> just two groups:
>
>> deprecated.c:1092: warning: dereferencing type-punned pointer will break strict-aliasing rules
>
>> vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
>
> I fixed the first one.  Someone more familiar with VM will have to fix
> the second. 

I never hit this.  Has it been fixed for those who did?

Thanks,
Ludo'.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: build failures of master on netbsd/5 amd64
  2009-08-31  8:18   ` Ludovic Courtès
@ 2009-08-31 11:46     ` Greg Troxel
  0 siblings, 0 replies; 4+ messages in thread
From: Greg Troxel @ 2009-08-31 11:46 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guile-devel

[-- Attachment #1: Type: text/plain, Size: 2073 bytes --]


The end of my build, from a few hours ago:

/bin/ksh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -DBUILDING_LIBGUILE=1 -I.. -I.. -I../lib -I../lib -I/usr/pkg/include -I/usr/y0/include -I/usr/pkg/include -I/usr/y0/include -pthread -Wall -Wmissing-prototypes -Werror -fvisibility=hidden -g -O2 -MT libguile_la-vm.lo -MD -MP -MF .deps/libguile_la-vm.Tpo -c -o libguile_la-vm.lo `test -f 'vm.c' || echo './'`vm.c
 gcc -DHAVE_CONFIG_H -DBUILDING_LIBGUILE=1 -I.. -I.. -I../lib -I../lib -I/usr/pkg/include -I/usr/y0/include -I/usr/pkg/include -I/usr/y0/include -pthread -Wall -Wmissing-prototypes -Werror -fvisibility=hidden -g -O2 -MT libguile_la-vm.lo -MD -MP -MF .deps/libguile_la-vm.Tpo -c vm.c  -fPIC -DPIC -o .libs/libguile_la-vm.o
cc1: warnings being treated as errors
In file included from vm-engine.c:139,
                 from vm.c:315:
vm-i-scheme.c: In function 'vm_regular_engine':
vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:439: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:439: warning: comparison is always true due to limited range of data type
In file included from vm-engine.c:139,
                 from vm.c:323:
vm-i-scheme.c: In function 'vm_debug_engine':
vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:437: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:439: warning: comparison is always true due to limited range of data type
vm-i-scheme.c:439: warning: comparison is always true due to limited range of data type
gmake[3]: *** [libguile_la-vm.lo] Error 1
gmake[3]: Leaving directory `/home/gdt/BUILD-GUILE-master/guile/libguile'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory `/home/gdt/BUILD-GUILE-master/guile/libguile'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/home/gdt/BUILD-GUILE-master/guile'
gmake: *** [all] Error 2


[-- Attachment #2: Type: application/pgp-signature, Size: 193 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-08-31 11:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-21 18:27 build failures of master on netbsd/5 amd64 Greg Troxel
2009-08-23 17:35 ` Mike Gran
2009-08-31  8:18   ` Ludovic Courtès
2009-08-31 11:46     ` Greg Troxel

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).