Building a customized executable has several advantages:
emp4bldx(There are several options to this command which are described in the "Manual Pages" of the Empress 4GL Administrator's Guide.) The 4GL Executable Builder will prompt the user to enter a name for the customized executable to be built in the user's current working directory.
Enter name of executable: exec1The user is then prompted to enter the names of terminal definitions to be linked to the executable.
Enter name of terminal: vt100
Enter name of terminal: vt220
Enter name of terminal:(A <Return> by itself is used to tell the 4GL Executable Builder that you are finished entering data.) The user is then prompted to enter the name of a database followed by names of linked applications from that database to be linked to the executable.
Enter name of database: userdb
Enter name of Application: applic1
Enter name of Application: applic2
Enter name of Application:
Enter name of database:(Applications from different databases can also be linked to the executable). The 4GL Executable Builder then creates the appropriate C data files containing read only data and compiles and links them along with the 4GL runtime libraries to make a customized executable.
Creating files ........
Compiling .............
Linking ...............The application applic1 can now be run by simply entering the name of the executable:
exec1Application applic1 was chosen because it was the first one entered above.
If application applic1 needs a default user database then enter:
exec1 -d userdbIf you wish to run a different application at startup you may do so by entering:
exec1 -d userdb -a applic2