|
@@ -10,11 +10,6 @@ program ISCC;
|
|
Command-line compiler
|
|
Command-line compiler
|
|
}
|
|
}
|
|
|
|
|
|
-{$SetPEFlags 1}
|
|
|
|
-{$SETPEOSVERSION 6.0}
|
|
|
|
-{$SETPESUBSYSVERSION 6.0}
|
|
|
|
-{$WEAKLINKRTTI ON}
|
|
|
|
-
|
|
|
|
{x$DEFINE STATICCOMPILER}
|
|
{x$DEFINE STATICCOMPILER}
|
|
{ For debugging purposes, remove the 'x' to have it link the compiler code
|
|
{ For debugging purposes, remove the 'x' to have it link the compiler code
|
|
into this program and not depend on ISCmplr.dll. }
|
|
into this program and not depend on ISCmplr.dll. }
|
|
@@ -25,6 +20,11 @@ uses
|
|
{$IFDEF STATICCOMPILER} Compile, {$ENDIF}
|
|
{$IFDEF STATICCOMPILER} Compile, {$ENDIF}
|
|
PathFunc, CmnFunc2, CompInt, FileClass, CompTypes;
|
|
PathFunc, CmnFunc2, CompInt, FileClass, CompTypes;
|
|
|
|
|
|
|
|
+{$SetPEFlags IMAGE_FILE_RELOCS_STRIPPED}
|
|
|
|
+{$SETPEOSVERSION 6.0}
|
|
|
|
+{$SETPESUBSYSVERSION 6.0}
|
|
|
|
+{$WEAKLINKRTTI ON}
|
|
|
|
+
|
|
{$R ISCC.manifest.res}
|
|
{$R ISCC.manifest.res}
|
|
{$R ISCC.versionandicon.res}
|
|
{$R ISCC.versionandicon.res}
|
|
|
|
|