[Bug 374927] Re: Sparse package doesn't run on 64 bits system

2016-02-07 Thread Matthias Klose
closing old issue, 0.5 is in the archive ** Changed in: sparse (Ubuntu) Status: Confirmed => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/374927 Title: Sparse package doesn't run

[Bug 374927] Re: Sparse package doesn't run on 64 bits system

2013-09-08 Thread Dave Gilbert
Hmm, I don't think it's gcc-multilib directly; I think it's something it depends on libc6-dev-i386 that it pulls in. I just tried this in a saucy (13.10) 64 bit vm, and it failed. sudo apt-get install gcc-multilib and it works But sudo dpkg --purge gcc-multilib gcc-4.8-multilib and it still

[Bug 374927] Re: Sparse package doesn't run on 64 bits system

2013-09-07 Thread Rusty Russell
Sparse gives me the same erorr on 13.04 i686: $ cgcc -c foo.c /usr/include/stdc-predef.h:30:11: error: unable to open 'bits/predefs.h' Fix is to install gcc-multilib: perhaps this should be a dependency? -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 374927] Re: Sparse package doesn't run on 64 bits system

2012-12-25 Thread Dave Gilbert
Hmm, this is a bit messy On raring: sparse t.c /usr/include/stdc-predef.h:30:11: error: unable to open 'bits/predefs.h' so I add a -I: sparse -I/usr/include/x86_64-linux-gnu t.c /usr/include/x86_64-linux-gnu/gnu/stubs.h:7:12: error: unable to open 'gnu/stubs-32.h' then we have Stéphane's

[Bug 374927] Re: Sparse package doesn't run on 64 bits system

2010-07-04 Thread Joachim Nilsson
Same problem here on Ubuntu 10.04 (64-bit). However, running sparse via the GCC wrapper 'cgcc' seems to work better. Don't really understand why, but it does. So simply setting the CC variable before calling 'make' does the trick for me: jo...@luthien:~/Troglobit/pimd$ CC=cgcc make -j3 clean all