Skip to content

Commit c90bac1

Browse files
committed
fix: remove 'portable' feature in make commands
1 parent 8aec2a4 commit c90bac1

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

mithril-aggregator/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ CARGO = cargo
55
all: test build
66

77
build:
8-
# We use 'portable' feature to avoid SIGILL crashes
9-
${CARGO} build --release --features portable,bundle_openssl
8+
${CARGO} build --release --features bundle_openssl
109
cp ../target/release/mithril-aggregator .
1110

1211
run: build

mithril-client-cli/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ CARGO = cargo
1010
all: test build
1111

1212
build:
13-
# We use 'portable' feature to avoid SIGILL crashes
14-
${CARGO} build --release --features portable,bundle_openssl
13+
${CARGO} build --release --features bundle_openssl
1514
cp ../target/release/mithril-client .
1615

1716
run: build

mithril-client/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ CARGO = cargo
1010
all: test build
1111

1212
build:
13-
# We use 'portable' feature to avoid SIGILL crashes
14-
${CARGO} build --release --features portable,full
13+
${CARGO} build --release --features full
1514

1615
test:
1716
${CARGO} test --features full

mithril-common/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ FEATURES := $(shell ${CARGO} metadata --quiet --no-deps \
1010
all: test build
1111

1212
build:
13-
# We use 'portable' feature to avoid SIGILL crashes
14-
${CARGO} build --release --features portable,full
13+
${CARGO} build --release --features full
1514

1615
test:
1716
${CARGO} test --features full

mithril-signer/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ CARGO = cargo
55
all: test build
66

77
build:
8-
# We use 'portable' feature to avoid SIGILL crashes
9-
${CARGO} build --release --features portable,bundle_openssl
8+
${CARGO} build --release --features bundle_openssl
109
cp ../target/release/mithril-signer .
1110

1211
run: build

0 commit comments

Comments
 (0)