Skip to content

update HTTPCLIENT_1_1_COMPATIBLE #5389

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 29, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
revert -j
  • Loading branch information
d-a-v committed Nov 29, 2018
commit d5a9f068034b30f46253f064a900b58966a1fb02
18 changes: 9 additions & 9 deletions tests/host/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Show the core example list:


Build one example
make -j D=1 ../../libraries/esp8266/examples/Blink/Blink
make D=1 ../../libraries/esp8266/examples/Blink/Blink
run it:
./bin/Blink/Blink -h

Expand All @@ -41,19 +41,19 @@ Optional 'FORCE32=0' will use native/default gcc (default is FORCE32=1 unless gc


Non exhaustive list of working examples:
make -j D=1 ../../libraries/ESP8266WiFi/examples/udp/udp
make -j D=1 ../../libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient
make -j D=1 ../../libraries/ESP8266WebServer/examples/HelloServer/HelloServer
make -j D=1 ../../libraries/ESP8266WebServer/examples/AdvancedWebServer/AdvancedWebServer
make -j D=1 ../../libraries/ESP8266mDNS/examples/mDNS_Web_Server/mDNS_Web_Server
make -j D=1 ../../libraries/ESP8266WiFi/examples/BearSSL_Validation/BearSSL_Validation
make D=1 ../../libraries/ESP8266WiFi/examples/udp/udp
make D=1 ../../libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient
make D=1 ../../libraries/ESP8266WebServer/examples/HelloServer/HelloServer
make D=1 ../../libraries/ESP8266WebServer/examples/AdvancedWebServer/AdvancedWebServer
make D=1 ../../libraries/ESP8266mDNS/examples/mDNS_Web_Server/mDNS_Web_Server
make D=1 ../../libraries/ESP8266WiFi/examples/BearSSL_Validation/BearSSL_Validation

Compile other sketches:
- library paths are specified using ULIBDIRS variable, separated by ':'
- call 'make path-to-the-sketch-file' to build (without its '.ino' extension):
- CAVEAT: functions must be declared *before* being called (arduino builder is not around)

make -j D=1 ULIBDIRS=/path/to/your/arduino/libraries/lib1:/path/to/another/place/lib2 /path/to/your/sketchdir/sketch/sketch
make D=1 ULIBDIRS=/path/to/your/arduino/libraries/lib1:/path/to/another/place/lib2 /path/to/your/sketchdir/sketch/sketch
or:
ULIBDIRS=/path/to/your/arduino/libraries/lib1:/path/to/another/place/lib2 make D=1 /path/to/your/sketchdir/sketch/sketch

Expand All @@ -62,7 +62,7 @@ Compile other sketches:
export D=1
export OPTZ=-O2
make clean
make -j /path/to/your/sketchdir/sketch/sketch
make /path/to/your/sketchdir/sketch/sketch
./bin/sketch/sketch


Expand Down