Re: [edk2] [edk2-test][PATCH v2] SctPkg/Tools: Fix incorrect line ending detection by GenBin tool

2019-03-29 Thread Minnow Ware
Hi Supreeth, theoretically the standard C implementation of fopen(char *filename, char *mode) “can” support BINARY and TEXT mode. This is specified here http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf, “7.19.2 Streams” In praxis only Windows-/DOS platforms supports a BINARY ( w/ “b”)

Re: [edk2] [Patch] BaseTools:Enable the /MP option of MSVC compiler

2019-03-30 Thread Minnow Ware
It would also be good, to add a REBUILD target to the makefiles, that forces the compiler to translate all C-files from a component at once, w/o dependency check e.g.: REBUILD: cl /c [additional switches] file1.c file2.c file3.c file4.c so that the compiler itself is invoked only