mirror of
https://github.com/espressif/esp-lwip.git
synced 2026-09-08 10:10:05 +00:00
12 lines
316 B
Bash
Executable File
12 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
export CFLAGS="-I../../../../test/unix -include esp_lwipopts.h"
|
|
export LWIPDIR=../../../../src/
|
|
cp contrib/examples/example_app/lwipcfg.h.example contrib/examples/example_app/lwipcfg.h
|
|
cd contrib/ports/unix/example_app
|
|
|
|
make TESTFLAGS="-Wno-documentation" -j 4
|
|
chmod +x iteropts.sh
|
|
./iteropts.sh
|