Changeset 96589 in vbox for trunk/src/VBox/Runtime/common/compiler
- Timestamp:
- Sep 3, 2022 2:54:22 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 153466
- Location:
- trunk/src/VBox/Runtime/common/compiler/vcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/compiler/vcc/initializers-c-cpp-vcc.cpp
r96407 r96589 81 81 82 82 /* Tell the linker to merge the .CRT* sections into .rdata */ 83 #pragma comment(linker, "/merge:.CRT=.rdata ") 83 #ifdef IPRT_VCC_USING_RODATA_AS_CONST_SEG 84 # pragma comment(linker, "/merge:.CRT=.rodata ") 85 #else 86 # pragma comment(linker, "/merge:.CRT=.rdata ") 87 #endif 84 88 /** @} */ 85 89 -
trunk/src/VBox/Runtime/common/compiler/vcc/tlsdir-vcc.c
r96407 r96589 65 65 66 66 /* Tell the linker to merge the .CRT* sections into .rdata */ 67 #pragma comment(linker, "/merge:.CRT=.rdata ") 67 #ifdef IPRT_VCC_USING_RODATA_AS_CONST_SEG 68 # pragma comment(linker, "/merge:.CRT=.rodata ") 69 #else 70 # pragma comment(linker, "/merge:.CRT=.rdata ") 71 #endif 68 72 /** @} */ 69 73
Note:
See TracChangeset
for help on using the changeset viewer.