Skip to content

Commit

Permalink
Userland: Port wasm to LibMain
Browse files Browse the repository at this point in the history
  • Loading branch information
guerinoni authored and bgianfo committed Jan 9, 2022
1 parent 05f0f70 commit 9aa556f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Meta/Lagom/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ if (BUILD_LAGOM)

add_executable(wasm_lagom ../../Userland/Utilities/wasm.cpp)
set_target_properties(wasm_lagom PROPERTIES OUTPUT_NAME wasm)
target_link_libraries(wasm_lagom LagomCore LagomWasm LagomLine)
target_link_libraries(wasm_lagom LagomCore LagomWasm LagomLine LagomMain)

enable_testing()
# LibTest
Expand Down
2 changes: 1 addition & 1 deletion Userland/Utilities/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ target_link_libraries(userdel LibMain)
target_link_libraries(usermod LibMain)
target_link_libraries(utmpupdate LibMain)
target_link_libraries(w LibMain)
target_link_libraries(wasm LibWasm LibLine)
target_link_libraries(wasm LibMain LibWasm LibLine)
target_link_libraries(watch LibMain)
target_link_libraries(wc LibMain)
target_link_libraries(which LibMain)
Expand Down
6 changes: 4 additions & 2 deletions Userland/Utilities/wasm.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2021, Ali Mohammad Pur <[email protected]>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
Expand All @@ -8,6 +9,7 @@
#include <LibCore/File.h>
#include <LibCore/FileStream.h>
#include <LibLine/Editor.h>
#include <LibMain/Main.h>
#include <LibWasm/AbstractMachine/AbstractMachine.h>
#include <LibWasm/AbstractMachine/BytecodeInterpreter.h>
#include <LibWasm/Printer/Printer.h>
Expand Down Expand Up @@ -265,7 +267,7 @@ static void print_link_error(Wasm::LinkError const& error)
warnln("Missing import '{}'", missing);
}

int main(int argc, char* argv[])
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
char const* filename = nullptr;
bool print = false;
Expand Down Expand Up @@ -313,7 +315,7 @@ int main(int argc, char* argv[])
return false;
},
});
parser.parse(argc, argv);
parser.parse(arguments);

if (shell_mode) {
debug = true;
Expand Down

0 comments on commit 9aa556f

Please sign in to comment.