Update the debugger to work on Windows (#2684)
Changed the debugger-tcp.c file to include Windows specific socket handling code and mode user all components are compilable for Windows. Added appveyor configuration to build with and without debugger. JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.u-szeged@partner.samsung.com
This commit is contained in:
+7
-2
@@ -15,12 +15,17 @@ platform:
|
||||
- x64
|
||||
- Win32
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
- FEATURE_DEBUGGER: ON
|
||||
- FEATURE_DEBUGGER: OFF
|
||||
|
||||
# Steps of a job.
|
||||
init:
|
||||
- cmake -version
|
||||
before_build:
|
||||
- if "%PLATFORM%"=="Win32" cmake -G"Visual Studio 15 2017" -Bbuild -H.
|
||||
- if "%PLATFORM%"=="x64" cmake -G"Visual Studio 15 2017 Win64" -Bbuild -H.
|
||||
- if "%PLATFORM%"=="Win32" cmake -G"Visual Studio 15 2017" -Bbuild -H. -DFEATURE_DEBUGGER=%FEATURE_DEBUGGER%
|
||||
- if "%PLATFORM%"=="x64" cmake -G"Visual Studio 15 2017 Win64" -Bbuild -H. -DFEATURE_DEBUGGER=%FEATURE_DEBUGGER%
|
||||
build:
|
||||
project: build\Jerry.sln
|
||||
parallel: true
|
||||
|
||||
Reference in New Issue
Block a user