mirror of https://github.com/axmolengine/axmol.git
Merge pull request #11364 from samuele3hu/v3_terrain
Fix the crash of lua-game-controller-test iOS on the 64-bit simulator
This commit is contained in:
commit
3a87cd2efa
|
@ -5409,6 +5409,12 @@
|
|||
"$(inherited)",
|
||||
"$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/usr/lib",
|
||||
);
|
||||
"OTHER_LDFLAGS[sdk=iphonesimulator*][arch=x86_64]" = (
|
||||
"-pagezero_size",
|
||||
10000,
|
||||
"-image_base",
|
||||
100000000,
|
||||
);
|
||||
PRODUCT_NAME = "lua-game-controller-test iOS";
|
||||
SDKROOT = iphoneos;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
|
@ -5435,6 +5441,12 @@
|
|||
"$(inherited)",
|
||||
"$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/usr/lib",
|
||||
);
|
||||
"OTHER_LDFLAGS[sdk=iphonesimulator*][arch=x86_64]" = (
|
||||
"-pagezero_size",
|
||||
10000,
|
||||
"-image_base",
|
||||
100000000,
|
||||
);
|
||||
PRODUCT_NAME = "lua-game-controller-test iOS";
|
||||
SDKROOT = iphoneos;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
|
|
Loading…
Reference in New Issue