Skip to content

Commit 03953b2

Browse files
committed
See if it works in the CI
1 parent f555b97 commit 03953b2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

rebar.config

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
{deps, []}.
77

88
{pre_hooks,
9-
[{"(linux|darwin|solaris)", compile, "make MOREFLAGS=-fPIC -C priv/zstd/lib libzstd.a"},
9+
[{"(linux|darwin|solaris)",
10+
compile,
11+
"make MOREFLAGS=-fPIC -C priv/zstd/lib libzstd.a-mt"},
1012
{"(linux|darwin|solaris)", compile, "make -C c_src"},
11-
{"(freebsd)", compile, "gmake MOREFLAGS=-fPIC -C priv/zstd/lib libzstd.a"},
13+
{"(freebsd)", compile, "gmake MOREFLAGS=-fPIC -C priv/zstd/lib libzstd.a-mt"},
1214
{"(freebsd)", compile, "gmake -C c_src"}]}.
1315

1416
{post_hooks,

test/zstd_tests.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-define(COMPRESSION_LEVEL, 5).
44
-define(WINDOW_LOG, 23).
55
-define(ENABLE_LONG_DISTANCE_MATCHING, 1).
6-
-define(NUM_WORKERS, 0).
6+
-define(NUM_WORKERS, 8).
77

88
-include_lib("eunit/include/eunit.hrl").
99

0 commit comments

Comments
 (0)