Sfoglia il codice sorgente

Merge pull request #260 from dgud/dgud/windows-fix-paths

Quote include/lib paths
pull/3/head
Fred Hebert 11 anni fa
parent
commit
e1237caee5
1 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. +4
    -4
      src/rebar_port_compiler.erl

+ 4
- 4
src/rebar_port_compiler.erl Vedi File

@ -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()},

Caricamento…
Annulla
Salva