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

Bugfix: Switch Host-Based Test DSC MSVC FLAG from \GS- to /GS- #633

Merged
Merged
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion UnitTestFrameworkPkg/UnitTestFrameworkPkgHost.dsc.inc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

[BuildOptions]
# MU_CHANGE [BEGIN] - Add build flag to detect when building host-based unit tests
MSFT:*_*_*_CC_FLAGS = -D HOST_UNIT_TEST_BUILD=1 \GS- # Disable Stack Protection for Host-Based Unit Tests
MSFT:*_*_*_CC_FLAGS = -D HOST_UNIT_TEST_BUILD=1 /GS- # Disable Stack Protection for Host-Based Unit Tests
GCC:*_*_*_CC_FLAGS = -D HOST_UNIT_TEST_BUILD=1 -fno-stack-protector # Disable Stack Protection for Host-Based Unit Tests
XCODE:*_*_*_CC_FLAGS = -D HOST_UNIT_TEST_BUILD=1
# MU_CHANGE [END] - Add build flag to detect when building host-based unit tests
Expand Down