mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 07:28:13 +08:00
Merge branch 'master' of github.com:cesanta/mongoose
This commit is contained in:
commit
3771f2c088
18
.github/workflows/test.yml
vendored
18
.github/workflows/test.yml
vendored
@ -93,3 +93,21 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: nxp-mimxrt1020-azurertos
|
- name: nxp-mimxrt1020-azurertos
|
||||||
run: make -C examples/nxp-mimxrt1020-azurertos build
|
run: make -C examples/nxp-mimxrt1020-azurertos build
|
||||||
|
nxp-frdmk66f-freertos:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: nxp-frdmk66f-freertos
|
||||||
|
run: make -C examples/nxp-frdmk66f-freertos build
|
||||||
|
nxp-lpcxpresso54s018m-freertos:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: nxp-lpcxpresso54s018m-freertos
|
||||||
|
run: make -C examples/nxp-lpcxpresso54s018m-freertos build
|
||||||
|
nxp-mimxrt1020-freertos:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: nxp-mimxrt1020-freertos
|
||||||
|
run: make -C examples/nxp-mimxrt1020-freertos build
|
8
examples/nxp-frdmk66f-freertos/Makefile
Normal file
8
examples/nxp-frdmk66f-freertos/Makefile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
NAME ?= $(notdir $(CURDIR))
|
||||||
|
|
||||||
|
build:
|
||||||
|
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
|
||||||
|
make -C $(NAME) build
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(NAME)
|
8
examples/nxp-lpcxpresso54s018m-freertos/Makefile
Normal file
8
examples/nxp-lpcxpresso54s018m-freertos/Makefile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
NAME ?= $(notdir $(CURDIR))
|
||||||
|
|
||||||
|
build:
|
||||||
|
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
|
||||||
|
make -C $(NAME) build
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(NAME)
|
8
examples/nxp-mimxrt1020-freertos/Makefile
Normal file
8
examples/nxp-mimxrt1020-freertos/Makefile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
NAME ?= $(notdir $(CURDIR))
|
||||||
|
|
||||||
|
build:
|
||||||
|
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
|
||||||
|
make -C $(NAME) build
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(NAME)
|
@ -241,6 +241,7 @@ static __inline struct tm *localtime_r(time_t *t, struct tm *tm) {
|
|||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
#if defined(__GNUC__)
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
#if defined(__GNUC__)
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user