config.bmk 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #
  2. # BMK Cross-compiler configuration
  3. #
  4. # These paths determine where various MingW and Wine paths and files are on your
  5. # system.
  6. # The names of the binaries can change between distributions.
  7. #
  8. # ----------------------
  9. #
  10. # Please edit the following paths and filenames
  11. #
  12. # The full path to the location of mingw
  13. #
  14. # for MacPorts, this is usually /opt/local
  15. #
  16. path_to_mingw=/usr/local/i386-mingw32-3.4.5
  17. # The names of the compiler utils (ar, ld, gcc, g++)
  18. # (you can find these in the bin folder)
  19. #
  20. name_of_ar=i386-mingw32-ar
  21. name_of_ld=i386-mingw32-ld
  22. name_of_gcc=i386-mingw32-gcc
  23. name_of_gpp=i386-mingw32-g++
  24. # The path in which crt2.o resides.
  25. #
  26. path_to_mingw_lib=%path_to_mingw%/i386-mingw32/lib
  27. # The path where crtbegin.o and crtend.o reside
  28. #
  29. path_to_mingw_lib2=%path_to_mingw%/lib/gcc/i386-mingw32/3.4.5
  30. # The path to Wine executable
  31. #
  32. # typical on Linux
  33. #path_to_wine=/usr/bin/wine
  34. # typical on Mac
  35. path_to_wine=/Applications/Darwine/Wine.bundle/Contents/bin/wine
  36. # ----------------------
  37. #
  38. # No need to edit these. They are configured by the above settings.
  39. #
  40. #
  41. path_to_mingw_include=%path_to_mingw%/include
  42. path_to_mingw_lib3=%path_to_mingw%/i386-mingw32/lib
  43. path_to_ar=%path_to_mingw%/bin/%name_of_ar%
  44. path_to_ld=%path_to_mingw%/bin/%name_of_ld%
  45. path_to_gcc=%path_to_mingw%/bin/%name_of_gcc%
  46. path_to_gpp=%path_to_mingw%/bin/%name_of_gpp%