ソースを参照

Quote include/lib paths

In OTP-17.0 paths on windows are not shortpaths anymore
so they may contain spaces and parenthesis
pull/3/head
Dan Gudmundsson 11年前
コミット
4b49dc0727
1個のファイルの変更4行の追加4行の削除
  1. +4
    -4
      src/rebar_port_compiler.erl

+ 4
- 4
src/rebar_port_compiler.erl ファイルの表示

@ -565,10 +565,10 @@ default_env() ->
{"EXE_CFLAGS" , "-g -Wall -fPIC $ERL_CFLAGS"},
{"EXE_LDFLAGS", "$ERL_LDFLAGS"},
{"ERL_CFLAGS", lists:concat([" -I", erl_interface_dir(include),
" -I", filename:join(erts_dir(), "include"),
" "])},
{"ERL_EI_LIBDIR", erl_interface_dir(lib)},
{"ERL_CFLAGS", lists:concat([" -I\"", erl_interface_dir(include),
"\" -I\"", filename:join(erts_dir(), "include"),
"\" "])},
{"ERL_EI_LIBDIR", lists:concat(["\"", erl_interface_dir(lib), "\""])},
{"ERL_LDFLAGS" , " -L$ERL_EI_LIBDIR -lerl_interface -lei"},
{"ERLANG_ARCH" , rebar_utils:wordsize()},
{"ERLANG_TARGET", rebar_utils:get_arch()},

読み込み中…
キャンセル
保存