- Timestamp:
- Jul 13, 2018, 5:53:21 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- ae144af
- Parents:
- 2e02851
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/interpose.c
r2e02851 rad64520 33 33 // Interposing helpers 34 34 //============================================================================================= 35 36 void preload_libgcc(void) { 37 dlopen( "libgcc_s.so.1", RTLD_NOW ); 38 if ( const char * error = dlerror() ) abort( "interpose_symbol : internal error pre-loading libgcc, %s\n", error ); 39 } 35 40 36 41 typedef void (* generic_fptr_t)(void); … … 92 97 const char *version = NULL; 93 98 99 preload_libgcc(); 100 94 101 #pragma GCC diagnostic push 95 102 #pragma GCC diagnostic ignored "-Wdiscarded-qualifiers"
Note: See TracChangeset
for help on using the changeset viewer.