Have Erlang and C compilers be a bit more picky.

This commit is contained in:
Gregory Burd 2013-04-21 11:16:04 -04:00
parent ac59cd69dd
commit 3398540831

View file

@ -1,7 +1,7 @@
%%-*- mode: erlang -*- %%-*- mode: erlang -*-
%% ex: ft=erlang ts=4 sw=4 et %% ex: ft=erlang ts=4 sw=4 et
{require_otp_vsn, "R1[456]"}. {require_otp_vsn, "R1[567]"}.
{cover_enabled, true}. {cover_enabled, true}.
@ -27,7 +27,7 @@
%strict_validation %strict_validation
]}. ]}.
{xref_checks, [undefined_function_calls]}. {xref_checks, [undefined_function_calls, deprecated_function_calls]}.
{deps, [ {deps, [
{lager, "2.*", {git, "git://github.com/basho/lager", {branch, "master"}}} {lager, "2.*", {git, "git://github.com/basho/lager", {branch, "master"}}}
@ -36,7 +36,7 @@
{port_specs, [{"priv/wterl.so", ["c_src/*.c"]}]}. {port_specs, [{"priv/wterl.so", ["c_src/*.c"]}]}.
{port_env, [ {port_env, [
{"DRV_CFLAGS", "$DRV_CFLAGS -Werror -I c_src/system/include"}, {"DRV_CFLAGS", "$DRV_CFLAGS -fPIC -g -Wall -Wextra -Werror -I c_src/system/include"},
{"DRV_LDFLAGS", "$DRV_LDFLAGS -Wl,-rpath,lib/wterl/priv:priv -Lc_src/system/lib -lwiredtiger"} {"DRV_LDFLAGS", "$DRV_LDFLAGS -Wl,-rpath,lib/wterl/priv:priv -Lc_src/system/lib -lwiredtiger"}
]}. ]}.