vote up 0 vote down star

I have a program that I intend to install on Linux and Windows machines. I have it cross-compiling fine (with autotools), but at some point I would like the program to be able to update its binaries. The only ways I can think of doing this are:

  • Give users write access to "C:\Program Files\Foo Program" or "/usr/bin/foo_program".

or

  • Install the program to the user's profile/home directory.

Neither of these seems like a good idea. What would you do?

flag
It looks like David has the right idea. I'll make debs/rpms for Linux and an MSI for Windows. Thanks. – Tim Jun 12 at 17:55

2 Answers

vote up 0 vote down check

You need to give us more details on what you are trying to do - I don't understsand the link between cross platform, patching and your question.

If you need to be able to auto update the program, on linux at least, the best solution is to provide a binary package (rpm, deb, whatever, depending on your target), which is updated regularly - so that new versions will be picked up by the package manager. On windows and mac os x, things are usually more decentralized, each program has its own update manager. The best technical solution depends on the technology (C/C++/python/whatever). One exception I can think of on Linux is vmplayer, which tells you when there is a new version - but you still have to install the new version.

link|flag
I want the program to be able to patch itself. The program runs on Windows and Linux. Thus cross-platform patching. – Tim Jun 12 at 15:07
Ah ok - I was confused by cross-platform and cross compilation. You want a (cross platform) framework for update management. I think msi has something for this, if you use install shield: community.installshield.com/showthread.php?p=2967… (I have never used it) – David Cournapeau Jun 14 at 6:32
And I don't think you will find cross platform solutions which work very well on every platform. Auto-update are frowned upon in linux in general, whereas it is desired in Linux. – David Cournapeau Jun 14 at 6:33
InstallBuilder provides a crossplatform update tool installbuilder.bitrock.com – Daniel Lopez Sep 12 at 11:00
vote up 0 vote down

If the program binary is writeable, you could download the patch or the new bits to %TEMP% or /tmp then apply them to the binary. I don't think you need to be able to create new files in the directory. But you're going to run into problems on Windows with the file being in use while you try and patch it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.