windows linux mac下erlang nif或者port_driver通用编译脚本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 rivejä
376 B

5 vuotta sitten
5 vuotta sitten
  1. -define(FAIL, npRUtils:abort()).
  2. -define(ABORT(Str, Args), npRUtils:abort(Str, Args)).
  3. -define(INFO(Str, Args), npRMain:log(info, Str, Args)).
  4. -define(WARN(Str, Args), npRMain:log(warn, Str, Args)).
  5. -define(ERROR(Str, Args), npRMain:log(error, Str, Args)).
  6. -define(CONSOLE(Str, Args), io:format(Str, Args)).
  7. -define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))).