Changeset 96269 in vbox
- Timestamp:
- Aug 17, 2022 4:47:58 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153083
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r96246 r96269 1782 1782 # RuntimeR3 - Static Runtime for Ring-3 executables. 1783 1783 # 1784 # We drop the windows error defines here for reason of size. The valkit tstUtf8 1785 # was reduced by 175KB, from 600KB to 425KB (about 30%). Come up with a way of 1786 # stripping it down or compressing it better and it can be added back. 1787 # - 2022-08-17, bird. 1788 # 1784 1789 RuntimeR3_TEMPLATE = VBoxR3Static 1785 1790 RuntimeR3_EXTENDS = RuntimeBaseR3 1791 #RuntimeR3_DEFS.win = $(RuntimeBaseR3_DEFS.win) IPRT_NO_WIN_ERROR_DATA 1786 1792 ifdef VBOX_WITH_NOCRT_STATIC 1787 1793 if1of ($(KBUILD_TARGET), win) 1788 RuntimeR3_USES = $(RuntimeBaseR3_USES) VBoxNoCrtAliases1789 RuntimeR3_DEFS += $(filter-out RT_WITHOUT_NOCRT_WRAPPERS,$(RuntimeBaseR3_DEFS)) \1794 RuntimeR3_USES = $(RuntimeBaseR3_USES) VBoxNoCrtAliases 1795 RuntimeR3_DEFS = $(filter-out RT_WITHOUT_NOCRT_WRAPPERS,$(RuntimeBaseR3_DEFS)) \ 1790 1796 RT_FORCE_NOCRT_WRAPPERS \ 1791 1797 RT_WITH_NOCRT_ALIASES RT_WITH_NOCRT_UNDERSCORE_ALIASES RT_WITH_GENALIAS_NOCRT_ALIASES … … 2075 2081 endif 2076 2082 endif 2083 2077 2084 2078 2085 # -
trunk/src/VBox/Runtime/win/errmsgwin.cpp
r96165 r96269 41 41 * Global Variables * 42 42 *********************************************************************************************************************************/ 43 #if def IPRT_NO_ERROR_DATA43 #if defined(IPRT_NO_ERROR_DATA) || defined(IPRT_NO_WIN_ERROR_DATA) 44 44 /* Cook data just for VINF_SUCCESS so that code below compiles fine. */ 45 45 static const char g_achWinStrTabData[] = { "ERROR_SUCCESS" };
Note:
See TracChangeset
for help on using the changeset viewer.