-
Notifications
You must be signed in to change notification settings - Fork 133
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
Fix hardcoded FEATURE_DISTRO_AGNOSTIC_SSL #1755
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
26 changes: 0 additions & 26 deletions
26
patches/runtime/0014-Attempt-workaround-for-https-github.com-dotnet-runti.patch
This file was deleted.
Oops, something went wrong.
60 changes: 60 additions & 0 deletions
60
patches/runtime/0014-Fix-singlefilehost-build-in-non-portable-mode-42415.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
From eac34237f8ee3e85a42af772fa37671c1dbfee73 Mon Sep 17 00:00:00 2001 | ||
From: Omair Majid <omajid@redhat.com> | ||
Date: Wed, 23 Sep 2020 10:48:12 -0400 | ||
Subject: [PATCH] Fix singlefilehost build in non-portable mode (#42415) | ||
|
||
The singilefilehost needs to follow the libraries build in terms of how | ||
it links to OpenSSL: if it's a non-portable build, the singlefilehost | ||
needs to link to OpenSSL via linker arguments. | ||
|
||
The installer also needs to have FEATURE_DISTRO_AGNOSTIC_SSL defined | ||
just like it is defined for the libraries build. | ||
|
||
Fixes: #41768 | ||
--- | ||
src/installer/corehost/build.sh | 1 + | ||
.../corehost/cli/apphost/static/CMakeLists.txt | 12 ++++++++++++ | ||
2 files changed, 13 insertions(+) | ||
|
||
diff --git a/src/installer/corehost/build.sh b/src/installer/corehost/build.sh | ||
index c0bbce8e591..bd789c6f34f 100755 | ||
--- a/src/installer/corehost/build.sh | ||
+++ b/src/installer/corehost/build.sh | ||
@@ -92,6 +92,7 @@ export __BinDir __IntermediatesDir __CoreClrArtifacts __NativeLibsArtifacts | ||
__CMakeArgs="-DCLI_CMAKE_HOST_VER=\"$__host_ver\" -DCLI_CMAKE_COMMON_HOST_VER=\"$__apphost_ver\" -DCLI_CMAKE_HOST_FXR_VER=\"$__fxr_ver\" $__CMakeArgs" | ||
__CMakeArgs="-DCLI_CMAKE_HOST_POLICY_VER=\"$__policy_ver\" -DCLI_CMAKE_PKG_RID=\"$__DistroRid\" -DCLI_CMAKE_COMMIT_HASH=\"$__commit_hash\" $__CMakeArgs" | ||
__CMakeArgs="-DCORECLR_ARTIFACTS=\"$__CoreClrArtifacts\" -DNATIVE_LIBS_ARTIFACTS=\"$__NativeLibsArtifacts\" $__CMakeArgs" | ||
+__CMakeArgs="-DFEATURE_DISTRO_AGNOSTIC_SSL=$__PortableBuild $__CMakeArgs" | ||
|
||
if [[ "$__PortableBuild" == 1 ]]; then | ||
__CMakeArgs="-DCLI_CMAKE_PORTABLE_BUILD=1 $__CMakeArgs" | ||
diff --git a/src/installer/corehost/cli/apphost/static/CMakeLists.txt b/src/installer/corehost/cli/apphost/static/CMakeLists.txt | ||
index 85ea6ffe642..87db505c521 100644 | ||
--- a/src/installer/corehost/cli/apphost/static/CMakeLists.txt | ||
+++ b/src/installer/corehost/cli/apphost/static/CMakeLists.txt | ||
@@ -191,6 +191,11 @@ else() | ||
# ) | ||
endif () | ||
|
||
+ # Additional requirements for System.Security.Cryptography.Native.OpenSsl | ||
+ if(NOT FEATURE_DISTRO_AGNOSTIC_SSL) | ||
+ find_package(OpenSSL) | ||
+ endif() | ||
+ | ||
if(CLR_CMAKE_TARGET_LINUX OR CLR_CMAKE_TARGET_FREEBSD OR CLR_CMAKE_TARGET_NETBSD OR CLR_CMAKE_TARGET_SUNOS) | ||
# These options are used to force every object to be included even if it's unused. | ||
set(START_WHOLE_ARCHIVE -Wl,--whole-archive) | ||
@@ -212,3 +217,10 @@ target_link_libraries(singlefilehost | ||
${NATIVE_LIBS} | ||
${END_WHOLE_ARCHIVE} | ||
) | ||
+ | ||
+if(NOT FEATURE_DISTRO_AGNOSTIC_SSL) | ||
+ target_link_libraries(singlefilehost | ||
+ ${OPENSSL_CRYPTO_LIBRARY} | ||
+ ${OPENSSL_SSL_LIBRARY} | ||
+ ) | ||
+endif() | ||
-- | ||
2.26.2 | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to manually massage these few lines for the patch to apply. These were changed between Preview 8 and master.