1

I tried to use the define macro flag like this: dialyzer -dNOTEST, and it did not work. Does anyone have workaround?

2240
  • 1,547
  • 2
  • 12
  • 30
Yoshi
  • 405
  • 4
  • 12

1 Answers1

3

The Dialyzer man page says the -D option passes the argument to erlc. You can define a macro by the -D option, but you cannot undefine one. -DNOTEST will only define the macro NOTEST.

jj1bdx
  • 1,117
  • 1
  • 15
  • 32