This repository was archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Resolve build folder of managed corefx on Ubuntu 14.04 in release mode. #6586
Merged
Conversation
This file contains hidden or 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
Using the cross build process of coreclr, enable cross building of native corefx components for Ubuntu 14.04 ARM target. (e.g. u14.04$> ROOTFS_DIR=/work/dotnet/rootfs-corefx/arm \ ./build.sh native arm clean cross ) Signed-off-by: MyungJoo Ham <[email protected]> Signed-off-by: Geunsik Lim <[email protected]> Signed-off-by: Prajwal A N <[email protected]>
We can build managed corefx with debug mode (by default) on Ubuntu 14.04 PC. Although we run "corefx@u14$> build.sh managed release clean" command to build managed corefx with release mode, the 'build.sh' script generates "./bin/AnyOS.AnyCPU.Debug" folder instead of "AnyOS.AnyCPU.Release" folder. This patch resolves the build folder of managed corefx for release mode on Ubuntu 14.04 64bit pc and Windows 7 pc. Signed-off-by: Geunsik Lim <[email protected]> Signed-off-by: Prajwal A N <[email protected]> Signed-off-by: MyungJoo Ham <[email protected]>
|
Hi @leemgs, I'm your friendly neighborhood .NET Foundation Pull Request Bot (You can call me DNFBOT). Thanks for your contribution! TTYL, DNFBOT; |
Member
Member
Author
Right. |
|
@leemgs, Thanks for signing the contribution license agreement so quickly! Actual humans will now validate the agreement and then evaluate the PR. |
Contributor
Yes, this looks good to me as well. |
stephentoub
added a commit
that referenced
this pull request
Mar 2, 2016
Resolve build folder of managed corefx on Ubuntu 14.04 in release mode.
macrogreg
pushed a commit
to open-telemetry/opentelemetry-dotnet-instrumentation
that referenced
this pull request
Sep 24, 2020
Resolve build folder of managed corefx on Ubuntu 14.04 in release mode. Commit migrated from dotnet/corefx@5789152
picenka21
pushed a commit
to picenka21/runtime
that referenced
this pull request
Feb 18, 2022
Resolve build folder of managed corefx on Ubuntu 14.04 in release mode. Commit migrated from dotnet/corefx@5789152
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This patch resolves the build folder of managed corefx for release mode
on Ubuntu 14.04 64bit pc and Windows 7 pc