You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, cpptools' TypeScript component does not have any platform-dependent dependencies. The Release pipeline for the cpptools VSIX builds the TypeScript component for each platform from the same (Windows) host. That prevents us from introducing any platform-dependent dependencies, as they would be built for Windows and not the actual target platform.
This is preventing us from using the following dependencies, requiring us to work around these needs with non-ideal solutions:
wordexp (requiring us to deploy our own cpptools-wordexp utility)
node-pty (requiring us to add arguments to gcc and clang build tasks to force output colorization)
This issue is tracking updating our Release pipeline to build the TypeScript component separately on each target platform.
I believe this is blocked until Azure DevOps can provide ARM64 Mac support (or we can get an ARM64 Mac added back into our pool).
The text was updated successfully, but these errors were encountered:
@sean-mcmanus We have the ability to build for ARM and ARM64 Linux (using Docker and processor emulation), but you may be right about needing ARM64 Windows support in the lab in addition to ARM64 Mac support.
node-gyp looks like it might provide a cross-compile solution, but I assume that would require target toolsets on the host.
Using node-gyp it looks like platform-dependent node modules can be configured to do cross-compilation, by specifying a specific compiler toolchain and tweaks to build args. That should allow us to build for all architectures, provided just x64 hosts for Windows, Linux and Mac.
Currently, cpptools' TypeScript component does not have any platform-dependent dependencies. The Release pipeline for the cpptools VSIX builds the TypeScript component for each platform from the same (Windows) host. That prevents us from introducing any platform-dependent dependencies, as they would be built for Windows and not the actual target platform.
This is preventing us from using the following dependencies, requiring us to work around these needs with non-ideal solutions:
cpptools-wordexp
utility)This issue is tracking updating our Release pipeline to build the TypeScript component separately on each target platform.
I believe this is blocked until Azure DevOps can provide ARM64 Mac support (or we can get an ARM64 Mac added back into our pool).
The text was updated successfully, but these errors were encountered: