macdependency/MachO/MachO_Prefix.h
Mike Lischke 972fcb3094 Overhaul of the application to avoid it crashing on macOS Sierra.
- Applied all recommended XCode (8) settings.
- Removed boost and replaced that code by standard functions.
- Implemented name mangling via abi::__cxa_demangle instead of running an external process to use c++filt.
- Enabled C++11. Min deployment target is now OSX 10.7.
- Some code clean up (e.g. formatting, std namespace).
2016-11-19 16:23:39 +01:00

27 lines
446 B
Objective-C

//
// Prefix header for all source files of the 'MachO' target in the 'MachO' project.
//
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
#include <string>
#include <vector>
#include <sstream>
#include <fstream>
#include <list>
#include <assert.h>
#include <map>
#include <mach-o/loader.h>
#include <mach-o/nlist.h>
#include <cxxabi.h>
#include <stdlib.h>
#include <pwd.h>
#include <unistd.h>
#include <sys/param.h>
#include <sys/stat.h>