DJ.BAT
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:

操作系统开发

开发平台:

DOS

  1. set OPTS1=-Wall -g -gcoff -O2 -I../inc -L../lib
  2. set OPTS2=-lwatt -lrt32 -o
  3. goto start
  4. :start
  5. gcc.exe %OPTS1%  test.c %OPTS2% test.exe
  6. rem test2 doesn't work in 32 bits
  7. rem gcc.exe %OPTS1%  test2.c %OPTS2% test2.exe
  8. gcc.exe %OPTS1%  test3.c %OPTS2% test3.exe
  9. gcc.exe %OPTS1%  test4.c %OPTS2% test4.exe
  10. gcc.exe %OPTS1%  test5.c %OPTS2% test5.exe
  11. gcc.exe %OPTS1%  test6.c %OPTS2% test6.exe
  12. gcc.exe %OPTS1%  test7.c %OPTS2% test7.exe
  13. gcc.exe %OPTS1%  test8.c %OPTS2% test8.exe
  14. gcc.exe %OPTS1%  test9.c %OPTS2% test9.exe
  15. rem test10 doesn't work in 32 bits, timer needs work
  16. rem gcc.exe %OPTS1%  test10.c %OPTS2% test10.exe
  17. rem test11 doesn't work int 32 bits, no ISR code supported
  18. rem gcc.exe %OPTS1%  test11.c %OPTS2% test11.exe
  19. gcc.exe %OPTS1%  test12.c %OPTS2% test12.exe
  20. gcc.exe %OPTS1%  test13.c %OPTS2% test13.exe
  21. gcc.exe %OPTS1%  test14.c %OPTS2% test14.exe
  22. gcc.exe %OPTS1%  test15.c %OPTS2% test15.exe
  23. rem test16 is not supported in 32 bits
  24. rem gcc.exe %OPTS1%  test16.c %OPTS2% test16.exe
  25. gcc.exe %OPTS1%  test17.c %OPTS2% test17.exe
  26. gcc.exe %OPTS1%  mathtest.c %OPTS2% mathtest.exe
  27. rem stktest doesn't work in 32 bits, compiler doesn't show registers
  28. rem gcc.exe %OPTS1%  stktest.c %OPTS2% stktest.exe
  29. goto end
  30. :end