Mark Hansen
Mark Hansen
Found the docs: https://github.com/compiler-explorer/compiler-explorer/blob/main/docs/AddingAssemblyDocumentation.md#adding-assembly-documentation-for-a-new-instruction-set
cc @kevinjeon-g Here's an example of how Go already does this, with one compiler, they can specify different GOARCH environment variable to output different architecture code: https://github.com/compiler-explorer/compiler-explorer/blob/8b4e6948ec6e70e270f9a1e54a8fa50a47b33cff/etc/config/go.amazon.properties#L167.
Here's where GOARCH is set in the compiler. We could use a similar approach in dex2oat. https://github.com/compiler-explorer/compiler-explorer/blob/8b4e6948ec6e70e270f9a1e54a8fa50a47b33cff/lib/compilers/golang.ts#L70-L88
I've made extra compiler groups for x86, x86_64, arm32 over here: https://github.com/compiler-explorer/compiler-explorer/compare/main...mhansen:compiler-explorer:more-arch?expand=1 I'll clean up the commits and make a PR later.
I think I have a way forward; as mentioned in https://github.com/compiler-explorer/compiler-explorer/pull/6824#issuecomment-2331768082, we should use a Compiler overrides menu to select architecture. I'll come back to this later
I haven't come back to it. Ran out of energy. You can close it if you like.
This commit bumped revision in build.properties to 8.5.14: https://github.com/vigna/fastutil/commit/a439dee15f43283ad538b1a2f6b63155446b3176 its parent added release notes for 8.5.14: https://github.com/vigna/fastutil/commit/f5dfbbe15325a47706468233f24dc71a97b89ad3 about a feature mouse0x0 added. Going back before that feature, looks like https://github.com/vigna/fastutil/commit/e0ef03b9e6d2b997c899895526df0e76fdc1220c...
Thank you for this background! I'll go off what I see in the javadoc as it's a little hard to link to the generated code. > There is a merge...
Here's the click handler on the eye button: https://github.com/ClickHouse/adsb.exposed/blob/3d7696058c2e9c5d27c70e131fa4ae151709a07a/index.html#L1246 Here's the code that restores from URL params on load: https://github.com/ClickHouse/adsb.exposed/blob/3d7696058c2e9c5d27c70e131fa4ae151709a07a/index.html#L765-L794 upateHistory sets the URL state: https://github.com/ClickHouse/adsb.exposed/blob/3d7696058c2e9c5d27c70e131fa4ae151709a07a/index.html#L1260-L1278
I see we already have some configuration of safe.directory here: https://github.com/floryn90/docker-hugo/blame/master/src/docker/alpine-ext/ext-alpine.df#L53