A
Andrey Orlenko 1038630570
Guest
Can I compile SKILL-code to binary file ? How to make it ?
--
Andrey Orlenko
ICQ# 157544292
e-mail: eagle@ukr.net
--
Andrey Orlenko
ICQ# 157544292
e-mail: eagle@ukr.net
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
No.Can I compile SKILL-code to binary file ? How to make it ?
But I've seen some working skill-programms in binary mode (not text viewAndrey Orlenko 1038630570 wrote:
Can I compile SKILL-code to binary file ? How to make it ?
No.
George Patrick wrote:
Andrey Orlenko 1038630570 wrote:
Can I compile SKILL-code to binary file ? How to make it ?
No.
But I've seen some working skill-programms in binary mode (not text view
of file). For exaple, I've got Design Kit with binary skill-code ...
--George Patrick wrote:
Andrey Orlenko 1038630570 wrote:
Can I compile SKILL-code to binary file ? How to make it ?
No.
But I've seen some working skill-programms in binary mode (not text view
of file). For exaple, I've got Design Kit with binary skill-code ...
Can I compile SKILL-code to binary file ? How to make it ?
is encrypt, as mentioned before.Can I compile SKILL-code to binary file ? How to make it ?
I believe the drcExtractRules() does more or less that. Otherwise there
Ok, I understood it - Thanks !!!Can I compile SKILL-code to binary file ? How to make it ?
I posted this howto long ago, but it's germane to this conversation:1. Use the SKILL function 'encrypt' to encrypt your SKILL
2. You can build a context file form you SKILL code.
Or use any DFII graphical executable, e.g.:load("/tmp/MyHelloWorld.il")
MyTestProc()
This should execute the SKILL procedure & print the message.
exit
Or, if you do not need contexts to be autoloaded, skip them using:load("/tmp/MyHelloWorld.il")
MyTestProc()
This should execute the SKILL procedure & print the message.
exit
Or, if you wish to load the test file for immediate execution:load("/tmp/MyHelloWorld.il")
MyTestProc()
This should execute the SKILL procedure & print the message.
exit
Or, if desired, create a batch test-sequence file to run in toto:MyTestProc()
This should execute the SKILL procedure & print the message.
exit
"MyHelloWorld.ile".encrypt("/tmp/MyHelloWorld.il" "/tmp/MyHelloWorld.ile")
exit
Note: This should create the encrypted IL file:
A simple example of encrypting to a password is shown below:load("/tmp/MyHelloWorld.ile")
MyTestProc()
This should print the desired message.
exit
"MyHelloWorld.ile".encrypt("/tmp/MyHelloWorld.il" "/tmp/MyHelloWorld.ile" "Fun2Win")
exit
Note: This should create the password-protected encrypted file:
csh% cat > MyBuildContext.il <<EOFload("/tmp/MyHelloWorld.ile" "Fun2Win")
MyTestProc()
This should print the desired message.
exit
A simple example of incorporating your SKILL code into a context file:
This should execute the SKILL procedure & print the message.loadContext("MyHelloWorld.cxt")
MyTestProc()
Please improve so that others benefit.exit
---------------------------------------------------------------------