您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
285 B

  1. -module(rebar_gdb_plugin).
  2. -compile(export_all).
  3. pre_eunit(_Config, _AppFile) ->
  4. case os:getenv("USE_GDB") of
  5. false ->
  6. ok;
  7. _ ->
  8. Prompt = io_lib:format("GDB Attach to: ~s~n", [os:getpid()]),
  9. io:get_line(Prompt)
  10. end,
  11. ok.