Re: [Gambas-user] Segmentation fault

2016-11-07 Thread Alexie
I don't get a segmentation fault in 3.9.1, but your need to remove "Merge = True" from your FMain.form and then it runs here successfully. 2016-11-07 12:31 GMT+01:00 Richard Welch : > Of course, this may already have been solved, or even be the expected > behaviour > *I have already found a w

[Gambas-user] Segmentation fault

2016-11-07 Thread Richard Welch
Of course, this may already have been solved, or even be the expected behaviour *I have already found a way round* (see below), so this is purely for the benefit of others. I have recently migrated from Ubuntu 12.04 (which has Gambas 2 in its repositories - Gambas 2.23.1) to Ubuntu 16.04

Re: [Gambas-user] Segmentation fault (11) with ImageStat() function

2014-10-12 Thread Ru Vuott
Optime ! Now it works. regards vuott Dom 12/10/14, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] Segmentation fault (11) with ImageStat() function A: "mailing list for gambas users" Data: Domenica 12 ottobre 2014, 03:23

Re: [Gambas-user] Segmentation fault (11) with ImageStat() function

2014-10-11 Thread Benoît Minisini
Le 12/10/2014 02:44, Ru Vuott a écrit : > Hello, > > by starting from this: > http://sourceforge.net/p/gambas/mailman/message/21194093/ > > I tried this simple code: > > Public Sub Form_Open() > > With ImageStat("/tmp/my_image.jpg") >Print .Type >Print .Width;; .Height;; .Depth > End With >

[Gambas-user] Segmentation fault (11) with ImageStat() function

2014-10-11 Thread Ru Vuott
Hello, by starting from this: http://sourceforge.net/p/gambas/mailman/message/21194093/ I tried this simple code: Public Sub Form_Open() With ImageStat("/tmp/my_image.jpg") Print .Type Print .Width;; .Height;; .Depth End With End Well, I obtain a Segmentation fault (11) error ! ..mayb

Re: [Gambas-user] Segmentation fault (11)

2014-05-29 Thread Patrik Karlsson
2014-05-29 22:55 GMT+02:00 Tobias Boege : > On Thu, 29 May 2014, Patrik Karlsson wrote: > > The program has stopped unexpectedly: > > Segmentation fault (11) > > > > Please send a bug report to the following mail address: > > gam...@users.sourceforge.net. > > --- > > > > This is what I get whe

Re: [Gambas-user] Segmentation fault (11)

2014-05-29 Thread Emil Lenngren
Hm, could you provide a backtrace (from gdb) if it is the JIT that segfaults? 2014-05-30 0:25 GMT+02:00 Tobias Boege : > On Fri, 30 May 2014, Jussi Lahtinen wrote: > > According to documentation, debugging information is enabled by default. > > If not it should be enough to recompile just the in

Re: [Gambas-user] Segmentation fault (11)

2014-05-29 Thread Tobias Boege
On Fri, 30 May 2014, Jussi Lahtinen wrote: > According to documentation, debugging information is enabled by default. > If not it should be enough to recompile just the interpreter: > cd ~/trunk/main/gbx > Or where ever you sources are. > sudo make clean && make "CFLAGS=-O0 -g" "CXXFLAGS=-O0 -g" &&

Re: [Gambas-user] Segmentation fault (11)

2014-05-29 Thread Jussi Lahtinen
According to documentation, debugging information is enabled by default. If not it should be enough to recompile just the interpreter: cd ~/trunk/main/gbx Or where ever you sources are. sudo make clean && make "CFLAGS=-O0 -g" "CXXFLAGS=-O0 -g" && sudo make install It's quickly done, however the de

Re: [Gambas-user] Segmentation fault (11)

2014-05-29 Thread Tobias Boege
On Thu, 29 May 2014, Patrik Karlsson wrote: > The program has stopped unexpectedly: > Segmentation fault (11) > > Please send a bug report to the following mail address: > gam...@users.sourceforge.net. > --- > > This is what I get when trying to close my program while it is doing some > timer

[Gambas-user] Segmentation fault (11)

2014-05-29 Thread Patrik Karlsson
The program has stopped unexpectedly: Segmentation fault (11) Please send a bug report to the following mail address: gam...@users.sourceforge.net. --- This is what I get when trying to close my program while it is doing some timer based animations. I guess the program is to complex to make a

[Gambas-user] Segmentation fault when starting programs with gambas

2011-10-13 Thread Andreas Fröhlke
Hi, I try to develop an application, which starts a program on a specific virtual desktop. I found kstart and it seems to work, until I compile my gambas program. I tried different ways to start kstart, but I always get back a Segmention fault. When I copy the command directly into konsole it w

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-28 Thread Dr.Diesel
Confirmed qt bug: https://bugzilla.redhat.com/show_bug.cgi?id=566304 Thanks! Bugzilla from gam...@users.sourceforge.net wrote: > > > > It seems to be a bug in Qt. Do you have some specific printer > configuration? > > -- > Benoît Minisin > > -- View this message in context: http://o

Re: [Gambas-user] Segmentation fault (core dumped )

2010-02-28 Thread tobias...@t-online.de
Dear Mailing-List, my question today is: Is there any possibility to use a compiled Gambas program on a linux pc without Gambas? I think there's no way because a compiled gambas program - as I understood - is just byte code which is interpreted by gbr2 (in my case). I think just

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Dr.Diesel
Don't think so, but i do have one default printer setup, it works fine though? I deleted my default printer and gambas now works fine! This is very weird? I am guessing I need to report this to my distro, what do you think? As always, many thanks! Bugzilla from gam...@users.sourceforge.net

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Benoît Minisini
> Bugzilla from gam...@users.sourceforge.net wrote: > >> Fabien Bodard-4 wrote: > >> > no you are not in the good path ! > >> > > >> > > >> > cd /home/george/trunk/app/src/gambas3 > >> > gdb gbx3 > >> > > >> >>set args -p > >> >>run > >> >> > >> > . segfault > >> > > >> >>bt > >> >> > >> >

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Dr.Diesel
Bugzilla from gam...@users.sourceforge.net wrote: > >> Fabien Bodard-4 wrote: >> > no you are not in the good path ! >> > >> > >> > cd /home/george/trunk/app/src/gambas3 >> > gdb gbx3 >> > >> >>set args -p >> >>run >> >> >> > . segfault >> > >> >>bt >> >> >> > return the output >> >> M

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Benoît Minisini
> Fabien Bodard-4 wrote: > > no you are not in the good path ! > > > > > > cd /home/george/trunk/app/src/gambas3 > > gdb gbx3 > > > >>set args -p > >>run > >> > > . segfault > > > >>bt > >> > > return the output > > Mm, that didn't catch the crash? Notice at the bottom I run gambas3,

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Dr.Diesel
Fabien Bodard-4 wrote: > > no you are not in the good path ! > > > cd /home/george/trunk/app/src/gambas3 > gdb gbx3 > >>set args -p >>run > > . segfault > >>bt > > return the output > Mm, that didn't catch the crash? Notice at the bottom I run gambas3, thanks for the help! [ge

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Fabien Bodard
no you are not in the good path ! cd /home/george/trunk/app/src/gambas3 gdb gbx3 >set args -p >run . segfault >bt return the output 2010/2/27 Dr.Diesel : > > > > Charlie Reinl wrote: >> >> Am Samstag, den 27.02.2010, 07:14 -0800 schrieb Dr.Diesel: >>> SVN 2722 (did a reconf and configu

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Dr.Diesel
Charlie Reinl wrote: > > Am Samstag, den 27.02.2010, 07:14 -0800 schrieb Dr.Diesel: >> SVN 2722 (did a reconf and configure), not sure how to help, don't get >> much >> console output and can't get gambas3 to run in gdb? >> >> [geo...@george trunk]$ gambas3 >> Segmentation fault (core dumped)

Re: [Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Charlie Reinl
Am Samstag, den 27.02.2010, 07:14 -0800 schrieb Dr.Diesel: > SVN 2722 (did a reconf and configure), not sure how to help, don't get much > console output and can't get gambas3 to run in gdb? > > [geo...@george trunk]$ gambas3 > Segmentation fault (core dumped) > [geo...@george trunk]$ > > this f

[Gambas-user] Segmentation fault (core dumped)

2010-02-27 Thread Dr.Diesel
SVN 2722 (did a reconf and configure), not sure how to help, don't get much console output and can't get gambas3 to run in gdb? [geo...@george trunk]$ gambas3 Segmentation fault (core dumped) [geo...@george trunk]$ this from dmesg: gbr3[9579]: segfault at 4 ip 003b2c124cd1 sp 7fffe8dcae