Skip to content
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

win support #329

Merged
merged 44 commits into from
Oct 6, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
be16bb5
build for win
haiyangwu Aug 26, 2019
e9ee7c3
code style
haiyangwu Aug 26, 2019
27c1307
code style
haiyangwu Aug 26, 2019
f2b060e
scripts
haiyangwu Aug 26, 2019
8de983a
replace duplex pipe with two pipe
haiyangwu Aug 29, 2019
3e57e56
code style
haiyangwu Aug 29, 2019
12b6a3c
add explicit key word
haiyangwu Aug 30, 2019
283351a
move getopt to deps
haiyangwu Aug 30, 2019
9cd71b3
Merge remote-tracking branch 'versatica/v3' into v3. Fix typo
haiyangwu Aug 30, 2019
a15863c
single quotes
haiyangwu Aug 30, 2019
b86a32f
pyc explicit path
haiyangwu Aug 30, 2019
9a66008
delete unused dep
haiyangwu Aug 30, 2019
c20fb5b
log text & code style
haiyangwu Aug 30, 2019
850761f
rename SocketRole to role
haiyangwu Aug 30, 2019
6a1a927
log text & code style
haiyangwu Aug 30, 2019
af693c4
replace _MSC_VER with _WIN32 for better compatibility
haiyangwu Aug 30, 2019
d3f3a4c
add public keyword to separate method and var
haiyangwu Aug 30, 2019
cbc1b1d
Generate sln under worker directory for unifying test:woker logic
haiyangwu Aug 30, 2019
e489d3b
add "getopt" entry in worker/scripts/get-dep.sh
haiyangwu Sep 1, 2019
793900d
code style
haiyangwu Sep 1, 2019
3585288
add comment for skipping test case in win32
haiyangwu Sep 1, 2019
14a38ba
move gulp-clang-format into devDep
haiyangwu Sep 1, 2019
cac00ed
unify name
haiyangwu Sep 1, 2019
3dbf56d
change for lint
haiyangwu Sep 2, 2019
4f10db0
use run-script-os instead of gulp
haiyangwu Sep 2, 2019
174c1dd
use @dr.amaton/run-script-os instead of a git repo
haiyangwu Sep 3, 2019
7b20534
win tasks
haiyangwu Sep 5, 2019
e70535c
remove useless tasks
haiyangwu Sep 7, 2019
a4bed7d
run mediasoup-worker-test
haiyangwu Sep 7, 2019
e566abe
add win-tasks.js to lint
haiyangwu Sep 7, 2019
cda5e7e
code style
haiyangwu Sep 11, 2019
6885c44
code style and readability
haiyangwu Sep 11, 2019
b6775ab
code style
haiyangwu Sep 11, 2019
faa375f
code style
haiyangwu Sep 11, 2019
6578c6b
remove duplicated LF
haiyangwu Sep 11, 2019
6fbcc2a
wrap consumer socket and producer socket
haiyangwu Sep 11, 2019
d0a9005
gitignore
haiyangwu Sep 12, 2019
36e2b4c
code style
haiyangwu Sep 12, 2019
bbdae70
add virtual destructor
haiyangwu Sep 12, 2019
3dddc43
Merge remote-tracking branch 'versatica/devel' into v3
haiyangwu Oct 3, 2019
7ac3a99
add defines for abseil
haiyangwu Oct 3, 2019
461e7a5
include
haiyangwu Oct 3, 2019
96a62bd
Merge remote-tracking branch 'versatica/devel' into v3
haiyangwu Oct 5, 2019
62aeb29
dot at the end of the comment
haiyangwu Oct 6, 2019
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
10 changes: 10 additions & 0 deletions worker/deps/abseil-cpp/abseil-cpp.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
'/wd4068', # unknown pragma
'/wd4702' # unreachable code
],
'defines': [
'NOMINMAX', # Don't define min and max macros (windows.h)
# Don't bloat namespace with incompatible winsock versions.
'WIN32_LEAN_AND_MEAN',
# Don't warn about usage of insecure C functions.
'_CRT_SECURE_NO_WARNINGS',
'_SCL_SECURE_NO_WARNINGS',
# Introduced in VS 2017 15.8, allow overaligned types in aligned_storage
'_ENABLE_EXTENDED_ALIGNED_STORAGE'
]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NOTE: worker/deps/abseil-cpp has been removed in "devel" branch. It's now just in worker/deps/libwebrtc/deps/abseil-cpp.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok... New commits in devel branch merged.

}]
],
},
Expand Down
10 changes: 10 additions & 0 deletions worker/deps/libwebrtc/deps/abseil-cpp/abseil-cpp.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
'/wd4068', # unknown pragma
'/wd4702' # unreachable code
],
'defines': [
'NOMINMAX', # Don't define min and max macros (windows.h)
# Don't bloat namespace with incompatible winsock versions.
'WIN32_LEAN_AND_MEAN',
# Don't warn about usage of insecure C functions.
'_CRT_SECURE_NO_WARNINGS',
'_SCL_SECURE_NO_WARNINGS',
# Introduced in VS 2017 15.8, allow overaligned types in aligned_storage
haiyangwu marked this conversation as resolved.
Show resolved Hide resolved
'_ENABLE_EXTENDED_ALIGNED_STORAGE'
]
}]
],
},
Expand Down