compile.py 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. """Compile a QMK Firmware.
  2. You can compile a keymap already in the repo or using a QMK Configurator export.
  3. """
  4. from argcomplete.completers import FilesCompleter
  5. from milc import cli
  6. import qmk.path
  7. from qmk.decorators import automagic_keyboard, automagic_keymap
  8. from qmk.commands import compile_configurator_json, create_make_command, parse_configurator_json
  9. from qmk.keyboard import keyboard_completer, keyboard_folder
  10. from qmk.keymap import keymap_completer
  11. @cli.argument('filename', nargs='?', arg_only=True, type=qmk.path.FileType('r'), completer=FilesCompleter('.json'), help='The configurator export to compile')
  12. @cli.argument('-kb', '--keyboard', type=keyboard_folder, completer=keyboard_completer, help='The keyboard to build a firmware for. Ignored when a configurator export is supplied.')
  13. @cli.argument('-km', '--keymap', completer=keymap_completer, help='The keymap to build a firmware for. Ignored when a configurator export is supplied.')
  14. @cli.argument('-n', '--dry-run', arg_only=True, action='store_true', help="Don't actually build, just show the make command to be run.")
  15. @cli.argument('-j', '--parallel', type=int, default=1, help="Set the number of parallel make jobs to run.")
  16. @cli.argument('-e', '--env', arg_only=True, action='append', default=[], help="Set a variable to be passed to make. May be passed multiple times.")
  17. @cli.argument('-c', '--clean', arg_only=True, action='store_true', help="Remove object files before compiling.")
  18. @cli.subcommand('Compile a QMK Firmware.')
  19. @automagic_keyboard
  20. @automagic_keymap
  21. def compile(cli):
  22. """Compile a QMK Firmware.
  23. If a Configurator export is supplied this command will create a new keymap, overwriting an existing keymap if one exists.
  24. If a keyboard and keymap are provided this command will build a firmware based on that.
  25. """
  26. if cli.args.clean and not cli.args.filename and not cli.args.dry_run:
  27. command = create_make_command(cli.config.compile.keyboard, cli.config.compile.keymap, 'clean')
  28. # FIXME(skullydazed/anyone): Remove text=False once milc 1.0.11 has had enough time to be installed everywhere.
  29. cli.run(command, capture_output=False, text=False)
  30. # Build the environment vars
  31. envs = {}
  32. for env in cli.args.env:
  33. if '=' in env:
  34. key, value = env.split('=', 1)
  35. envs[key] = value
  36. else:
  37. cli.log.warning('Invalid environment variable: %s', env)
  38. # Determine the compile command
  39. command = None
  40. if cli.args.filename:
  41. # If a configurator JSON was provided generate a keymap and compile it
  42. user_keymap = parse_configurator_json(cli.args.filename)
  43. command = compile_configurator_json(user_keymap, parallel=cli.config.compile.parallel, **envs)
  44. else:
  45. if cli.config.compile.keyboard and cli.config.compile.keymap:
  46. # Generate the make command for a specific keyboard/keymap.
  47. command = create_make_command(cli.config.compile.keyboard, cli.config.compile.keymap, parallel=cli.config.compile.parallel, **envs)
  48. elif not cli.config.compile.keyboard:
  49. cli.log.error('Could not determine keyboard!')
  50. elif not cli.config.compile.keymap:
  51. cli.log.error('Could not determine keymap!')
  52. # Compile the firmware, if we're able to
  53. if command:
  54. cli.log.info('Compiling keymap with {fg_cyan}%s', ' '.join(command))
  55. if not cli.args.dry_run:
  56. cli.echo('\n')
  57. # FIXME(skullydazed/anyone): Remove text=False once milc 1.0.11 has had enough time to be installed everywhere.
  58. compile = cli.run(command, capture_output=False, text=False)
  59. return compile.returncode
  60. else:
  61. cli.log.error('You must supply a configurator export, both `--keyboard` and `--keymap`, or be in a directory for a keyboard or keymap.')
  62. cli.echo('usage: qmk compile [-h] [-b] [-kb KEYBOARD] [-km KEYMAP] [filename]')
  63. return False