Skip to content

Commit 735446b

Browse files
performed build with wasmedge and completed all the test, added the log (2>&1) redirecting the standard error stream to the standard output stream, so both standard output and standard error will be captured
1 parent b7e6907 commit 735446b

File tree

3 files changed

+1160
-15
lines changed

3 files changed

+1160
-15
lines changed

BUILD

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -308,22 +308,31 @@ cc_library(
308308
],
309309
)
310310

311+
# cc_library(
312+
# name = "lib_wasmedge",
313+
# deps = [
314+
# ":base_lib",
315+
# ":wasmedge_lib",
316+
# ] + proxy_wasm_select_engine_null(
317+
# [":null_lib"],
318+
# ) + proxy_wasm_select_engine_v8(
319+
# [":v8_lib"],
320+
# ) + proxy_wasm_select_engine_wamr(
321+
# [":wamr_lib"],
322+
# ) + proxy_wasm_select_engine_wasmedge(
323+
# [":wasmedge_lib"],
324+
# ) + proxy_wasm_select_engine_wasmtime(
325+
# [":wasmtime_lib"],
326+
# [":prefixed_wasmtime_lib"],
327+
# ) + proxy_wasm_select_engine_wavm(
328+
# [":wavm_lib"],
329+
# ),
330+
# )
331+
311332
cc_library(
312333
name = "lib",
313334
deps = [
314335
":base_lib",
315-
] + proxy_wasm_select_engine_null(
316-
[":null_lib"],
317-
) + proxy_wasm_select_engine_v8(
318-
[":v8_lib"],
319-
) + proxy_wasm_select_engine_wamr(
320-
[":wamr_lib"],
321-
) + proxy_wasm_select_engine_wasmedge(
322-
[":wasmedge_lib"],
323-
) + proxy_wasm_select_engine_wasmtime(
324-
[":wasmtime_lib"],
325-
[":prefixed_wasmtime_lib"],
326-
) + proxy_wasm_select_engine_wavm(
327-
[":wavm_lib"],
328-
),
336+
":wasmedge_lib",
337+
],
329338
)

test/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Google LLC
1+
# Copyright 2023 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)