Files
wamr/core/shared/platform
Xavier Del Campo 9598611e35 CMakeLists.txt: Do not require C++ (#3956)
By default, the project() CMake command defaults to C and C++. [1]
Therefore, CMake might perform tests for both C and C++ compilers as
part of the configuration phase.

However, this has the consequence of the configuration phase to fail if
the system does not have a C++ toolchain installed, even if C++ is not
really used by the top-level project under the default settings.

Some configurations might still require a C++ toolchain, so
enable_language is selectively called under such circumstances.

[1]: https://cmake.org/cmake/help/latest/command/project.html
2024-12-20 13:05:50 +08:00
..
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00
2024-09-11 08:59:16 +08:00

This folder contains the platform abstract layer for multiple platforms. To support a new platform, you can simply create a new folder here and implement all the APIs defined in include folder.

Refer to port_wamr.md for how to port WAMR to a target platform.