Hi!
I'm quite new to pike and just curious if it is possible to make a pike script into an executable format (which doesn't require to install pike)
I'm almost sure it is possible, cause pike can install itself, which is a pike script...
Another question: is there any GUI libraries for windows? (GTK isn't so stable under windows)
Gergo
+-[Kontra, Gergely @ Budapest University of Technology and Economics]-+ | Email: kgergely@mcl.hu, kgergely@turul.eet.bme.hu | | URL: turul.eet.bme.hu/~kgergely Mobile: (+36 20) 356 9656 | +-------"Olyan langesz vagyok, hogy poroltoval kellene jarnom!"-------+ . Magyar php mirror es magyar php dokumentacio: http://hu.php.net
I'm quite new to pike and just curious if it is possible to make a pike script into an executable format (which doesn't require to install pike)
I'm almost sure it is possible, cause pike can install itself, which is a pike script...
You can run the pike interpreter without actually _installing_ it first, but you need to have it accessible somewhere in the filesystem. The installer first unpacks the interpreter using a small /bin/sh script, and then runs the interpreter in uninstalled mode to launch the installer script.
In order to run a pike interpreter that is not installed, you should invoke it like this:
/path/to/pike/binary -DNOT_INSTALLED -m/path/to/master.pike
Another question: is there any GUI libraries for windows? (GTK isn't so stable under windows)
There is only GTK.
/ Marcus Comstedt (ACROSS) (Hail Ilpalazzo!)
Previous text:
2002-09-20 14:22: Subject: making windows executables, windows GUIs
Hi!
I'm quite new to pike and just curious if it is possible to make a pike script into an executable format (which doesn't require to install pike)
I'm almost sure it is possible, cause pike can install itself, which is a pike script...
Another question: is there any GUI libraries for windows? (GTK isn't so stable under windows)
Gergo
+-[Kontra, Gergely @ Budapest University of Technology and Economics]-+ | Email: kgergely@mcl.hu, kgergely@turul.eet.bme.hu | | URL: turul.eet.bme.hu/~kgergely Mobile: (+36 20) 356 9656 | +-------"Olyan langesz vagyok, hogy poroltoval kellene jarnom!"-------+ . Magyar php mirror es magyar php dokumentacio: http://hu.php.net
/ Brevbäraren
Well, on windows I guess it's something else than a /bin/sh script that does the initial unpacking.
/ Martin Stjernholm, Roxen IS
Previous text:
2002-09-20 14:26: Subject: making windows executables, windows GUIs
I'm quite new to pike and just curious if it is possible to make a pike script into an executable format (which doesn't require to install pike)
I'm almost sure it is possible, cause pike can install itself, which is a pike script...
You can run the pike interpreter without actually _installing_ it first, but you need to have it accessible somewhere in the filesystem. The installer first unpacks the interpreter using a small /bin/sh script, and then runs the interpreter in uninstalled mode to launch the installer script.
In order to run a pike interpreter that is not installed, you should invoke it like this:
/path/to/pike/binary -DNOT_INSTALLED -m/path/to/master.pike
Another question: is there any GUI libraries for windows? (GTK isn't so stable under windows)
There is only GTK.
/ Marcus Comstedt (ACROSS) (Hail Ilpalazzo!)
Yes, but the principle is the same.
/ Marcus Comstedt (ACROSS) (Hail Ilpalazzo!)
Previous text:
2002-09-20 14:58: Subject: making windows executables, windows GUIs
Well, on windows I guess it's something else than a /bin/sh script that does the initial unpacking.
/ Martin Stjernholm, Roxen IS
pike-devel@lists.lysator.liu.se