Browse Source

ft: 过来编译警告

master
SisMaker 9 months ago
parent
commit
e2264d8189
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/eMake.erl

+ 3
- 1
src/eMake.erl View File

@ -85,7 +85,7 @@ make(WorkerCnt, EMakeFile, Opts, IsAll, IsNoHrl) ->
saveEMake(EndTime), saveEMake(EndTime),
case Ret of case Ret of
ok -> ok ->
io:format("compile over all is ok use time: ~ps ~n", [EndTime - StartTime]);
io:format("compile over all is ok use time: ~ps IsAll:~p ~n", [EndTime - StartTime, LIsAll]);
{error, _Err} -> {error, _Err} ->
io:format("compile abort why: ~p~n", [_Err]) io:format("compile abort why: ~p~n", [_Err])
end; end;
@ -412,5 +412,7 @@ check_includes2(Epp, File, ObjMTime) ->
epp:close(Epp), epp:close(Epp),
false; false;
{error, _Error} -> {error, _Error} ->
check_includes2(Epp, File, ObjMTime);
_ ->
check_includes2(Epp, File, ObjMTime) check_includes2(Epp, File, ObjMTime)
end. end.

Loading…
Cancel
Save