00001 /* Things that must be statically linked to the binary, even in shared mode. */ 00002 00003 #include "conv-config.h" 00004 #include <stddef.h> 00005 00006 /* __executable_start has symbol visibility type STV_HIDDEN */ 00007 /* https://github.com/UIUC-PPL/charm/issues/1893 */ 00008 extern void* CmiExecutableStart; 00009 #if CMK_HAS_EXECUTABLE_START 00010 extern char __executable_start; 00011 void* CmiExecutableStart = (void*)&__executable_start; 00012 #else 00013 void* CmiExecutableStart = NULL; 00014 #endif