Changeset 100257 in vbox
- Timestamp:
- Jun 23, 2023 9:14:27 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157972
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asmdefs-arm.h
r100253 r100257 108 108 109 109 110 /** Marks the beginning of a readonly C strings section. */ 111 #if defined(__clang__) 112 # define BEGINCONSTSTRINGS .section __TEXT,__cstring,cstring_literals 113 #elif defined(__GNUC__) 114 # define BEGINCONSTSTRINGS .section .rodata 115 #else 116 # error "Port me!" 117 #endif 118 119 /** Marks the end of a readonly C strings section. */ 120 #if defined(__clang__) 121 # define ENDCONSTSTRINGS 122 #elif defined(__GNUC__) 123 # define ENDCONSTSTRINGS 124 #else 125 # error "Port me!" 126 #endif 127 128 110 129 /** 111 130 * Returns the page address of the given symbol (used with the adrp instruction primarily). -
trunk/src/bldprogs/VBoxDef2LazyLoad.cpp
r100253 r100257 1207 1207 " * Imported names.\n" 1208 1208 " */\n" 1209 "BEGINCONST \n"1209 "BEGINCONSTSTRINGS\n" 1210 1210 "g_szLibrary:\n" 1211 1211 " .asciz \"%s\"\n" … … 1223 1223 "g_szFailLoadFmt: .asciz \"Lazy loader failed to load \\\"%%s\\\": %%Rrc\\n\"\n" 1224 1224 "g_szFailResolveFmt: .asciz \"Lazy loader failed to resolve symbol \\\"%%s\\\" in \\\"%%s\\\": %%Rrc\\n\"\n" 1225 "ENDCONST \n"1225 "ENDCONSTSTRINGS\n" 1226 1226 "\n" 1227 1227 "\n");
Note:
See TracChangeset
for help on using the changeset viewer.