Mark Hansen
Mark Hansen
Given that /src is allowlisted, I tried https://gitlab.com/markhnsn/graphviz.gitlab.io/-/commit/d3143085ba82a9cc6afda743ad2c7aeb2a857b4c setting `GIT_CLONE_PATH: /src` to get the docker bind-mount for the git source to live in /src. But this didn't work: the pipeline...
i suppressed the warning in https://gitlab.com/graphviz/graphviz.gitlab.io/-/merge_requests/736
Thanks. I'm not sure if this will work yet; I think you're setting root's git config, I'm not sure if the hugo user's git will read from root's gitconfig. Will...
FYI @kevinjeon-g, who seems to be the Android plugin maintainer. I'd be interested to help. Wonder if you have any pointers or have thought about this before?
We seem to have documentation for ARM64 instructions for C over here: https://godbolt.org/z/zjYcYsa9W. So it's not a limitation of the architecture.
here's the logic for the dialog box when you View assembly documentation: https://github.com/compiler-explorer/compiler-explorer/blob/fee185bf3dfbd2f44d7c651b9a0cdd4832befd0b/static/panes/compiler.ts#L3689 it's referred to from here https://github.com/compiler-explorer/compiler-explorer/blob/fee185bf3dfbd2f44d7c651b9a0cdd4832befd0b/static/panes/compiler.ts#L3699 where we check if `this.compiler?.supportsAsmDocs`. Maybe that support is what we...
Hmm, `supportsAsmDocs` defaults to true if unspecified: https://github.com/compiler-explorer/compiler-explorer/blob/fee185bf3dfbd2f44d7c651b9a0cdd4832befd0b/lib/compiler-finder.ts#L289 And it seems to be unspecified? Not listed in either - https://github.com/compiler-explorer/compiler-explorer/blob/fee185bf3dfbd2f44d7c651b9a0cdd4832befd0b/etc/config/android-java.defaults.properties - https://github.com/compiler-explorer/compiler-explorer/blob/fee185bf3dfbd2f44d7c651b9a0cdd4832befd0b/etc/config/android-java.amazon.properties
Indeed, in the javascript console, we see `java-dex2oat-latest` supports asm docs: ``` > compilerExplorerOptions.compilers.filter(c => c.id === "java-dex2oat-latest")[0].supportsAsmDocs true ```
Do we need to set the `instructionSet` property? I found some documentation of compiler keys: https://github.com/compiler-explorer/compiler-explorer/blob/main/docs/AddingACompiler.md#configuration-keys Docs say if you set that you > get different instruction set documentation if...
Aha, a clue, when I hover over the first word on the line, it makes a network request, I can see it in devtools network tab. ``` void Square.pokeInt(byte[], int,...