Skip to content

Commit

Permalink
for avoid errors in Xcode12.2, the target arm64 was excluded
Browse files Browse the repository at this point in the history
  • Loading branch information
kanjitalk755 committed Nov 23, 2020
1 parent 0d213f9 commit 6f6e9b8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@
MACOSX_DEPLOYMENT_TARGET = 10.7;
OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
PRODUCT_NAME = kpx_cpu;
VALID_ARCHS = "x86_64 arm64";
VALID_ARCHS = x86_64;
};
name = Debug;
};
Expand Down Expand Up @@ -1245,7 +1245,7 @@
MACOSX_DEPLOYMENT_TARGET = 10.7;
OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
PRODUCT_NAME = kpx_cpu;
VALID_ARCHS = "x86_64 arm64";
VALID_ARCHS = x86_64;
};
name = Release;
};
Expand Down Expand Up @@ -1332,7 +1332,7 @@
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
PRODUCT_BUNDLE_IDENTIFIER = net.cebix.sheepshaver;
PRODUCT_NAME = SheepShaver;
VALID_ARCHS = "x86_64 arm64";
VALID_ARCHS = x86_64;
WARNING_LDFLAGS = "";
};
name = Debug;
Expand Down Expand Up @@ -1398,7 +1398,7 @@
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
PRODUCT_BUNDLE_IDENTIFIER = net.cebix.sheepshaver;
PRODUCT_NAME = SheepShaver;
VALID_ARCHS = "x86_64 arm64";
VALID_ARCHS = x86_64;
};
name = Release;
};
Expand Down

0 comments on commit 6f6e9b8

Please sign in to comment.