質問編集履歴

6

文言追加

2018/07/03 11:22

投稿

neuro_su
neuro_su

スコア13

test CHANGED
File without changes
test CHANGED
@@ -24,6 +24,8 @@
24
24
 
25
25
 
26
26
 
27
+ 下記にクラッシュログとdidFinishLaunchingWithOptionsの処理を書いています。
28
+
27
29
 
28
30
 
29
31
  ```ここに言語を入力

5

コード追加

2018/07/03 11:22

投稿

neuro_su
neuro_su

スコア13

test CHANGED
File without changes
test CHANGED
@@ -143,3 +143,97 @@
143
143
 
144
144
 
145
145
  ```
146
+
147
+
148
+
149
+ ```ここに言語を入力
150
+
151
+ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
152
+
153
+
154
+
155
+ cocos2d::Application *app = cocos2d::Application::getInstance();
156
+
157
+
158
+
159
+ // Initialize the GLView attributes
160
+
161
+ app->initGLContextAttrs();
162
+
163
+ cocos2d::GLViewImpl::convertAttrs();
164
+
165
+
166
+
167
+ // Override point for customization after application launch.
168
+
169
+
170
+
171
+ // Add the view controller's view to the window and display.
172
+
173
+ window = [[UIWindow alloc] initWithFrame: [[UIScreen mainScreen] bounds]];
174
+
175
+
176
+
177
+ // Use RootViewController to manage CCEAGLView
178
+
179
+ _viewController = [[RootViewController alloc]init];
180
+
181
+ //_viewController.wantsFullScreenLayout = YES;
182
+
183
+ _viewController.extendedLayoutIncludesOpaqueBars = YES;
184
+
185
+
186
+
187
+ // Set RootViewController to window
188
+
189
+ if ( [[UIDevice currentDevice].systemVersion floatValue] < 6.0)
190
+
191
+ {
192
+
193
+ // warning: addSubView doesn't work on iOS6
194
+
195
+ [window addSubview: _viewController.view];
196
+
197
+ }
198
+
199
+ else
200
+
201
+ {
202
+
203
+ // use this method on ios6
204
+
205
+ [window setRootViewController:_viewController];
206
+
207
+ }
208
+
209
+
210
+
211
+ [window makeKeyAndVisible];
212
+
213
+
214
+
215
+ [[UIApplication sharedApplication] setStatusBarHidden:true];
216
+
217
+
218
+
219
+ // IMPORTANT: Setting the GLView should be done after creating the RootViewController
220
+
221
+ cocos2d::GLView *glview = cocos2d::GLViewImpl::createWithEAGLView((__bridge void *)_viewController.view);
222
+
223
+ cocos2d::Director::getInstance()->setOpenGLView(glview);
224
+
225
+
226
+
227
+ //run the cocos2d-x game scene
228
+
229
+ app->run();
230
+
231
+
232
+
233
+ return YES;
234
+
235
+ }
236
+
237
+
238
+
239
+ ```

4

クラッシュログを追加しました

2018/07/03 10:53

投稿

neuro_su
neuro_su

スコア13

test CHANGED
File without changes
test CHANGED
@@ -21,3 +21,125 @@
21
21
 
22
22
 
23
23
  Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
24
+
25
+
26
+
27
+
28
+
29
+ ```ここに言語を入力
30
+
31
+ Incident Identifier: 43E8015D-9BF8-4128-841C-9B7D5AC2F8E1
32
+
33
+ CrashReporter Key: 916fc5e60ceb5c11b042eca748d4521249d5b115
34
+
35
+ Hardware Model: iPhone,1
36
+
37
+ Process: MyApp [1377]
38
+
39
+ Path: /private/var/containers/Bundle/Application/D9C036AE-937E-42A9-AF8A-70EC3BC3E949/MyApp.app/MyApp
40
+
41
+ Identifier:
42
+
43
+ Version: 1.0.0 (999.0.17)
44
+
45
+ Code Type: ARM-64 (Native)
46
+
47
+ Role: Foreground
48
+
49
+ Parent Process: launchd [1]
50
+
51
+ Coalition: [1351]
52
+
53
+
54
+
55
+
56
+
57
+ Date/Time: 2018-07-03 11:38:55.8189 +0900
58
+
59
+ Launch Time: 2018-07-03 11:38:35.5416 +0900
60
+
61
+ OS Version: iPhone OS 11.4 (15F79)
62
+
63
+ Baseband Version: 8.55.00
64
+
65
+ Report Version: 104
66
+
67
+
68
+
69
+ Exception Type: EXC_CRASH (SIGKILL)
70
+
71
+ Exception Codes: 0x0000000000000000, 0x0000000000000000
72
+
73
+ Exception Note: EXC_CORPSE_NOTIFY
74
+
75
+ Termination Reason: Namespace SPRINGBOARD, Code 0x8badf00d
76
+
77
+ Termination Description: SPRINGBOARD, scene-create watchdog transgression: exhausted real (wall clock) time allowance of 19.81 seconds | | ProcessVisibility: Foreground | ProcessState: Running | WatchdogEvent: scene-create | WatchdogVisibility: Foreground | WatchdogCPUStatistics: ( | "Elapsed total CPU time (seconds): 35.710 (user 35.710, system 0.000), 89% CPU", | "Elapsed application CPU time (seconds): 18.055, 45% CPU" | )
78
+
79
+ Triggered by Thread: 0
80
+
81
+
82
+
83
+ Filtered syslog:
84
+
85
+ None found
86
+
87
+
88
+
89
+ Thread 0 name: Dispatch queue: com.apple.main-thread
90
+
91
+ Thread 0 Crashed:
92
+
93
+ 0 MyApp 0x00000001007cfd08 lj_str_new + 260
94
+
95
+ 1 MyApp 0x00000001007d2534 lj_meta_cat + 392
96
+
97
+ 2 MyApp 0x00000001007ca568 lj_BC_CAT + 32
98
+
99
+ 3 MyApp 0x00000001007de3b4 lua_pcall + 164
100
+
101
+ 4 MyApp 0x000000010063bfac cocos2d::LuaStack::executeFunction+ 769964 (int) + 172
102
+
103
+ 5 MyApp 0x000000010063c0a4 cocos2d::LuaStack::executeFunctionByHandler+ 770212 (int, int) + 76
104
+
105
+ 6 MyApp 0x0000000100638e30 cocos2d::LuaEngine::handleNodeEvent+ 757296 (void*) + 268
106
+
107
+ 7 MyApp 0x0000000100c021b8 cocos2d::ScriptEngineManager::sendNodeEventToLua+ 6824376 (cocos2d::Node*, int) + 104
108
+
109
+ 8 MyApp 0x00000001009469b0 cocos2d::Director::setNextScene+ 3959216 () + 236
110
+
111
+ 9 MyApp 0x00000001009466e4 cocos2d::Director::drawScene+ 3958500 () + 112
112
+
113
+ 10 MyApp 0x0000000100c09ac4 -[CCEAGLView layoutSubviews] + 172
114
+
115
+ 11 UIKit 0x000000018da976f4 -[UIView+ 308980 (CALayerDelegate) layoutSublayersOfLayer:] + 1420
116
+
117
+ 12 QuartzCore 0x000000018800dfec -[CALayer layoutSublayers] + 184
118
+
119
+ 13 QuartzCore 0x000000018801217c CA::Layer::layout_if_needed+ 1208700 (CA::Transaction*) + 324
120
+
121
+ 14 QuartzCore 0x0000000187f7e830 CA::Context::commit_transaction+ 604208 (CA::Transaction*) + 320
122
+
123
+ 15 QuartzCore 0x0000000187fa6364 CA::Transaction::commit+ 766820 () + 580
124
+
125
+ 16 UIKit 0x000000018de81680 __34-[UIApplication _firstCommitBlock]_block_invoke_2 + 140
126
+
127
+ 17 CoreFoundation 0x0000000183e2f2bc __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 20
128
+
129
+ 18 CoreFoundation 0x0000000183e2ea7c __CFRunLoopDoBlocks + 264
130
+
131
+ 19 CoreFoundation 0x0000000183e2c7b0 __CFRunLoopRun + 1224
132
+
133
+ 20 CoreFoundation 0x0000000183d4cda8 CFRunLoopRunSpecific + 552
134
+
135
+ 21 GraphicsServices 0x0000000185d31020 GSEventRunModal + 100
136
+
137
+ 22 UIKit 0x000000018dd69758 UIApplicationMain + 236
138
+
139
+ 23 MyApp 0x00000001005d4de4 main + 347620 (main.m:13)
140
+
141
+ 24 libdyld.dylib 0x00000001837ddfc0 start + 4
142
+
143
+
144
+
145
+ ```

3

ログ削除

2018/07/03 08:02

投稿

neuro_su
neuro_su

スコア13

test CHANGED
File without changes
test CHANGED
@@ -21,81 +21,3 @@
21
21
 
22
22
 
23
23
  Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
- ログを全て載せたいのですが文字制限がありのせれませんでした。
32
-
33
-
34
-
35
- 最後の行周辺だけ載せておきます。
36
-
37
-
38
-
39
- 0x18e09d000 - 0x18e395fff StoreServices arm64 <cd530f60cdd4384d8f6cfeb3c4dfc820> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
40
-
41
- 0x18e616000 - 0x18e621fff CaptiveNetwork arm64 <7370ab9c9d19372694c32eddd151408b> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
42
-
43
- 0x18e622000 - 0x18e650fff EAP8021X arm64 <f011d0c978dc3371a68adbd963feae2c> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
44
-
45
- 0x18e651000 - 0x18e68bfff MobileWiFi arm64 <821b33e7c58132e887940e7a63f83c94> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
46
-
47
- 0x18e68c000 - 0x18e68efff OAuth arm64 <fa58137fc53d3ec7ab103b0ef0837308> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
48
-
49
- 0x18e68f000 - 0x18e691fff CommonAuth arm64 <ca5c8872bba93e9cbd0d22bfbe6f3f8d> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
50
-
51
- 0x18e692000 - 0x18e700fff Heimdal arm64 <e140358df24f3c048fc72a418ef7706f> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
52
-
53
- 0x18e701000 - 0x18e72afff GSS arm64 <7356db1437d33b4eaae3181c2f930107> /System/Library/Frameworks/GSS.framework/GSS
54
-
55
- 0x18e72b000 - 0x18e742fff ApplePushService arm64 <9f71334cb8273c719e7c48dd19e4ae15> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
56
-
57
- 0x18e743000 - 0x18e7dbfff AccountsDaemon arm64 <41d72f5376e53be993c062acb42ce5c7> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
58
-
59
- 0x18e7dc000 - 0x18e7fafff AppleIDSSOAuthentication arm64 <581b0aafe3af3f2297906d743f907e76> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
60
-
61
- 0x18e7fb000 - 0x18e86dfff AppleAccount arm64 <855aeb4d5acf304d837a233cdfd9b8d3> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
62
-
63
- 0x18e86e000 - 0x18e964fff CoreUtils arm64 <6aef56c16f8e38cb84515ad30106d4d4> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
64
-
65
- 0x18ea7f000 - 0x18eaa1fff MediaServices arm64 <76ac3ce527e231b0b3a523213156b10d> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
66
-
67
- 0x18eaa2000 - 0x18ebcefff MediaRemote arm64 <b1c783be5a2e3092a45991b2aa05ef67> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
68
-
69
- 0x19117e000 - 0x191226fff iTunesStore arm64 <63a81dfaeade36eab06b4990959debed> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
70
-
71
- 0x192946000 - 0x1929e2fff MediaPlatform arm64 <9eeb6a5ba91c3435bfabb904a15b8b26> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
72
-
73
- 0x192a43000 - 0x192a49fff DAAPKit arm64 <94f8ec869c4034779031bedf4c31db52> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
74
-
75
- 0x192b3b000 - 0x192e13fff MediaLibraryCore arm64 <b4cc309be3513471999aef9279d4743c> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
76
-
77
- 0x192e15000 - 0x193093fff MusicLibrary arm64 <bfea1081897330919b884ac1359d5dee> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
78
-
79
- 0x193958000 - 0x193ac2fff iTunesCloud arm64 <8c934a63b54f3342aca75ec524f36d28> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
80
-
81
- 0x193ac3000 - 0x193b63fff HomeSharing arm64 <ef4d1fddd2563fa190f26c0156fd8cc9> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
82
-
83
- 0x193cd2000 - 0x194107fff MediaPlayer arm64 <95ed93ac0daa3168bd55830e92c10621> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
84
-
85
- 0x199a2f000 - 0x199a65fff OpenAL arm64 <334ab824e8ff3a58b20fc6f2271296d5> /System/Library/Frameworks/OpenAL.framework/OpenAL
86
-
87
- 0x19cbb2000 - 0x19cd06fff libGLProgrammability.dylib arm64 <a2417e0e38bc351bb72a4ffd02bc93c7> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
88
-
89
- 0x19deff000 - 0x19df02fff AGXCompilerConnection arm64 <f57bbdbd127c321cb657bbdcc08339d2> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
90
-
91
- 0x19e4f7000 - 0x19e500fff libGPUSupportMercury.dylib arm64 <19a2e9f2ad9a3e709099416d5ef7cdc8> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
92
-
93
- 0x1a2641000 - 0x1a26c6fff AGXGLDriver arm64 <c343914b2da134c0bb365ede83a47c90> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
94
-
95
- 0x1a28d8000 - 0x1a28ecfff libCGInterfaces.dylib arm64 <dc01f8416b033dcfb1dbbb7f40777e83> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
96
-
97
- 0x1a3645000 - 0x1a3727fff GLEngine arm64 <807ae232d0753aebbcf9e25a965fa740> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
98
-
99
- 0x1a6ab6000 - 0x1a6ab9fff InternationalSupport arm64 <6efcd0e042783733ac24282e37617085> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
100
-
101
- 0x1aa7e6000 - 0x1aa817fff libclosured.dylib arm64 <56e1a40175843bda9c860bdbbcf1b0b5> /usr/lib/closure/libclosured.dylib

2

タイトル変更

2018/06/22 00:05

投稿

neuro_su
neuro_su

スコア13

test CHANGED
@@ -1 +1 @@
1
- xcode9のiosビルドについて
1
+ xcode9のiosビルドができな 実機で確認しようとするとアプリが落ちしまう
test CHANGED
@@ -32,7 +32,7 @@
32
32
 
33
33
 
34
34
 
35
- 最後の行だけ載せておきます。
35
+ 最後の行周辺だけ載せておきます。
36
36
 
37
37
 
38
38
 

1

ログを追加しました。

2018/06/19 10:42

投稿

neuro_su
neuro_su

スコア13

test CHANGED
File without changes
test CHANGED
@@ -21,3 +21,81 @@
21
21
 
22
22
 
23
23
  Xcode9のiOSDeploymentTargetはiOS8.0で設定しています。
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+ ログを全て載せたいのですが文字制限がありのせれませんでした。
32
+
33
+
34
+
35
+ 最後の行だけ載せておきます。
36
+
37
+
38
+
39
+ 0x18e09d000 - 0x18e395fff StoreServices arm64 <cd530f60cdd4384d8f6cfeb3c4dfc820> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
40
+
41
+ 0x18e616000 - 0x18e621fff CaptiveNetwork arm64 <7370ab9c9d19372694c32eddd151408b> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
42
+
43
+ 0x18e622000 - 0x18e650fff EAP8021X arm64 <f011d0c978dc3371a68adbd963feae2c> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
44
+
45
+ 0x18e651000 - 0x18e68bfff MobileWiFi arm64 <821b33e7c58132e887940e7a63f83c94> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
46
+
47
+ 0x18e68c000 - 0x18e68efff OAuth arm64 <fa58137fc53d3ec7ab103b0ef0837308> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
48
+
49
+ 0x18e68f000 - 0x18e691fff CommonAuth arm64 <ca5c8872bba93e9cbd0d22bfbe6f3f8d> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
50
+
51
+ 0x18e692000 - 0x18e700fff Heimdal arm64 <e140358df24f3c048fc72a418ef7706f> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
52
+
53
+ 0x18e701000 - 0x18e72afff GSS arm64 <7356db1437d33b4eaae3181c2f930107> /System/Library/Frameworks/GSS.framework/GSS
54
+
55
+ 0x18e72b000 - 0x18e742fff ApplePushService arm64 <9f71334cb8273c719e7c48dd19e4ae15> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
56
+
57
+ 0x18e743000 - 0x18e7dbfff AccountsDaemon arm64 <41d72f5376e53be993c062acb42ce5c7> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
58
+
59
+ 0x18e7dc000 - 0x18e7fafff AppleIDSSOAuthentication arm64 <581b0aafe3af3f2297906d743f907e76> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
60
+
61
+ 0x18e7fb000 - 0x18e86dfff AppleAccount arm64 <855aeb4d5acf304d837a233cdfd9b8d3> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
62
+
63
+ 0x18e86e000 - 0x18e964fff CoreUtils arm64 <6aef56c16f8e38cb84515ad30106d4d4> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
64
+
65
+ 0x18ea7f000 - 0x18eaa1fff MediaServices arm64 <76ac3ce527e231b0b3a523213156b10d> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
66
+
67
+ 0x18eaa2000 - 0x18ebcefff MediaRemote arm64 <b1c783be5a2e3092a45991b2aa05ef67> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
68
+
69
+ 0x19117e000 - 0x191226fff iTunesStore arm64 <63a81dfaeade36eab06b4990959debed> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
70
+
71
+ 0x192946000 - 0x1929e2fff MediaPlatform arm64 <9eeb6a5ba91c3435bfabb904a15b8b26> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
72
+
73
+ 0x192a43000 - 0x192a49fff DAAPKit arm64 <94f8ec869c4034779031bedf4c31db52> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
74
+
75
+ 0x192b3b000 - 0x192e13fff MediaLibraryCore arm64 <b4cc309be3513471999aef9279d4743c> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
76
+
77
+ 0x192e15000 - 0x193093fff MusicLibrary arm64 <bfea1081897330919b884ac1359d5dee> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
78
+
79
+ 0x193958000 - 0x193ac2fff iTunesCloud arm64 <8c934a63b54f3342aca75ec524f36d28> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
80
+
81
+ 0x193ac3000 - 0x193b63fff HomeSharing arm64 <ef4d1fddd2563fa190f26c0156fd8cc9> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
82
+
83
+ 0x193cd2000 - 0x194107fff MediaPlayer arm64 <95ed93ac0daa3168bd55830e92c10621> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
84
+
85
+ 0x199a2f000 - 0x199a65fff OpenAL arm64 <334ab824e8ff3a58b20fc6f2271296d5> /System/Library/Frameworks/OpenAL.framework/OpenAL
86
+
87
+ 0x19cbb2000 - 0x19cd06fff libGLProgrammability.dylib arm64 <a2417e0e38bc351bb72a4ffd02bc93c7> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
88
+
89
+ 0x19deff000 - 0x19df02fff AGXCompilerConnection arm64 <f57bbdbd127c321cb657bbdcc08339d2> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
90
+
91
+ 0x19e4f7000 - 0x19e500fff libGPUSupportMercury.dylib arm64 <19a2e9f2ad9a3e709099416d5ef7cdc8> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
92
+
93
+ 0x1a2641000 - 0x1a26c6fff AGXGLDriver arm64 <c343914b2da134c0bb365ede83a47c90> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
94
+
95
+ 0x1a28d8000 - 0x1a28ecfff libCGInterfaces.dylib arm64 <dc01f8416b033dcfb1dbbb7f40777e83> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
96
+
97
+ 0x1a3645000 - 0x1a3727fff GLEngine arm64 <807ae232d0753aebbcf9e25a965fa740> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
98
+
99
+ 0x1a6ab6000 - 0x1a6ab9fff InternationalSupport arm64 <6efcd0e042783733ac24282e37617085> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
100
+
101
+ 0x1aa7e6000 - 0x1aa817fff libclosured.dylib arm64 <56e1a40175843bda9c860bdbbcf1b0b5> /usr/lib/closure/libclosured.dylib