Skip to content

Commit

Permalink
Update esp-idf platform support in release/v1.3.x:
Browse files Browse the repository at this point in the history
1. Fix API "futimens" and "utimensat" compiling error in different esp-idf version
2. Update component registry description file
  • Loading branch information
donghengqaz committed Apr 9, 2024
1 parent e885a07 commit 8291d1a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
22 changes: 20 additions & 2 deletions core/shared/platform/esp-idf/espidf_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
#include "platform_api_vmcore.h"
#include "platform_api_extension.h"

#if (ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0)) \
&& (ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 2, 0))
#define UTIMENSAT_TIMESPEC_POINTER 1
#define FUTIMENS_TIMESPEC_POINTER 1
#endif

int
bh_platform_init()
{
Expand Down Expand Up @@ -226,7 +232,13 @@ unlinkat(int fd, const char *path, int flag)
}

int
utimensat(int fd, const char *path, const struct timespec ts[2], int flag)
utimensat(int fd, const char *path,
#if UTIMENSAT_TIMESPEC_POINTER
const struct timespec *ts,
#else
const struct timespec ts[2],
#endif
int flag)
{
errno = ENOSYS;
return -1;
Expand All @@ -249,7 +261,13 @@ ftruncate(int fd, off_t length)
#endif

int
futimens(int fd, const struct timespec times[2])
futimens(int fd,
#if FUTIMENS_TIMESPEC_POINTER
const struct timespec *times
#else
const struct timespec times[2]
#endif
)
{
errno = ENOSYS;
return -1;
Expand Down
8 changes: 7 additions & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,10 @@ repository: https://github.com/bytecodealliance/wasm-micro-runtime.git
documentation: https://wamr.gitbook.io/
issues: https://github.com/bytecodealliance/wasm-micro-runtime/issues
dependencies:
idf: ">=4.4"
idf: ">=4.4"
targets:
- esp32
- esp32s3
- esp32c3
examples:
- path: product-mini/platforms/esp-idf
2 changes: 1 addition & 1 deletion product-mini/platforms/esp-idf/main/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## IDF Component Manager Manifest File
dependencies:
wasm-micro-runtime:
version: ">=1.3"
version: "^1"
override_path: "../../../.."
idf:
version: ">=4.4"

0 comments on commit 8291d1a

Please sign in to comment.