Q&A

  • winexec로 여러개의 명령되나요?
s:='rem set environment variables ';
s:='set A='+temppath;
s:='set C= '+path;
s:='set PATH=.;'+temppath;
s:='cd '+temppath;
s:=temppath+'test.exe  -c -g -O3 -Wall -Wstrict-prototypes -Wa,-ahlms='+tempfname+'.lst -mmcu=at90s8535 -I. '+tempfname+'.c -o '+tempfname+'.o ';
s:=temppath+'test.exe  '+tempfname+'.o  -Wl,-Map='+tempfname+'.map,--cref -mmcu=at90s8535 -o '+tempfname+'.elf ';
s:=temppath+'test2.exe -O avrobj '+tempfname+'.elf '+tempfname+'.obj ';
s:=temppath+'test2.exe -O ihex '+tempfname+'.elf '+tempfname+'.rom ';
위에처럼 패스 걸고 여러가지 명령어로 각각 실행,파라미터도 ...
이런식으로 순차로 할려하는데
winexec로 중간중간 넣어서 하니 안되네요...
원래 winexec는 한명령만 가능한건가 해서 문의 드립니다....
이어져서 실행해야하는건 할방법이 없는건가요?

1  COMMENTS