diff options
author | Mattiwatti <mattiwatti@gmail.com> | 2019-12-04 08:07:26 +0100 |
---|---|---|
committer | Mattiwatti <mattiwatti@gmail.com> | 2019-12-04 08:07:26 +0100 |
commit | 00159446daf90997b1c9c73eb0e2508339d929c9 (patch) | |
tree | a4d1861064ef46a3470ba0ad5fe3b94f36308a8d | |
parent | 9e42f8df7818a1bf4eb675bfcd2fe5974d2d5e1f (diff) |
Compile as UTF-8
-rw-r--r-- | Application/EfiDSEFix/src/EfiDSEFix.vcxproj | 2 | ||||
-rw-r--r-- | Application/Loader/Loader.c | 2 | ||||
-rw-r--r-- | EfiGuard.props | 2 | ||||
-rw-r--r-- | EfiGuardDxe/EfiGuardDxe.c | 2 | ||||
-rw-r--r-- | EfiGuardPkg.dsc | 5 |
5 files changed, 9 insertions, 4 deletions
diff --git a/Application/EfiDSEFix/src/EfiDSEFix.vcxproj b/Application/EfiDSEFix/src/EfiDSEFix.vcxproj index f628844..3461e7b 100644 --- a/Application/EfiDSEFix/src/EfiDSEFix.vcxproj +++ b/Application/EfiDSEFix/src/EfiDSEFix.vcxproj @@ -50,7 +50,7 @@ <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> <RuntimeTypeInfo>false</RuntimeTypeInfo> <LanguageStandard>stdcpplatest</LanguageStandard> - <AdditionalOptions>/Gw %(AdditionalOptions)</AdditionalOptions> + <AdditionalOptions>/Gw /utf-8 %(AdditionalOptions)</AdditionalOptions> <BufferSecurityCheck>false</BufferSecurityCheck> <DisableSpecificWarnings>4201</DisableSpecificWarnings> <ExceptionHandling>false</ExceptionHandling> diff --git a/Application/Loader/Loader.c b/Application/Loader/Loader.c index 1cb2cf1..ae4ded5 100644 --- a/Application/Loader/Loader.c +++ b/Application/Loader/Loader.c @@ -480,7 +480,7 @@ TryBootOptionsInOrder( // Ensure the image path is connected end-to-end by Dispatch()ing any required drivers through DXE services EfiBootManagerConnectDevicePath(BootOptions[Index].FilePath, NULL); - // Instead of creating a ramdisk and reading the file into it (¿que?), just pass the path we saved earlier. + // Instead of creating a ramdisk and reading the file into it (¿que?), just pass the path we saved earlier. // This is the point where the driver kicks in via its LoadImage hook. EFI_HANDLE ImageHandle = NULL; Status = gBS->LoadImage(TRUE, diff --git a/EfiGuard.props b/EfiGuard.props index ad96488..4663324 100644 --- a/EfiGuard.props +++ b/EfiGuard.props @@ -42,7 +42,7 @@ <StringPooling>true</StringPooling> <RuntimeTypeInfo>false</RuntimeTypeInfo> <ForceConformanceInForLoopScope /> - <AdditionalOptions>/Gs32768 /Gw %(AdditionalOptions)</AdditionalOptions> + <AdditionalOptions>/Gs32768 /Gw /utf-8 %(AdditionalOptions)</AdditionalOptions> <ErrorReporting /> <FloatingPointModel /> <DiagnosticsFormat>Caret</DiagnosticsFormat> diff --git a/EfiGuardDxe/EfiGuardDxe.c b/EfiGuardDxe/EfiGuardDxe.c index 6d9dd2c..f61cfd6 100644 --- a/EfiGuardDxe/EfiGuardDxe.c +++ b/EfiGuardDxe/EfiGuardDxe.c @@ -1,4 +1,4 @@ -#include "EfiGuardDxe.h" +#include "EfiGuardDxe.h" #include <Protocol/Shell.h> #include <Guid/EventGroup.h> diff --git a/EfiGuardPkg.dsc b/EfiGuardPkg.dsc index 1b50ced..86825a9 100644 --- a/EfiGuardPkg.dsc +++ b/EfiGuardPkg.dsc @@ -82,6 +82,11 @@ *_*_*_CC_FLAGS = -D CONFIGURE_DRIVER=1 !endif + # Source files are UTF-8 without BOM. MSVC will convert other encodings to this without asking, so this is not really a choice + MSFT:*_*_*_CC_FLAGS = /utf-8 + INTEL:*_*_*_CC_FLAGS = /utf-8 + GCC:*_*_*_CC_FLAGS = -finput-charset=UTF-8 + # ICC generates about a million of these for Zydis on /W4, and then quits because of /WX. # warning #188: enumerated type mixed with another type # message #2415: variable "x" of static storage duration was declared but never referenced |