2012-10-26 14:25:02 +00:00
|
|
|
%%-*- mode: erlang -*-
|
|
|
|
%% ex: ft=erlang ts=4 sw=4 et
|
2013-03-14 17:33:34 +00:00
|
|
|
|
2013-04-21 15:16:04 +00:00
|
|
|
{require_otp_vsn, "R1[567]"}.
|
2013-03-14 17:33:34 +00:00
|
|
|
|
|
|
|
{cover_enabled, true}.
|
|
|
|
|
2013-07-26 14:27:21 +00:00
|
|
|
%{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
|
2013-03-14 17:33:34 +00:00
|
|
|
|
2013-06-05 15:41:41 +00:00
|
|
|
{erl_opts, [
|
2013-07-26 14:27:21 +00:00
|
|
|
%native, {hipe, [o3,verbose]}, inline, {inline_size, 1024},
|
2013-06-05 15:41:41 +00:00
|
|
|
{parse_transform, lager_transform},
|
2013-07-26 14:27:21 +00:00
|
|
|
debug_info,
|
|
|
|
{d,'DEBUG',true},
|
|
|
|
strict_validation,
|
|
|
|
fail_on_warning,
|
2013-06-10 18:31:59 +00:00
|
|
|
%warn_missing_spec,
|
2013-03-14 17:33:34 +00:00
|
|
|
warn_bif_clash,
|
|
|
|
warn_deprecated_function,
|
2013-06-05 15:41:41 +00:00
|
|
|
warn_export_all,
|
2013-03-14 17:33:34 +00:00
|
|
|
warn_export_vars,
|
|
|
|
warn_exported_vars,
|
2013-06-05 15:41:41 +00:00
|
|
|
warn_obsolete_guard,
|
|
|
|
warn_shadow_vars,
|
2013-03-14 17:33:34 +00:00
|
|
|
warn_untyped_record,
|
2013-06-05 15:41:41 +00:00
|
|
|
warn_unused_function,
|
2013-07-26 14:27:21 +00:00
|
|
|
warn_unused_import,
|
2013-06-05 15:41:41 +00:00
|
|
|
warn_unused_record,
|
|
|
|
warn_unused_vars
|
2013-03-14 17:33:34 +00:00
|
|
|
]}.
|
|
|
|
|
2013-04-21 15:16:04 +00:00
|
|
|
{xref_checks, [undefined_function_calls, deprecated_function_calls]}.
|
2013-03-14 17:33:34 +00:00
|
|
|
|
|
|
|
{deps, [
|
2013-03-14 21:36:45 +00:00
|
|
|
{lager, "2.*", {git, "git://github.com/basho/lager", {branch, "master"}}}
|
2013-03-14 17:33:34 +00:00
|
|
|
]}.
|
|
|
|
|
2013-03-14 21:36:45 +00:00
|
|
|
{port_specs, [{"priv/wterl.so", ["c_src/*.c"]}]}.
|
2011-12-22 04:46:35 +00:00
|
|
|
|
2012-10-26 13:20:08 +00:00
|
|
|
{port_env, [
|
2013-10-02 18:41:06 +00:00
|
|
|
{"DRV_CFLAGS", "$DRV_CFLAGS -fPIC -Wall -Wextra -Werror -O3 -march=native -mtune=native -I c_src/system/include"},
|
|
|
|
{"DRV_LDFLAGS", "$DRV_LDFLAGS -Wl,-rpath,lib/wterl/priv:lib/wterl-0.9.0/priv:priv -Lc_src/system/lib -lwiredtiger"}
|
2012-10-26 14:25:02 +00:00
|
|
|
]}.
|
2011-12-18 20:54:46 +00:00
|
|
|
|
2013-04-16 15:47:04 +00:00
|
|
|
{pre_hooks, [{compile, "c_src/build_deps.sh compile"}]}.
|
2011-12-18 20:54:46 +00:00
|
|
|
{post_hooks, [{clean, "c_src/build_deps.sh clean"}]}.
|