Hi I am building a Node project that includes appdynamics. It's built via Yarn and it fails at the appdynamics-native step: Exit code: 1 Command: npm install request@2.40.0 fs-extra@2.0.0 tar@5.0.0 && node install.js appdynamics-native-native appdynamics-native 8373.0.0 I checked the install script for appdynamics-native. I found it gets the architecture string from process.arch and tries to match it against x64, win32, or ia32, and if it can't it returns null and then later exits with an error. Presumably there's no arm64 build for appdynamics-native (I don't see arm64 on the supported OS for nodeJS page). I can modify the install script to force the x64 download (which should be able to run via Rosetta) but Yarn will overwrite the changes during build. The only workaround I found that works is using NVM to install a x64 Node binary and then build the project but it's not great to have to run the whole thing via Rosetta rather than just this module. Does anyone know of a better approach?
... View more