File tree 1 file changed +3
-1
lines changed
src/coreclr/nativeaot/Bootstrap 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
4
4
#include < stdint.h>
5
- #include " minipal/utils.h"
6
5
7
6
//
8
7
// This is the mechanism whereby multiple linked modules contribute their global data for initialization at
@@ -219,11 +218,14 @@ int main(int argc, char* argv[])
219
218
return __managed__Main (argc, argv);
220
219
}
221
220
221
+ #ifdef HAS_ADDRESS_SANITIZER
222
222
// We need to build the bootstrapper as a single object file, to ensure
223
223
// the linker can detect that we have ASAN components early enough in the build.
224
224
// Include our asan support sources for executable projects here to ensure they
225
225
// are compiled into the bootstrapper object.
226
226
#include " minipal/asansupport.cpp"
227
+ #endif // HAS_ADDRESS_SANITIZER
228
+
227
229
#endif // !NATIVEAOT_DLL
228
230
229
231
#ifdef NATIVEAOT_DLL
You can’t perform that action at this time.
0 commit comments