No special steps are required. Assuming premake is present in %PATH%, run .\Win_x64_NoToolkit.bat and open the sln generated in the .\Build\Workspace directory.
Cross-arch: `--target-x86_[32/64]` can be added to either family of scripts to readd the specified architecture.
Important: if you wish to work with JavaScript projects in the future, you must ensure you have an x86_64 build of premake5.
## Building for Linux
* Procure or build; and install libc++ (clangs native not fit-for-linux STL)
Note: We use libc++ as a one-size-fits-all cross-platform STL solution. Its' core platform abstraction might suck, but it does well to maintain modern container and utility support. Plus, it's the defacto standard for embedded systems, meme web technology, and non-standard pc things including games consoles and mac. Pipeline and software dependencies can be better optimized and QA'd once normalized to one or two main STL targets. The bits that do suck, like thread primitives, aren't used by most developers who care about performance anyway. The quirks that are there, like locale fetch issues, don't affect us.