hi!

actually i've made up a simple console application so it works fine for
people under x32 and x64 windows using that howto from stackoverflow.

best regards, alexey

On Sun, 2012-05-06 at 03:22 +0000,
[email protected] wrote:
> Send cx-freeze-users mailing list submissions to
>       [email protected]
> 
> To subscribe or unsubscribe via the World Wide Web, visit
>       https://lists.sourceforge.net/lists/listinfo/cx-freeze-users
> or, via email, send a message with subject or body 'help' to
>       [email protected]
> 
> You can reach the person managing the list at
>       [email protected]
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of cx-freeze-users digest..."
> 
> 
> Today's Topics:
> 
>    1. cross-compiling on win x64 (Alexey Gaidamaka)
>    2. Re: cross-compiling on win x64 (Alexey Gaidamaka)
>    3. Re: cross-compiling on win x64 (Thomas Kluyver)
>    4. task manager processes (tt nn)
>    5. cx_freeze on OS X (Kevin Walzer)
>    6. cx_freeze OS X--custom build flags? (Kevin Walzer)
>    7. Re: cx_freeze OS X--custom build flags? (Anthony Tuininga)
> 
> 
> ----------------------------------------------------------------------
> 
> Message: 1
> Date: Tue, 01 May 2012 10:35:44 +0300
> From: Alexey Gaidamaka <[email protected]>
> Subject: [cx-freeze-users] cross-compiling on win x64
> To: [email protected]
> Message-ID: <1335857744.4313.35.camel@agaidamaka-laptop>
> Content-Type: text/plain; charset="UTF-8"
> 
> 
> Greetings!
> I hope you can help me with my particular situation.
> I've created a module and compiled it using cx_freeze on x64 windows.
> It works as it should on x64 machines. But not working on win x32.
> Can you please help me with the method to perform cross-compiling?
> Didn't get any answers googling and reading the docs.
> 
> Best regards, Alexey
> 
> 
> 
> 
> 
> 
> ------------------------------
> 
> Message: 2
> Date: Tue, 01 May 2012 12:26:01 +0300
> From: Alexey Gaidamaka <[email protected]>
> Subject: Re: [cx-freeze-users] cross-compiling on win x64
> To: Alexey Gaidamaka <[email protected]>
> Cc: [email protected]
> Message-ID: <1335864361.4313.61.camel@agaidamaka-laptop>
> Content-Type: text/plain; charset="UTF-8"
> 
> My little research showsh the way: 
> http://stackoverflow.com/questions/7988772/create-32-bit-exes-from-python-code-on-64-bit-machine
> Would it work?
> 
> 
> 
> 
> ------------------------------
> 
> Message: 3
> Date: Tue, 1 May 2012 10:53:53 +0100
> From: Thomas Kluyver <[email protected]>
> Subject: Re: [cx-freeze-users] cross-compiling on win x64
> To: primary discussion list for use and development of cx_Freeze
>       <[email protected]>
> Message-ID:
>       <caovn4qgspwysfrj_oibkwtwmassbdhnbi_rxxl6sofqcdwc...@mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
> 
> On 1 May 2012 10:26, Alexey Gaidamaka <[email protected]> wrote:
> > My little research showsh the way:
> > http://stackoverflow.com/questions/7988772/create-32-bit-exes-from-python-code-on-64-bit-machine
> 
> (To summarise it for the mailing list archive: you can install 32 bit
> versions of Python and cx_Freeze on 64 bit windows, and use them to
> generate a 32 bit executable.)
> 
> I imagine that would work, but I expect you'll need 32-bit versions of
> all the compiled libraries that your program uses, such as PyQt (if
> you use that). Give it a try, and let us know what you find.
> 
> Thanks,
> Thomas
> 
> 
> 
> ------------------------------
> 
> Message: 4
> Date: Thu, 3 May 2012 10:00:58 +0300
> From: tt nn <[email protected]>
> Subject: [cx-freeze-users] task manager processes
> To: <[email protected]>
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> 
> Hello
> 
> Question about PyQT program shutdown.
> 
> Example code is almost as desired.  When I run the code in IDE (Eric5) 
> everything is OK. Program start and close after ten seconds. When pressing 
> the button the program shuts down immediately.
> In Windows Task Manager Applications tab I can see when  the program start-up 
> and closing. In Windows Task Manager Processes tab, they are not visible.
> 
> If I make XXXclose.exe using  CXfreeze program (cxfreeze  XXXclose.exe.pyw - 
> base-name = Win32GUI - target-dir Package)
> 
> and starting its
> 
> Task Manager Application tab displays the program start-up and closing. In 
> addition to Processes tab shows the start of the program, but the process 
> does not turn off when the program goes out. Zombie process?
> When re-started, the second process start
> 
> I mean how the code should be corrected so the (Task Manager) process start, 
> waiting a while and then end.
> 
> best regards Kaarme42
> 
> Python3.2.2
> 
> 
> from PyQt4 import QtGui
> from PyQt4.QtGui import *
> from PyQt4.QtGui import *
> from PyQt4.QtCore import *
> from PyQt4.QtTest import QTest
> import sys
> 
> class GuiPart(QDialog):    
>     def __init__(self, parent=None):     
>         super(GuiPart, self).__init__(parent)   
>         self.shutButton = QPushButton("Close")
>         self.connect(self.shutButton, SIGNAL("clicked()"), self.buttonClose)
>       
>         self.grid = QGridLayout()
>         self.grid.addWidget(self.shutButton, 1,  0 )
>         self.setLayout(self.grid) 
>         self.setWindowTitle("XXX close")
>         
>     def buttonClose(self):
>         self.close()
>         sys.exit(root.exec_())
>         
>     def testFunction(self):
>         QTest.qWait(10000)
>         self.close()
>         sys.exit(root.exec_())
>         
>        
> # -------------------------------------------------------------------------
> root = QtGui.QApplication(sys.argv)
> client = GuiPart(None)
> client.show()
> 
> client.testFunction()
> client.close()
> sys.exit(root.exec_())
>                                         
> -------------- next part --------------
> An HTML attachment was scrubbed...
> 
> ------------------------------
> 
> Message: 5
> Date: Fri, 04 May 2012 22:56:26 -0400
> From: Kevin Walzer <[email protected]>
> Subject: [cx-freeze-users] cx_freeze on OS X
> To: [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> I've been quite pleasantly surprised to see that cx_freeze is now 
> actively developed and supports Mac OS X. py2app has been my go-to 
> packager for several years for my commercial apps, but the Mac App Store 
> is causing me some grief with how I package the Python frameworks, and 
> I'm interested in a tool that does not use the framework-based approach. 
> I've taken a look at iep; are there any other Python/GUI apps that are 
> bundled with cx_freeze and target the Mac?
> 
> (My own Python apps are http://www.codebykevin.com/quickwho.html, a 
> whois app, and http://www.codebykevin.com/phynchronicity.html, a front 
> end for Fink. Both are commercial.)
> 
> Thanks in advance,
> Kevin
> -- 
> Kevin Walzer
> Code by Kevin
> http://www.codebykevin.comhttp://www.codebykevin.com/phynchronicity.html
> 
> 
> 
> ------------------------------
> 
> Message: 6
> Date: Sat, 05 May 2012 22:14:08 -0400
> From: Kevin Walzer <[email protected]>
> Subject: [cx-freeze-users] cx_freeze OS X--custom build flags?
> To: [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> I'm now working on learning how to use cx_freeze on OS X/Lion, and I've 
> made some very nice progress; I've also modified a few of the source 
> files to address some bugs I've found (install_name_tool can't handle 
> zip files, for instance), and will be submitting patches on those in the 
> very near future.
> 
> One question I did have was on how to pass customized build flags, 
> specifically CFLAGS and LDFLAGS, to cx_freeze. I use a "universal 
> binary"  build of Python that has combined 32- and 64-bit executables 
> (using the Mac's "-arch" flag), and I also need to link my final 
> executable to the Cocoa framework (requirement for the Mac App Store). 
> Although I have these flags defined in my bash_profile, cx_freeze seems 
> to ignore them. I'm looking for a place in the cx_freeze source tree to 
> add this support, but thus far I haven't been able to find it. Can 
> someone point me in the right direction?
> 
> -- 
> Kevin Walzer
> Code by Kevin
> http://www.codebykevin.com
> 
> 
> 
> ------------------------------
> 
> Message: 7
> Date: Sat, 5 May 2012 21:22:17 -0600
> From: Anthony Tuininga <[email protected]>
> Subject: Re: [cx-freeze-users] cx_freeze OS X--custom build flags?
> To: [email protected],     primary discussion list for use and
>       development of cx_Freeze        <[email protected]>
> Message-ID:
>       <cae1xr-5y-2ofxuqu6r3_zkal9uwgusq-u2mt8dchx3fahvw...@mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
> 
> On Sat, May 5, 2012 at 8:14 PM, Kevin Walzer <[email protected]> wrote:
> > I'm now working on learning how to use cx_freeze on OS X/Lion, and I've
> > made some very nice progress; I've also modified a few of the source
> > files to address some bugs I've found (install_name_tool can't handle
> > zip files, for instance), and will be submitting patches on those in the
> > very near future.
> 
> Thanks. That will be greatly appreciated as there are few of us on
> this list who know Mac well. :) If you can make them as pull requests
> on BitBucket that way you'll be permanently credited as well -- but
> I'll take them any way that works for you.
> 
> > One question I did have was on how to pass customized build flags,
> > specifically CFLAGS and LDFLAGS, to cx_freeze. I use a "universal
> > binary" ?build of Python that has combined 32- and 64-bit executables
> > (using the Mac's "-arch" flag), and I also need to link my final
> > executable to the Cocoa framework (requirement for the Mac App Store).
> > Although I have these flags defined in my bash_profile, cx_freeze seems
> > to ignore them. I'm looking for a place in the cx_freeze source tree to
> > add this support, but thus far I haven't been able to find it. Can
> > someone point me in the right direction?
> 
> I can try. :) The only place that this would take place is when
> building the base executables. This is done with setup.py and follows
> the configuration used when building Python. You can see this code in
> the build_extension() method. If you have suggestions on how to make
> that work, please let me know.
> 
> Anthony
> 
> 
> 
> ------------------------------
> 
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> 
> ------------------------------
> 
> _______________________________________________
> cx-freeze-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/cx-freeze-users
> 
> 
> End of cx-freeze-users Digest, Vol 64, Issue 1
> **********************************************



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
cx-freeze-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to