Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneyang authored and eugeneyang committed Aug 22, 2016
1 parent e9a37fc commit 5c86d83
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
restore-symbol


# svn
*.svn*

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# restore-symbol
A tool to restore symbol table for iOS app.
11 changes: 11 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

.PHONY:restore-symbol
restore-symbol:
rm restore-symbol
xcodebuild -project "restore-symbol.xcodeproj" -target "restore-symbol" -configuration "Release" CONFIGURATION_BUILD_DIR="$(shell pwd)" -jobs 4 build
rm -rf libMachObjC.a restore-symbol.dSYM/


clean:
rm -rf restore-symbol libMachObjC.a restore-symbol.dSYM/

10 changes: 5 additions & 5 deletions restore-symbol.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
children = (
8F92BBF41D6B72E1008EA4C4 /* Foundation.framework */,
8F92BBD01D6B70A3008EA4C4 /* class-dump.xcodeproj */,
8F92BBC81D6B7085008EA4C4 /* restore-symbol */,
8F92BBC81D6B7085008EA4C4 /* source */,
8F92BBC71D6B7085008EA4C4 /* Products */,
);
sourceTree = "<group>";
Expand All @@ -131,7 +131,7 @@
name = Products;
sourceTree = "<group>";
};
8F92BBC81D6B7085008EA4C4 /* restore-symbol */ = {
8F92BBC81D6B7085008EA4C4 /* source */ = {
isa = PBXGroup;
children = (
8F92BC001D6B789F008EA4C4 /* ref-to-class-dump */,
Expand All @@ -145,7 +145,7 @@
8F92BBE71D6B7265008EA4C4 /* restore-symbol.m */,
8F92BBF31D6B72C6008EA4C4 /* restore-symbol.pch */,
);
path = "restore-symbol";
path = source;
sourceTree = "<group>";
};
8F92BBD11D6B70A3008EA4C4 /* Products */ = {
Expand Down Expand Up @@ -383,7 +383,7 @@
8F92BBCE1D6B7085008EA4C4 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PREFIX_HEADER = "restore-symbol/restore-symbol.pch";
GCC_PREFIX_HEADER = "$(SRCROOT)/source/restore-symbol.pch";
PRODUCT_NAME = "$(TARGET_NAME)";
USER_HEADER_SEARCH_PATHS = "$(SRCROOT)/class-dump/Source/**";
};
Expand All @@ -392,7 +392,7 @@
8F92BBCF1D6B7085008EA4C4 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PREFIX_HEADER = "restore-symbol/restore-symbol.pch";
GCC_PREFIX_HEADER = "$(SRCROOT)/source/restore-symbol.pch";
PRODUCT_NAME = "$(TARGET_NAME)";
USER_HEADER_SEARCH_PATHS = "$(SRCROOT)/class-dump/Source/**";
};
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 5c86d83

Please sign in to comment.