Skip to content

Commit 67f415f

Browse files
committed
Merge branch 'main' into remote-debug-misc
# Conflicts: # PCbuild/pcbuild.sln
2 parents 2e6b80e + 40be123 commit 67f415f

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

PCbuild/pcbuild.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testclinic", "_testclinic.
8181
EndProject
8282
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testinternalcapi", "_testinternalcapi.vcxproj", "{900342D7-516A-4469-B1AD-59A66E49A25F}"
8383
EndProject
84-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_remote_debugging", "_remote_debugging.vcxproj", "{4D7C112F-3083-4D9E-9754-9341C14D9B39}"
85-
EndProject
8684
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testimportmultiple", "_testimportmultiple.vcxproj", "{36D0C52C-DF4E-45D0-8BC7-E294C3ABC781}"
8785
EndProject
8886
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcxproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}"
@@ -165,6 +163,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testlimitedcapi", "_testli
165163
EndProject
166164
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib-ng", "zlib-ng.vcxproj", "{FB91C8B2-6FBC-3A01-B644-1637111F902D}"
167165
EndProject
166+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_remote_debugging", "_remote_debugging.vcxproj", "{4D7C112F-3083-4D9E-9754-9341C14D9B39}"
167+
EndProject
168168
Global
169169
GlobalSection(SolutionConfigurationPlatforms) = preSolution
170170
Debug|ARM = Debug|ARM

configure

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8052,7 +8052,10 @@ PY_HACL_CREATE_MODULE([BLAKE2], [_blake2], [test "$with_builtin_blake2" = yes])
80528052
dnl HMAC builtin library does not need OpenSSL for now. In the future
80538053
dnl we might want to rely on OpenSSL EVP/NID interface or implement
80548054
dnl our own for algorithm resolution.
8055-
PY_HACL_CREATE_MODULE([HMAC], [_hmac], [])
8055+
dnl
8056+
dnl For Emscripten, we disable HACL* HMAC as it is tricky to make it work.
8057+
dnl See https://github.com/python/cpython/issues/133042.
8058+
PY_HACL_CREATE_MODULE([HMAC], [_hmac], [test "$ac_sys_system" != "Emscripten"])
80568059
### end(cryptographic primitives)
80578060

80588061
PY_STDLIB_MOD([_ctypes],

0 commit comments

Comments
 (0)