Changeset 35


Ignore:
Timestamp:
Apr 23, 2003, 5:35:04 AM (22 years ago)
Author:
bird
Message:

Misc bugfixes, don't use shell script because of $.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/misc/dllar.cmd

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r34 r35  
    250250
    251251
     252if 0 then
     253do
    252254    /*
    253255     * Do linking, create implib, and apply lxlite.
     
    268270    call SysFileDelete sTmpFile;
    269271    drop sTmpFile;
     272end
     273else
     274do
     275    /*
     276     * Do linking, create implib, and apply lxlite.
     277     */
     278    gccCmdl = '';
     279    do I = 1 to inputFiles.0
     280        if (left(inputFiles.I, 1) \= '!') then
     281            gccCmdl = gccCmdl' 'inputFiles.I;
     282    end;
     283    call doCommand('gcc 'CCFLAGS' -Zdll -o 'dllFile defFile||gccCmdl' 'EXTRA_CCFLAGS);
     284end
    270285
    271286    call doCommand('emximp -o 'arcFile defFile);
Note: See TracChangeset for help on using the changeset viewer.