I've seen this with non static binaries for one kernel, being run on an
older kernel (independent of python and pyinstaller).

Linux tends to be a real dog to maintain binary distributions for.

-Hal

On Mar 21, 2007, at  4:31 PM, emax wrote:

>
> I could give you a very simple application that recreates the problem;
> it consists of a single file; if you try to
> build an executable from fedora core 6 and launch it from ubuntu you
> could generate the floating point exception.
>
> How could i write a testcase for regenerate that error ?
>
> The basic application code:
> ****
> import wx
>
> class InsertFrame(wx.Frame):
>
>     def __init__(self, parent, id):
>         wx.Frame.__init__(self, parent, id, 'Very simple frame',
>                 size=(300, 100))
>
>         panel = wx.Panel(self)
>         button = wx.Button(panel, label="Close me", pos=(125, 10),
> size=(50, 50))
>         self.Bind(wx.EVT_BUTTON, self.OnCloseMe, button)
>         self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
>     def OnCloseMe(self, event):
>         self.Close(True)
>     def OnCloseWindow(self, event):
>         self.Destroy()
>
>
> if __name__ == '__main__':
>     app = wx.PySimpleApp()
>     frame = InsertFrame(parent=None, id=-1)
>     frame.Show()
>     app.MainLoop()
> ******************
>
>
> Thanks,
> Emanuele Gesuato
>
> On 13 Mar, 00:46, Giovanni Bajo <[EMAIL PROTECTED]> wrote:
>> On 02/03/2007 22.25, emax wrote:
>>
>>> I've tried pyinstaller 1.3 but the problem remain unsolved.
>>
>>> If i try to start the program from the source, without creating the
>>> executable, it works nicely on Fedora Core 6 and Xubuntu 6.10.
>>
>> Do you have a reproduction testcase for this?
>>
>> I can't see how SIGFPE can be related to PyInstaller...
>> --
>> Giovanni Bajo
>
>
> 

--
Hal Schechner
[EMAIL PROTECTED]




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/PyInstaller?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to