File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ const launchArgs = [
39
39
if ( dataDir ) {
40
40
launchArgs . push ( "--user-data-dir" , dataDir ) ;
41
41
}
42
+ // GPU hardware acceleration not working on Darwin for intel
42
43
if ( process . platform === "darwin" && process . arch === "x64" ) {
43
44
launchArgs . push ( "--disable-gpu" ) ;
44
45
}
Original file line number Diff line number Diff line change @@ -91,5 +91,4 @@ export GIT_CONFIG_VALUE_0="$PWD/hooks"
91
91
# Need to set proxy to download VS Code
92
92
export npm_config_https_proxy=" $HTTPS_PROXY "
93
93
94
- # export DEVELOPER_DIR=/Applications/Xcode-beta.app
95
94
VSCODE_DATA_DIR=" $USER_DATA " CI=1 FAST_TEST_RUN=1 npm run coverage -- --coverage-output " $PWD /coverage"
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import { showReloadExtensionNotification } from "./ui/ReloadExtension";
38
38
import { checkAndWarnAboutWindowsSymlinks } from "./ui/win32" ;
39
39
import { SwiftEnvironmentVariablesManager , SwiftTerminalProfileProvider } from "./terminal" ;
40
40
import { resolveFolderDependencies } from "./commands/dependencies/resolve" ;
41
- // import { SelectedXcodeWatcher } from "./toolchain/SelectedXcodeWatcher";
41
+ import { SelectedXcodeWatcher } from "./toolchain/SelectedXcodeWatcher" ;
42
42
43
43
/**
44
44
* External API as exposed by the extension. Can be queried by other extensions
@@ -131,7 +131,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<Api> {
131
131
if ( ! configuration . debugger . disable ) {
132
132
context . subscriptions . push ( registerDebugger ( workspaceContext ) ) ;
133
133
}
134
- // context.subscriptions.push(new SelectedXcodeWatcher(outputChannel));
134
+ context . subscriptions . push ( new SelectedXcodeWatcher ( outputChannel ) ) ;
135
135
136
136
// listen for workspace folder changes and active text editor changes
137
137
workspaceContext . setupEventListeners ( ) ;
You can’t perform that action at this time.
0 commit comments