[gentoo-user] [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Francisco Ares
Hi, Recently - but can't figure out exactly when - Qt Creator has become unable to access Qt containers (where the STL ones work as expected) on the debug panel. It shows not accessible in place of the expected item quantity for a QList, for instance, but for a std::vectorstd::string, it works,

[gentoo-user] Re: [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Nikos Chantziaras
On 24/03/15 15:07, Francisco Ares wrote: Hi, Recently - but can't figure out exactly when - Qt Creator has become unable to access Qt containers (where the STL ones work as expected) on the debug panel. It shows not accessible in place of the expected item quantity for a QList, for instance,

Re: [gentoo-user] Re: Is this a bug in firefox-36.0?

2015-03-24 Thread Peter Humphrey
On Tuesday 24 March 2015 06:52:58 Mick wrote: Next time your router starts playing up, use nslookup and perhaps dig to query your router's DNS repeater, your ISPs resolvers and any other 3rd party DNS servers; e.g. openDNS, Google, or a DNS server from here:

Re: [gentoo-user] syslog-ng: (solved) reporting no space though there's plenty

2015-03-24 Thread hw
Am 24.03.2015 um 10:13 schrieb Fernando Rodriguez: On Tuesday, March 24, 2015 9:01:37 AM Alan McKinnon wrote: On 23/03/2015 18:37, hw wrote: Hi, syslog-ng keeps reporting: Mar 23 17:34:41 sunflo-mx syslog-ng[27532]: Error suspend timeout has elapsed, attempting to write again; fd='15'

[gentoo-user] Re: [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Nikos Chantziaras
Note that gdb cannot inspect containers. It doesn't know anything about them. Qt Creator uses debugging helpers for that. See: https://qt-project.org/doc/qtcreator-2.8/creator-debugging-helpers.html Since you're using a deprecated version of Creator (2.8 is from 2013 and not maintained

[gentoo-user] CSV or mysql table as spreadsheet-like web page

2015-03-24 Thread hw
Hi, how would you go about creating a web page from either a CSV file or a table in a mysql database which presents the data to a user and lets them edit some of the data, preferably with the ability to use formulas like you can in a spreadsheet to do some calculations on the fly? Once

Re: [gentoo-user] Will a 64-bit-no-multilib machine cross-compile 32-bit code?

2015-03-24 Thread Walter Dnes
On Mon, Mar 23, 2015 at 06:18:46PM -0400, Mike Gilbert wrote You will probably need to add -m32 to CFLAGS to avoid building 64-bit objects on the 64-bit machine. How could i686-pc-linux-gnu-gcc build 64-bit stuff in the first place? I followed the instructions, and ran the following on the

Re: [gentoo-user] Will a 64-bit-no-multilib machine cross-compile 32-bit code?

2015-03-24 Thread Walter Dnes
On Tue, Mar 24, 2015 at 03:01:14PM -0400, Fernando Rodriguez wrote Let me know if you have any luck with pump mode, I didn't. IIRC it sort of worked but most compiles fell back to compiling locally so it's was actually slower. The rest of this post (or parts) may not apply if you do get it

Re: [gentoo-user] Re: [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Fernando Rodriguez
On Wednesday, March 25, 2015 12:32:30 AM Nikos Chantziaras wrote: Note that gdb cannot inspect containers. It doesn't know anything about them. It can, it's just not pretty: (gdb) p list1 $1 = {{p = {static shared_null = {ref = {_q_value = 15}, alloc = 0, begin = 0, end = 0, sharable = 1,

Re: [gentoo-user] emerge message pathconf: Permission denied; meaning?

2015-03-24 Thread Walter Dnes
On Tue, Mar 24, 2015 at 05:10:26PM +, Neil Bothwick wrote On Mon, 23 Mar 2015 22:52:39 -0400, Walter Dnes wrote: What does it mean? It shows up on the screen at the start of emerge, but it's not in the log files. Is it possibly a message from the server that emerge is grabbing the

Re: [gentoo-user] Will a 64-bit-no-multilib machine cross-compile 32-bit code?

2015-03-24 Thread Walter Dnes
On Tue, Mar 24, 2015 at 03:01:14PM -0400, Fernando Rodriguez wrote Let me know if you have any luck with pump mode, I didn't. IIRC it sort of worked but most compiles fell back to compiling locally so it's was actually slower. It appears to be working. It took a couple of tries to get it

Re: [gentoo-user] syslog-ng: reporting no space though there's plenty

2015-03-24 Thread hw
Am 23.03.2015 um 19:27 schrieb Fernando Rodriguez: ls -l /proc/27532/fd/15 sunflo-mx ~ # ls -l /proc/27532/fd/15 l-wx-- 1 root root 64 24. Mär 10:06 /proc/27532/fd/15 - /dev/tty12 sunflo-mx ~ # Cool, thank you, I think I understand :) The host itself is using tty12 with its own

Re: [gentoo-user] syslog-ng: reporting no space though there's plenty

2015-03-24 Thread hw
Am 24.03.2015 um 08:01 schrieb Alan McKinnon: On 23/03/2015 18:37, hw wrote: Hi, syslog-ng keeps reporting: Mar 23 17:34:41 sunflo-mx syslog-ng[27532]: Error suspend timeout has elapsed, attempting to write again; fd='15' Mar 23 17:34:41 sunflo-mx syslog-ng[27532]: Suspending write

Re: [gentoo-user] syslog-ng: reporting no space though there's plenty

2015-03-24 Thread Fernando Rodriguez
On Tuesday, March 24, 2015 9:01:37 AM Alan McKinnon wrote: On 23/03/2015 18:37, hw wrote: Hi, syslog-ng keeps reporting: Mar 23 17:34:41 sunflo-mx syslog-ng[27532]: Error suspend timeout has elapsed, attempting to write again; fd='15' Mar 23 17:34:41 sunflo-mx

Re: [gentoo-user] syslog-ng: reporting no space though there's plenty

2015-03-24 Thread Fernando Rodriguez
On Tuesday, March 24, 2015 10:09:50 AM hw wrote: Am 24.03.2015 um 08:01 schrieb Alan McKinnon: On 23/03/2015 18:37, hw wrote: Hi, syslog-ng keeps reporting: Mar 23 17:34:41 sunflo-mx syslog-ng[27532]: Error suspend timeout has elapsed, attempting to write again; fd='15' Mar

Re: [gentoo-user] CSV or mysql table as spreadsheet-like web page

2015-03-24 Thread Matti Nykyri
On Mar 24, 2015, at 17:21, hw h...@gartencenter-vaehning.de wrote: Hi, how would you go about creating a web page from either a CSV file or a table in a mysql database which presents the data to a user and lets them edit some of the data, preferably with the ability to use formulas like

Re: [gentoo-user] CSV or mysql table as spreadsheet-like web page

2015-03-24 Thread Mickaël Bucas
Hi There seems to be open source solutions already available : http://en.wikipedia.org/wiki/Online_spreadsheet I don't like to reinvent the wheel, but they may be too complex for your need. Tell us what you choose or build yourself Mickaël 2015-03-24 16:21 GMT+01:00 hw

[gentoo-user] Re: emerge message pathconf: Permission denied; meaning?

2015-03-24 Thread James
Walter Dnes waltdnes at waltdnes.org writes: What does it mean? It shows up on the screen at the start of emerge, but it's not in the log files. Is it possibly a message from the server that emerge is grabbing the tarball from? Dunno. But look in the ebuild for the source/download/path

Re: [gentoo-user] CSV or mysql table as spreadsheet-like web page

2015-03-24 Thread Neil Bothwick
On Tue, 24 Mar 2015 12:44:02 -0400, Michael Orlitzky wrote: how would you go about creating a web page from either a CSV file or a table in a mysql database which presents the data to a user and lets them edit some of the data, preferably with the ability to use formulas like you can in a

Re: [gentoo-user] Will a 64-bit-no-multilib machine cross-compile 32-bit code?

2015-03-24 Thread Mike Gilbert
On Tue, Mar 24, 2015 at 3:17 AM, Walter Dnes waltd...@waltdnes.org wrote: On Mon, Mar 23, 2015 at 06:18:46PM -0400, Mike Gilbert wrote You will probably need to add -m32 to CFLAGS to avoid building 64-bit objects on the 64-bit machine. How could i686-pc-linux-gnu-gcc build 64-bit stuff in

Re: [gentoo-user] CSV or mysql table as spreadsheet-like web page

2015-03-24 Thread Michael Orlitzky
On 03/24/2015 11:21 AM, hw wrote: Hi, how would you go about creating a web page from either a CSV file or a table in a mysql database which presents the data to a user and lets them edit some of the data, preferably with the ability to use formulas like you can in a spreadsheet to do

Re: [gentoo-user] Re: [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Francisco Ares
Thank you, gonna play a bit around gdb. Best regards, Francisco 2015-03-24 10:52 GMT-03:00 Nikos Chantziaras rea...@gmail.com: On 24/03/15 15:07, Francisco Ares wrote: Hi, Recently - but can't figure out exactly when - Qt Creator has become unable to access Qt containers (where the STL

Re: [gentoo-user] emerge message pathconf: Permission denied; meaning?

2015-03-24 Thread Neil Bothwick
On Mon, 23 Mar 2015 22:52:39 -0400, Walter Dnes wrote: What does it mean? It shows up on the screen at the start of emerge, but it's not in the log files. Is it possibly a message from the server that emerge is grabbing the tarball from? It appears to be a BSD function used by some FTP

Re: [gentoo-user] Will a 64-bit-no-multilib machine cross-compile 32-bit code?

2015-03-24 Thread Fernando Rodriguez
On Tuesday, March 24, 2015 3:17:55 AM Walter Dnes wrote: On Mon, Mar 23, 2015 at 06:18:46PM -0400, Mike Gilbert wrote You will probably need to add -m32 to CFLAGS to avoid building 64-bit objects on the 64-bit machine. How could i686-pc-linux-gnu-gcc build 64-bit stuff in the first

Re: [gentoo-user] [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Fernando Rodriguez
On Tuesday, March 24, 2015 10:07:56 AM Francisco Ares wrote: Hi, Recently - but can't figure out exactly when - Qt Creator has become unable to access Qt containers (where the STL ones work as expected) on the debug panel. It shows not accessible in place of the expected item quantity for

[gentoo-user] Re: [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Nikos Chantziaras
On 24/03/15 21:12, Fernando Rodriguez wrote: On Tuesday, March 24, 2015 10:07:56 AM Francisco Ares wrote: Hi, Recently - but can't figure out exactly when - Qt Creator has become unable to access Qt containers (where the STL ones work as expected) on the debug panel. It shows not accessible

Re: [gentoo-user] syslog-ng: reporting no space though there's plenty

2015-03-24 Thread Alan McKinnon
On 23/03/2015 18:37, hw wrote: Hi, syslog-ng keeps reporting: Mar 23 17:34:41 sunflo-mx syslog-ng[27532]: Error suspend timeout has elapsed, attempting to write again; fd='15' Mar 23 17:34:41 sunflo-mx syslog-ng[27532]: Suspending write operation because of an I/O error; fd='15',

Re: [gentoo-user] Will a 64-bit-no-multilib machine cross-compile 32-bit code?

2015-03-24 Thread Walter Dnes
On Mon, Mar 23, 2015 at 06:41:31PM -0400, Fernando Rodriguez wrote Your CPU is an example of what I'm saying, not just because it doesn't have 64 bit extensions but because it doesn't have MMX (at least according to the specs) and according to the GCC manual -march=atom means: Intel Atom CPU

Re: [gentoo-user] Re: Is this a bug in firefox-36.0?

2015-03-24 Thread Mick
On Saturday 21 Mar 2015 03:37:59 »Q« wrote: Second, I fixed the problem once by rebooting my wireless router, but got the same error again early this morning -- which I fixed once again by rebooting my wireless router. This makes me worry that somebody out there in the evil internet might

Re: [gentoo-user] Re: [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Francisco Ares
Thank you all for those clues, pretty interesting. For now I suppose it is a gdb thing, as QtCreator is able to show details about STL containers as expected. Going to fiddle in gdb a bit more... 2015-03-24 17:07 GMT-03:00 Fernando Rodriguez frodriguez.develo...@outlook.com: On Tuesday,

Re: [gentoo-user] Re: [OFF TOPIC] Qt Creator unable to access containers in debug mode

2015-03-24 Thread Fernando Rodriguez
On Tuesday, March 24, 2015 9:32:07 PM Nikos Chantziaras wrote: On 24/03/15 21:12, Fernando Rodriguez wrote: On Tuesday, March 24, 2015 10:07:56 AM Francisco Ares wrote: Hi, Recently - but can't figure out exactly when - Qt Creator has become unable to access Qt containers (where the