File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ const launchArgs = [
3939if ( dataDir ) {
4040 launchArgs . push ( "--user-data-dir" , dataDir ) ;
4141}
42+ // GPU hardware acceleration not working on Darwin for intel
4243if ( process . platform === "darwin" && process . arch === "x64" ) {
4344 launchArgs . push ( "--disable-gpu" ) ;
4445}
Original file line number Diff line number Diff line change @@ -91,5 +91,4 @@ export GIT_CONFIG_VALUE_0="$PWD/hooks"
9191# Need to set proxy to download VS Code
9292export npm_config_https_proxy=" $HTTPS_PROXY "
9393
94- # export DEVELOPER_DIR=/Applications/Xcode-beta.app
9594VSCODE_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";
3838import { checkAndWarnAboutWindowsSymlinks } from "./ui/win32" ;
3939import { SwiftEnvironmentVariablesManager , SwiftTerminalProfileProvider } from "./terminal" ;
4040import { resolveFolderDependencies } from "./commands/dependencies/resolve" ;
41- // import { SelectedXcodeWatcher } from "./toolchain/SelectedXcodeWatcher";
41+ import { SelectedXcodeWatcher } from "./toolchain/SelectedXcodeWatcher" ;
4242
4343/**
4444 * 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> {
131131 if ( ! configuration . debugger . disable ) {
132132 context . subscriptions . push ( registerDebugger ( workspaceContext ) ) ;
133133 }
134- // context.subscriptions.push(new SelectedXcodeWatcher(outputChannel));
134+ context . subscriptions . push ( new SelectedXcodeWatcher ( outputChannel ) ) ;
135135
136136 // listen for workspace folder changes and active text editor changes
137137 workspaceContext . setupEventListeners ( ) ;
You can’t perform that action at this time.
0 commit comments