Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

13 rader
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.