Those instructions are working for me as of Nov. 2020. Using Homebrew and maOS 10.15.7
xcode-select --install
/* global api */ | |
class enen_Cambridge { | |
constructor(options) { | |
this.options = options; | |
this.maxexample = 2; | |
this.word = ''; | |
} | |
async displayName() { | |
return 'Cambridge EN->EN Dictionary'; |
/* global api */ | |
class enen_Collins2 { | |
constructor(options) { | |
this.options = options; | |
this.maxexample = 2; | |
this.word = ''; | |
} | |
async displayName() { | |
let locale = await api.locale(); |
GDB commands by function - simple guide | |
--------------------------------------- | |
More important commands have a (*) by them. | |
Startup | |
% gdb -help print startup help, show switches | |
*% gdb object normal debug | |
*% gdb object core core debug (must specify core file) | |
%% gdb object pid attach to running process | |
% gdb use file command to load object |
# based on commit 118aee617089b4c7a3e448a42ea0b4c65eae5895 | |
diff --git a/Squirrel.xcodeproj/project.pbxproj b/Squirrel.xcodeproj/project.pbxproj | |
index 9ab6c4a..77fc0b8 100644 | |
--- a/Squirrel.xcodeproj/project.pbxproj | |
+++ b/Squirrel.xcodeproj/project.pbxproj | |
@@ -620,6 +620,7 @@ | |
PRODUCT_BUNDLE_IDENTIFIER = im.rime.inputmethod.Squirrel; | |
PRODUCT_NAME = Squirrel; | |
SDKROOT = macosx; | |
+ VALID_ARCHS = x86_64; |