├── .claude ├── agents │ ├── compiler-explorer-architect.md │ └── python-code-reviewer.md ├── commands │ ├── commit.md │ └── simplify-python.md ├── format-file.py └── settings.json ├── .dockerignore ├── .editorconfig ├── .git-blame-ignore-revs ├── .github └── workflows │ ├── adhoc-command-lin-builder.yml │ ├── adhoc-command.yml │ ├── bespoke-build-arm64.yaml │ ├── bespoke-build.yaml │ ├── check-build-requirements-comment.yml │ ├── check-build-requirements.yml │ ├── compiler-discovery.yml │ ├── consolidate.yml │ ├── install-nightly-compilers.yaml │ ├── install.yml │ ├── lin-lib-build.yaml │ ├── package-ms-compiler.yaml │ ├── python-tests.yaml │ ├── scheduled-lin-lib-builds-full.yaml │ ├── scheduled-lin-lib-builds.yaml │ ├── scheduled-win-lib-builds-full.yaml │ ├── scheduled-win-lib-builds.yaml │ ├── start_staging.yml │ └── win-lib-build.yaml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── encodings.xml ├── infra.iml ├── modules.xml ├── runConfigurations │ ├── ce.xml │ └── ce_install.xml ├── terraform.xml └── vcs.xml ├── .ozy.yaml ├── .pre-commit-config.yaml ├── .pylintrc ├── .python-version ├── .shellcheckrc ├── .vscode ├── launch_debug_example.json └── settings.json ├── BuildingCompilers.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── admin-daily-builds.sh ├── admin ├── .gitignore ├── 503.html ├── builds.html ├── fish_prompt.fish ├── knockout-3.4.2.js ├── libraries.html ├── simpleGrid.js ├── status.css ├── status.html └── status.js ├── analytics ├── .eslintignore ├── .eslintrc ├── compilestats.js ├── install.sh ├── lib │ ├── compiler-arguments-writer.js │ ├── logger.js │ └── s3-handler.js ├── package-lock.json ├── package.json └── readme.md ├── bin ├── bin.iml ├── ce ├── ce_install ├── check_build_requirements.py ├── lib │ ├── __init__.py │ ├── amazon.py │ ├── amazon_properties.py │ ├── aws_utils.py │ ├── binary_info.py │ ├── blue_green_deploy.py │ ├── build_check.py │ ├── builds_core.py │ ├── cdn.py │ ├── ce.py │ ├── ce_install.py │ ├── ce_utils.py │ ├── cefs │ │ ├── consolidation.py │ │ ├── constants.py │ │ ├── conversion.py │ │ ├── deployment.py │ │ ├── formatting.py │ │ ├── fsck.py │ │ ├── gc.py │ │ ├── models.py │ │ ├── paths.py │ │ ├── repair.py │ │ ├── state.py │ │ └── unpack.py │ ├── cefs_manifest.py │ ├── cli │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── ads.py │ │ ├── blue_green.py │ │ ├── builder.py │ │ ├── builds.py │ │ ├── ce_router.py │ │ ├── ce_router_killswitch.py │ │ ├── cefs.py │ │ ├── cli.py │ │ ├── compiler_routing.py │ │ ├── compiler_stats.py │ │ ├── conan.py │ │ ├── cpp_libraries.py │ │ ├── decorations.py │ │ ├── environment.py │ │ ├── events.py │ │ ├── fortran_libraries.py │ │ ├── instances.py │ │ ├── library_stats.py │ │ ├── links.py │ │ ├── motd.py │ │ ├── runner.py │ │ ├── smb.py │ │ ├── tools.py │ │ └── workflows.py │ ├── cloudfront_config.py │ ├── cloudfront_utils.py │ ├── compiler_routing.py │ ├── config.py │ ├── config_expand.py │ ├── config_safe_loader.py │ ├── deployment_utils.py │ ├── discovery.py │ ├── env.py │ ├── fortran_library_builder.py │ ├── golang_stdlib.py │ ├── installable │ │ ├── __init__.py │ │ ├── archives.py │ │ ├── edg.py │ │ ├── git.py │ │ ├── go.py │ │ ├── installable.py │ │ ├── python.py │ │ ├── rust.py │ │ ├── script.py │ │ └── solidity.py │ ├── installation.py │ ├── installation_context.py │ ├── instance.py │ ├── library_build_config.py │ ├── library_build_history.py │ ├── library_builder.py │ ├── library_platform.py │ ├── library_props.py │ ├── library_yaml.py │ ├── list_compilers.py │ ├── log_to_json.py │ ├── nightly_versions.py │ ├── notify.py │ ├── releases.py │ ├── rust_crates.py │ ├── rust_library_builder.py │ ├── squashfs.py │ ├── ssh.py │ └── staging.py ├── list_compilers ├── log_to_json ├── resources │ ├── XercesVersion.hpp │ ├── Xerces_autoconf_config.hpp │ ├── catch_user_config.hpp │ ├── curl_config.h │ ├── googlebenchmark_export.h │ └── mfem_config.hpp ├── scripts │ └── python_shim ├── test │ ├── __init__.py │ ├── ads_test.py │ ├── amazon_properties_test.py │ ├── build_check_test.py │ ├── ce_install_test.py │ ├── cefs │ │ ├── __init__.py │ │ ├── consolidation_test.py │ │ ├── deployment_test.py │ │ ├── formatting_test.py │ │ ├── gc_test.py │ │ ├── manifest_test.py │ │ ├── paths_test.py │ │ ├── repair_test.py │ │ ├── state_test.py │ │ ├── test_helpers.py │ │ └── unpack_test.py │ ├── cli │ │ ├── ce_router_killswitch_test.py │ │ └── workflows_test.py │ ├── cloudfront_utils_test.py │ ├── compiler_routing_test.py │ ├── config_expand_test.py │ ├── config_test.py │ ├── deployment_utils_test.py │ ├── fortran_library_builder_test.py │ ├── fortran_library_props_test.py │ ├── installable │ │ ├── __init__.py │ │ ├── git_test.py │ │ ├── go_test.py │ │ └── installable_test.py │ ├── installation_context_test.py │ ├── installation_test.py │ ├── library_builder_test.py │ ├── library_props_test.py │ ├── notify_test.py │ ├── releases_test.py │ ├── runner_test.py │ ├── rust_library_builder_test.py │ ├── test_instances_blue_green.py │ ├── test_instances_isolate.py │ └── test_squashfs.py └── yaml │ ├── ada.yaml │ ├── algol68.yaml │ ├── android-java.yaml │ ├── android-java │ ├── create_boot_images.sh │ ├── create_boot_images_old.sh │ ├── fetch_android_jar.sh │ └── fetch_art_release_from_head.sh │ ├── asm.yaml │ ├── c.yaml │ ├── c3.yaml │ ├── carbon.yaml │ ├── circle.yaml │ ├── circt.yaml │ ├── clean.yaml │ ├── clojure.yaml │ ├── cobol.yaml │ ├── cpp.yaml │ ├── cppfront.yaml │ ├── crystal.yaml │ ├── cuda.yaml │ ├── d.yaml │ ├── dart.yaml │ ├── dotnet.yaml │ ├── erlang.yaml │ ├── fortran.yaml │ ├── gimple.yaml │ ├── glsl.yaml │ ├── go.yaml │ ├── haskell.yaml │ ├── helion.yaml │ ├── hlsl.yaml │ ├── hook.yaml │ ├── hylo.yaml │ ├── ispc.yaml │ ├── jakt.yaml │ ├── java.yaml │ ├── javascript.yaml │ ├── julia.yaml │ ├── khronos.yaml │ ├── kotlin-native.yaml │ ├── kotlin.yaml │ ├── libraries.yaml │ ├── micropython.yaml │ ├── mojo.yaml │ ├── nim.yaml │ ├── nix.yaml │ ├── numba.yaml │ ├── ocaml.yaml │ ├── odin.yaml │ ├── pascal.yaml │ ├── pascal │ ├── fpc-trunk.cfg │ ├── fpc.cfg │ └── install_fpc.sh │ ├── pony.yaml │ ├── python.yaml │ ├── pythran.yaml │ ├── racket.yaml │ ├── raku.yaml │ ├── ruby.yaml │ ├── rust.yaml │ ├── sail.yaml │ ├── scala.yaml │ ├── slang.yaml │ ├── snowball.yaml │ ├── solidity.yaml │ ├── spice.yaml │ ├── sway.yaml │ ├── swift.yaml │ ├── toit.yaml │ ├── tools.yaml │ ├── triton.yaml │ ├── typescript.yaml │ ├── v.yaml │ ├── vala.yaml │ ├── vyper.yaml │ ├── wasm.yaml │ ├── windows.yaml │ ├── ygen.yaml │ └── zig.yaml ├── ce_install.ps1 ├── conan ├── switch-to-ce.sh └── switch-to-default.sh ├── cost-reports └── CostReportJune2025.md ├── crontab.admin ├── crontab.builder ├── crontab.root.admin ├── docs ├── aarch64_execution_workflow.md ├── adding_msvc_compilers.md ├── adding_rust_crates.md ├── aws_architecture_blue_green.md ├── aws_architecture_current.md ├── aws_architecture_visual.md ├── blue_green_deployment_strategy.md ├── ce_install_yaml.md ├── cefs.md ├── colored-queues-implementation.md ├── cpp_library_commands.md ├── filter-system.md ├── fortran_library_commands.md ├── gh_runner_debugging.md ├── installing_compilers.md ├── lambda_compilation_workflow.md ├── nsjail.md ├── oidc_third_party_access.md ├── packaging_qnx.md ├── release_new_version.md ├── resizing_conan_disk.md ├── sqs_scaling_aarch64.md ├── updating_asm-parser.md ├── windows_architecture.md └── windows_library_builder.md ├── events-lambda ├── .eslintrc.yml ├── .prettierrc.cjs ├── config.js ├── events-connections.js ├── events-onconnect.js ├── events-ondisconnect.js ├── events-sendmessage.js ├── package-lock.json ├── package.json └── readme.md ├── gcc.md ├── grafana ├── agent-win.yaml ├── agent.yaml ├── ce-metrics.service ├── grafana-agent.service ├── make-config-admin.sh ├── make-config-ci.sh ├── make-config.sh └── update-metrics.sh ├── init ├── ce-conan.service ├── ce-router.service ├── compiler-explorer.service ├── do-discovery.sh ├── log-instance-id.service ├── run.ps1 ├── settings.yml ├── start-builder.ps1 ├── start-builder.sh ├── start-conan.sh ├── start-router.sh ├── start.ps1 └── start.sh ├── lambda ├── .python-version ├── alert_on_elb_instance.py ├── alert_on_elb_instance_test.py ├── cloudwatch_to_discord.py ├── cloudwatch_to_discord_test.py ├── get_deployed_exe_version.py ├── get_remote_execution_archs.py ├── pyproject.toml ├── stats.py ├── stats_test.py ├── status.py ├── status_test.py └── uv.lock ├── logo ├── README.md ├── favicon.png ├── favicon.xcf ├── icon │ ├── CompilerExplorer Logo Icon AI.ai │ ├── CompilerExplorer Logo Icon EPS.eps │ ├── CompilerExplorer Logo Icon JPEG.jpg │ ├── CompilerExplorer Logo Icon PDF.pdf │ ├── CompilerExplorer Logo Icon PNG (transparent_bg).png │ ├── CompilerExplorer Logo Icon PSD.psd │ └── CompilerExplorer Logo Icon SVG.svg ├── monochrome │ ├── Primary (vertical) │ │ ├── Black │ │ │ ├── CompilerExplorer v1b AI.ai │ │ │ ├── CompilerExplorer v1b EPS.eps │ │ │ ├── CompilerExplorer v1b JPEG.jpg │ │ │ ├── CompilerExplorer v1b PDF.pdf │ │ │ ├── CompilerExplorer v1b PNG (transparent_bg).png │ │ │ ├── CompilerExplorer v1b PSD.psd │ │ │ └── CompilerExplorer v1b SVG.svg │ │ └── White │ │ │ ├── CompilerExplorer v1w AI.ai │ │ │ ├── CompilerExplorer v1w EPS.eps │ │ │ ├── CompilerExplorer v1w JPEG.jpg │ │ │ ├── CompilerExplorer v1w PDF.pdf │ │ │ ├── CompilerExplorer v1w PNG (transparent_bg).png │ │ │ ├── CompilerExplorer v1w PSD.psd │ │ │ └── CompilerExplorer v1w SVG.svg │ └── Secondary (horizontal) │ │ ├── Black │ │ ├── CompilerExplorer v2b AI.ai │ │ ├── CompilerExplorer v2b EPS.eps │ │ ├── CompilerExplorer v2b JPEG.jpg │ │ ├── CompilerExplorer v2b PDF.pdf │ │ ├── CompilerExplorer v2b PNG (transparent_bg).png │ │ ├── CompilerExplorer v2b PSD.psd │ │ └── CompilerExplorer v2b SVG.svg │ │ └── White │ │ ├── CompilerExplorer v2w AI.ai │ │ ├── CompilerExplorer v2w EPS.eps │ │ ├── CompilerExplorer v2w JPEG.jpg │ │ ├── CompilerExplorer v2w PDF.pdf │ │ ├── CompilerExplorer v2w PNG (transparent_bg).png │ │ ├── CompilerExplorer v2w PSD.psd │ │ └── CompilerExplorer v2w SVG.svg ├── primary │ ├── CompilerExplorer v1 AI.ai │ ├── CompilerExplorer v1 EPS.eps │ ├── CompilerExplorer v1 JPEG.jpg │ ├── CompilerExplorer v1 PDF.pdf │ ├── CompilerExplorer v1 PNG (transparent_bg).png │ ├── CompilerExplorer v1 PSD.psd │ └── CompilerExplorer v1 SVG.svg ├── secondary │ ├── CompilerExplorer v2 AI.ai │ ├── CompilerExplorer v2 EPS.eps │ ├── CompilerExplorer v2 JPEG.jpg │ ├── CompilerExplorer v2 PDF.pdf │ ├── CompilerExplorer v2 PNG (transparent_bg).png │ ├── CompilerExplorer v2 PSD.psd │ └── CompilerExplorer v2 SVG.svg ├── site-logo-beta.svg ├── site-logo-inverse.svg └── site-logo.svg ├── make_json.py ├── msvc-install ├── gen-props.py ├── gh-msvc-install.ps1 ├── msvc2019-install.ps1 └── msvc2022-install.ps1 ├── mugs ├── arm32_eabi_mug.png ├── arm32_eabi_mug.svg ├── arm64_abi_mug.png ├── arm64_abi_mug.svg ├── arm64_go_abi_mug.png ├── arm64_go_abi_mug.svg ├── core │ ├── __init__.py │ ├── constants.py │ ├── data_structures.py │ ├── layout_engine.py │ ├── svg_generation.py │ └── text_measurement.py ├── generators │ ├── __init__.py │ ├── arm32_eabi.py │ ├── arm64.py │ ├── base.py │ ├── go.py │ ├── msvc.py │ ├── riscv.py │ └── systemv.py ├── index.html ├── make_arm32_eabi_mug.py ├── make_arm64_go_mug.py ├── make_arm64_mug.py ├── make_riscv_go_mug.py ├── make_riscv_mug.py ├── make_x86_64_go_mug.py ├── make_x86_64_msvc_mug.py ├── make_x86_64_systemv_mug.py ├── riscv_abi_mug.png ├── riscv_abi_mug.svg ├── riscv_go_abi_mug.png ├── riscv_go_abi_mug.svg ├── x86_64_go_abi_mug.png ├── x86_64_go_abi_mug.svg ├── x86_64_msvc_abi_mug.png ├── x86_64_msvc_abi_mug.svg ├── x86_64_systemv_abi_mug.png └── x86_64_systemv_abi_mug.svg ├── nginx ├── ce-router.conf ├── nginx-win.conf └── nginx.conf ├── packer ├── InstallBuilderTools.ps1 ├── InstallPwsh.ps1 ├── InstallTools.ps1 ├── README.md ├── SetUpWinRM.ps1 ├── Startup.ps1 ├── aarch64-node.pkr.hcl ├── admin.pkr.hcl ├── builder.pkr.hcl ├── ce-router.pkr.hcl ├── conan.pkr.hcl ├── gpu-node.pkr.hcl ├── known_hosts ├── local.pkr.hcl ├── node.pkr.hcl ├── smb-local.pkr.hcl ├── smb.pkr.hcl └── win.pkr.hcl ├── pyproject.toml ├── remove_old_compilers.sh ├── scripts ├── build_lambda_deterministic.py └── build_nodejs_lambda_deterministic.py ├── setup-aarch64-node.sh ├── setup-admin.sh ├── setup-builder-startup.sh ├── setup-builder.sh ├── setup-ce-router.sh ├── setup-ci.sh ├── setup-common.sh ├── setup-conan.sh ├── setup-gpu-node.sh ├── setup-node.sh ├── setup-smb.sh ├── setup.fish ├── site-aarch64prod.sh ├── site-aarch64staging.sh ├── site-beta.sh ├── site-gpu.sh ├── site-prod.sh ├── site-runner.sh ├── site-staging.sh ├── smb-server ├── rsync-share.sh └── smb.conf ├── start-support.sh ├── static-checks.ps1 ├── terraform ├── .gitignore ├── .terraform.lock.hcl ├── README.md ├── aarch64-blue-green.tf ├── acm.tf ├── alb.tf ├── apigateway_ce_pub_api.tf ├── apigateway_events_api.tf ├── asg.tf ├── audit.tf ├── backups.tf ├── beta-blue-green.tf ├── ce-router.tf ├── cloudfront.tf ├── cloudfront_conan.tf ├── cloudwatch.tf ├── dynamodb.tf ├── ec2.tf ├── efs.tf ├── gpu-blue-green.tf ├── lambda.tf ├── lambda_elfshaker.tf ├── lambda_events.tf ├── lambda_explain.tf ├── lambda_nightlyversion.tf ├── lambda_remote_archs.tf ├── lc.tf ├── main.tf ├── modules │ ├── .gitignore │ ├── blue_green │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── ce_dns │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── ce_network │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ └── ce_router │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf ├── network.tf ├── prod-blue-green.tf ├── route53.tf ├── s3.tf ├── security.tf ├── sqs_worker_queues.tf ├── staging-blue-green.tf ├── temp_storage.tf ├── tg.tf ├── third_party.tf ├── variables_temp_storage.tf └── windows-blue-green.tf ├── test ├── all.sh ├── remote-cases │ ├── c++ │ │ ├── compilers.json │ │ ├── sum-o2 │ │ │ ├── aarchg54.binary.commentOnly.directives.intel.labels.json │ │ │ ├── aarchg54.binary.commentOnly.directives.labels.json │ │ │ ├── aarchg54.commentOnly.directives.intel.labels.json │ │ │ ├── aarchg54.commentOnly.directives.labels.json │ │ │ ├── arm541.binary.commentOnly.directives.intel.labels.json │ │ │ ├── arm541.binary.commentOnly.directives.labels.json │ │ │ ├── arm541.commentOnly.directives.intel.labels.json │ │ │ ├── arm541.commentOnly.directives.labels.json │ │ │ ├── armg453.binary.commentOnly.directives.intel.labels.json │ │ │ ├── armg453.binary.commentOnly.directives.labels.json │ │ │ ├── armg453.commentOnly.directives.intel.labels.json │ │ │ ├── armg453.commentOnly.directives.labels.json │ │ │ ├── armg454.binary.commentOnly.directives.intel.labels.json │ │ │ ├── armg454.binary.commentOnly.directives.labels.json │ │ │ ├── armg454.commentOnly.directives.intel.labels.json │ │ │ ├── armg454.commentOnly.directives.labels.json │ │ │ ├── armg464.binary.commentOnly.directives.intel.labels.json │ │ │ ├── armg464.binary.commentOnly.directives.labels.json │ │ │ ├── armg464.commentOnly.directives.intel.labels.json │ │ │ ├── armg464.commentOnly.directives.labels.json │ │ │ ├── armhfg54.binary.commentOnly.directives.intel.labels.json │ │ │ ├── armhfg54.binary.commentOnly.directives.labels.json │ │ │ ├── armhfg54.commentOnly.directives.intel.labels.json │ │ │ ├── armhfg54.commentOnly.directives.labels.json │ │ │ ├── avrg453.binary.commentOnly.directives.intel.labels.json │ │ │ ├── avrg453.binary.commentOnly.directives.labels.json │ │ │ ├── avrg453.commentOnly.directives.intel.labels.json │ │ │ ├── avrg453.commentOnly.directives.labels.json │ │ │ ├── avrg454.binary.commentOnly.directives.intel.labels.json │ │ │ ├── avrg454.binary.commentOnly.directives.labels.json │ │ │ ├── avrg454.commentOnly.directives.intel.labels.json │ │ │ ├── avrg454.commentOnly.directives.labels.json │ │ │ ├── avrg464.binary.commentOnly.directives.intel.labels.json │ │ │ ├── avrg464.binary.commentOnly.directives.labels.json │ │ │ ├── avrg464.commentOnly.directives.intel.labels.json │ │ │ ├── avrg464.commentOnly.directives.labels.json │ │ │ ├── clang30.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang30.binary.commentOnly.directives.labels.json │ │ │ ├── clang30.commentOnly.directives.intel.labels.json │ │ │ ├── clang30.commentOnly.directives.labels.json │ │ │ ├── clang31.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang31.binary.commentOnly.directives.labels.json │ │ │ ├── clang31.commentOnly.directives.intel.labels.json │ │ │ ├── clang31.commentOnly.directives.labels.json │ │ │ ├── clang36x.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang36x.binary.commentOnly.directives.labels.json │ │ │ ├── clang36x.commentOnly.directives.intel.labels.json │ │ │ ├── clang36x.commentOnly.directives.labels.json │ │ │ ├── clang381.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang381.binary.commentOnly.directives.labels.json │ │ │ ├── clang381.commentOnly.directives.intel.labels.json │ │ │ ├── clang381.commentOnly.directives.labels.json │ │ │ ├── clang390.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang390.binary.commentOnly.directives.labels.json │ │ │ ├── clang390.commentOnly.directives.intel.labels.json │ │ │ ├── clang390.commentOnly.directives.labels.json │ │ │ ├── clang391.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang391.binary.commentOnly.directives.labels.json │ │ │ ├── clang391.commentOnly.directives.intel.labels.json │ │ │ ├── clang391.commentOnly.directives.labels.json │ │ │ ├── clang400.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang400.binary.commentOnly.directives.labels.json │ │ │ ├── clang400.commentOnly.directives.intel.labels.json │ │ │ ├── clang400.commentOnly.directives.labels.json │ │ │ ├── clang_trunk.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang_trunk.binary.commentOnly.directives.labels.json │ │ │ ├── clang_trunk.commentOnly.directives.intel.labels.json │ │ │ ├── clang_trunk.commentOnly.directives.labels.json │ │ │ ├── ellcc0133.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ellcc0133.binary.commentOnly.directives.labels.json │ │ │ ├── ellcc0133.commentOnly.directives.intel.labels.json │ │ │ ├── ellcc0133.commentOnly.directives.labels.json │ │ │ ├── ellcc0134.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ellcc0134.binary.commentOnly.directives.labels.json │ │ │ ├── ellcc0134.commentOnly.directives.intel.labels.json │ │ │ ├── ellcc0134.commentOnly.directives.labels.json │ │ │ ├── g447.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g447.binary.commentOnly.directives.labels.json │ │ │ ├── g447.commentOnly.directives.intel.labels.json │ │ │ ├── g447.commentOnly.directives.labels.json │ │ │ ├── g474.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g474.binary.commentOnly.directives.labels.json │ │ │ ├── g474.commentOnly.directives.intel.labels.json │ │ │ ├── g474.commentOnly.directives.labels.json │ │ │ ├── g485.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g485.binary.commentOnly.directives.labels.json │ │ │ ├── g485.commentOnly.directives.intel.labels.json │ │ │ ├── g485.commentOnly.directives.labels.json │ │ │ ├── g494.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g494.binary.commentOnly.directives.labels.json │ │ │ ├── g494.commentOnly.directives.intel.labels.json │ │ │ ├── g494.commentOnly.directives.labels.json │ │ │ ├── g510.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g510.binary.commentOnly.directives.labels.json │ │ │ ├── g510.commentOnly.directives.intel.labels.json │ │ │ ├── g510.commentOnly.directives.labels.json │ │ │ ├── g540.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g540.binary.commentOnly.directives.labels.json │ │ │ ├── g540.commentOnly.directives.intel.labels.json │ │ │ ├── g540.commentOnly.directives.labels.json │ │ │ ├── g6.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g6.binary.commentOnly.directives.labels.json │ │ │ ├── g6.commentOnly.directives.intel.labels.json │ │ │ ├── g6.commentOnly.directives.labels.json │ │ │ ├── g62.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g62.binary.commentOnly.directives.labels.json │ │ │ ├── g62.commentOnly.directives.intel.labels.json │ │ │ ├── g62.commentOnly.directives.labels.json │ │ │ ├── g63.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g63.binary.commentOnly.directives.labels.json │ │ │ ├── g63.commentOnly.directives.intel.labels.json │ │ │ ├── g63.commentOnly.directives.labels.json │ │ │ ├── g7snapshot.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g7snapshot.binary.commentOnly.directives.labels.json │ │ │ ├── g7snapshot.commentOnly.directives.intel.labels.json │ │ │ ├── g7snapshot.commentOnly.directives.labels.json │ │ │ ├── icc1301.binary.commentOnly.directives.intel.labels.json │ │ │ ├── icc1301.binary.commentOnly.directives.labels.json │ │ │ ├── icc1301.commentOnly.directives.intel.labels.json │ │ │ ├── icc1301.commentOnly.directives.labels.json │ │ │ ├── icc16.binary.commentOnly.directives.intel.labels.json │ │ │ ├── icc16.binary.commentOnly.directives.labels.json │ │ │ ├── icc16.commentOnly.directives.intel.labels.json │ │ │ ├── icc16.commentOnly.directives.labels.json │ │ │ ├── icc17.binary.commentOnly.directives.intel.labels.json │ │ │ ├── icc17.binary.commentOnly.directives.labels.json │ │ │ ├── icc17.commentOnly.directives.intel.labels.json │ │ │ ├── icc17.commentOnly.directives.labels.json │ │ │ ├── mips564.binary.commentOnly.directives.intel.labels.json │ │ │ ├── mips564.binary.commentOnly.directives.labels.json │ │ │ ├── mips564.commentOnly.directives.intel.labels.json │ │ │ ├── mips564.commentOnly.directives.labels.json │ │ │ ├── mips564el.binary.commentOnly.directives.intel.labels.json │ │ │ ├── mips564el.binary.commentOnly.directives.labels.json │ │ │ ├── mips564el.commentOnly.directives.intel.labels.json │ │ │ ├── mips564el.commentOnly.directives.labels.json │ │ │ ├── msp430g453.binary.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g453.binary.commentOnly.directives.labels.json │ │ │ ├── msp430g453.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g453.commentOnly.directives.labels.json │ │ │ ├── msp430g530.binary.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g530.binary.commentOnly.directives.labels.json │ │ │ ├── msp430g530.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g530.commentOnly.directives.labels.json │ │ │ ├── msp430g621.binary.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g621.binary.commentOnly.directives.labels.json │ │ │ ├── msp430g621.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g621.commentOnly.directives.labels.json │ │ │ ├── options │ │ │ ├── ppcg48.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ppcg48.binary.commentOnly.directives.labels.json │ │ │ ├── ppcg48.commentOnly.directives.intel.labels.json │ │ │ ├── ppcg48.commentOnly.directives.labels.json │ │ │ ├── test.cpp │ │ │ ├── zapcc190308.binary.commentOnly.directives.intel.labels.json │ │ │ ├── zapcc190308.binary.commentOnly.directives.labels.json │ │ │ ├── zapcc190308.commentOnly.directives.intel.labels.json │ │ │ └── zapcc190308.commentOnly.directives.labels.json │ │ └── sum │ │ │ ├── aarchg54.binary.commentOnly.directives.intel.labels.json │ │ │ ├── aarchg54.binary.commentOnly.directives.labels.json │ │ │ ├── aarchg54.commentOnly.directives.intel.labels.json │ │ │ ├── aarchg54.commentOnly.directives.labels.json │ │ │ ├── arm541.binary.commentOnly.directives.intel.labels.json │ │ │ ├── arm541.binary.commentOnly.directives.labels.json │ │ │ ├── arm541.commentOnly.directives.intel.labels.json │ │ │ ├── arm541.commentOnly.directives.labels.json │ │ │ ├── armg453.binary.commentOnly.directives.intel.labels.json │ │ │ ├── armg453.binary.commentOnly.directives.labels.json │ │ │ ├── armg453.commentOnly.directives.intel.labels.json │ │ │ ├── armg453.commentOnly.directives.labels.json │ │ │ ├── armg454.binary.commentOnly.directives.intel.labels.json │ │ │ ├── armg454.binary.commentOnly.directives.labels.json │ │ │ ├── armg454.commentOnly.directives.intel.labels.json │ │ │ ├── armg454.commentOnly.directives.labels.json │ │ │ ├── armg464.binary.commentOnly.directives.intel.labels.json │ │ │ ├── armg464.binary.commentOnly.directives.labels.json │ │ │ ├── armg464.commentOnly.directives.intel.labels.json │ │ │ ├── armg464.commentOnly.directives.labels.json │ │ │ ├── armhfg54.binary.commentOnly.directives.intel.labels.json │ │ │ ├── armhfg54.binary.commentOnly.directives.labels.json │ │ │ ├── armhfg54.commentOnly.directives.intel.labels.json │ │ │ ├── armhfg54.commentOnly.directives.labels.json │ │ │ ├── avrg453.binary.commentOnly.directives.intel.labels.json │ │ │ ├── avrg453.binary.commentOnly.directives.labels.json │ │ │ ├── avrg453.commentOnly.directives.intel.labels.json │ │ │ ├── avrg453.commentOnly.directives.labels.json │ │ │ ├── avrg454.binary.commentOnly.directives.intel.labels.json │ │ │ ├── avrg454.binary.commentOnly.directives.labels.json │ │ │ ├── avrg454.commentOnly.directives.intel.labels.json │ │ │ ├── avrg454.commentOnly.directives.labels.json │ │ │ ├── avrg464.binary.commentOnly.directives.intel.labels.json │ │ │ ├── avrg464.binary.commentOnly.directives.labels.json │ │ │ ├── avrg464.commentOnly.directives.intel.labels.json │ │ │ ├── avrg464.commentOnly.directives.labels.json │ │ │ ├── clang30.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang30.binary.commentOnly.directives.labels.json │ │ │ ├── clang30.commentOnly.directives.intel.labels.json │ │ │ ├── clang30.commentOnly.directives.labels.json │ │ │ ├── clang31.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang31.binary.commentOnly.directives.labels.json │ │ │ ├── clang31.commentOnly.directives.intel.labels.json │ │ │ ├── clang31.commentOnly.directives.labels.json │ │ │ ├── clang36x.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang36x.binary.commentOnly.directives.labels.json │ │ │ ├── clang36x.commentOnly.directives.intel.labels.json │ │ │ ├── clang36x.commentOnly.directives.labels.json │ │ │ ├── clang381.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang381.binary.commentOnly.directives.labels.json │ │ │ ├── clang381.commentOnly.directives.intel.labels.json │ │ │ ├── clang381.commentOnly.directives.labels.json │ │ │ ├── clang390.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang390.binary.commentOnly.directives.labels.json │ │ │ ├── clang390.commentOnly.directives.intel.labels.json │ │ │ ├── clang390.commentOnly.directives.labels.json │ │ │ ├── clang391.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang391.binary.commentOnly.directives.labels.json │ │ │ ├── clang391.commentOnly.directives.intel.labels.json │ │ │ ├── clang391.commentOnly.directives.labels.json │ │ │ ├── clang400.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang400.binary.commentOnly.directives.labels.json │ │ │ ├── clang400.commentOnly.directives.intel.labels.json │ │ │ ├── clang400.commentOnly.directives.labels.json │ │ │ ├── clang_trunk.binary.commentOnly.directives.intel.labels.json │ │ │ ├── clang_trunk.binary.commentOnly.directives.labels.json │ │ │ ├── clang_trunk.commentOnly.directives.intel.labels.json │ │ │ ├── clang_trunk.commentOnly.directives.labels.json │ │ │ ├── ellcc0133.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ellcc0133.binary.commentOnly.directives.labels.json │ │ │ ├── ellcc0133.commentOnly.directives.intel.labels.json │ │ │ ├── ellcc0133.commentOnly.directives.labels.json │ │ │ ├── ellcc0134.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ellcc0134.binary.commentOnly.directives.labels.json │ │ │ ├── ellcc0134.commentOnly.directives.intel.labels.json │ │ │ ├── ellcc0134.commentOnly.directives.labels.json │ │ │ ├── g447.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g447.binary.commentOnly.directives.labels.json │ │ │ ├── g447.commentOnly.directives.intel.labels.json │ │ │ ├── g447.commentOnly.directives.labels.json │ │ │ ├── g474.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g474.binary.commentOnly.directives.labels.json │ │ │ ├── g474.commentOnly.directives.intel.labels.json │ │ │ ├── g474.commentOnly.directives.labels.json │ │ │ ├── g485.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g485.binary.commentOnly.directives.labels.json │ │ │ ├── g485.commentOnly.directives.intel.labels.json │ │ │ ├── g485.commentOnly.directives.labels.json │ │ │ ├── g494.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g494.binary.commentOnly.directives.labels.json │ │ │ ├── g494.commentOnly.directives.intel.labels.json │ │ │ ├── g494.commentOnly.directives.labels.json │ │ │ ├── g510.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g510.binary.commentOnly.directives.labels.json │ │ │ ├── g510.commentOnly.directives.intel.labels.json │ │ │ ├── g510.commentOnly.directives.labels.json │ │ │ ├── g540.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g540.binary.commentOnly.directives.labels.json │ │ │ ├── g540.commentOnly.directives.intel.labels.json │ │ │ ├── g540.commentOnly.directives.labels.json │ │ │ ├── g6.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g6.binary.commentOnly.directives.labels.json │ │ │ ├── g6.commentOnly.directives.intel.labels.json │ │ │ ├── g6.commentOnly.directives.labels.json │ │ │ ├── g62.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g62.binary.commentOnly.directives.labels.json │ │ │ ├── g62.commentOnly.directives.intel.labels.json │ │ │ ├── g62.commentOnly.directives.labels.json │ │ │ ├── g63.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g63.binary.commentOnly.directives.labels.json │ │ │ ├── g63.commentOnly.directives.intel.labels.json │ │ │ ├── g63.commentOnly.directives.labels.json │ │ │ ├── g7snapshot.binary.commentOnly.directives.intel.labels.json │ │ │ ├── g7snapshot.binary.commentOnly.directives.labels.json │ │ │ ├── g7snapshot.commentOnly.directives.intel.labels.json │ │ │ ├── g7snapshot.commentOnly.directives.labels.json │ │ │ ├── icc1301.binary.commentOnly.directives.intel.labels.json │ │ │ ├── icc1301.binary.commentOnly.directives.labels.json │ │ │ ├── icc1301.commentOnly.directives.intel.labels.json │ │ │ ├── icc1301.commentOnly.directives.labels.json │ │ │ ├── icc16.binary.commentOnly.directives.intel.labels.json │ │ │ ├── icc16.binary.commentOnly.directives.labels.json │ │ │ ├── icc16.commentOnly.directives.intel.labels.json │ │ │ ├── icc16.commentOnly.directives.labels.json │ │ │ ├── icc17.binary.commentOnly.directives.intel.labels.json │ │ │ ├── icc17.binary.commentOnly.directives.labels.json │ │ │ ├── icc17.commentOnly.directives.intel.labels.json │ │ │ ├── icc17.commentOnly.directives.labels.json │ │ │ ├── mips564.binary.commentOnly.directives.intel.labels.json │ │ │ ├── mips564.binary.commentOnly.directives.labels.json │ │ │ ├── mips564.commentOnly.directives.intel.labels.json │ │ │ ├── mips564.commentOnly.directives.labels.json │ │ │ ├── mips564el.binary.commentOnly.directives.intel.labels.json │ │ │ ├── mips564el.binary.commentOnly.directives.labels.json │ │ │ ├── mips564el.commentOnly.directives.intel.labels.json │ │ │ ├── mips564el.commentOnly.directives.labels.json │ │ │ ├── mips5el.binary.commentOnly.directives.intel.labels.json │ │ │ ├── mips5el.binary.commentOnly.directives.labels.json │ │ │ ├── mips5el.commentOnly.directives.intel.labels.json │ │ │ ├── mips5el.commentOnly.directives.labels.json │ │ │ ├── msp430g453.binary.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g453.binary.commentOnly.directives.labels.json │ │ │ ├── msp430g453.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g453.commentOnly.directives.labels.json │ │ │ ├── msp430g530.binary.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g530.binary.commentOnly.directives.labels.json │ │ │ ├── msp430g530.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g530.commentOnly.directives.labels.json │ │ │ ├── msp430g621.binary.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g621.binary.commentOnly.directives.labels.json │ │ │ ├── msp430g621.commentOnly.directives.intel.labels.json │ │ │ ├── msp430g621.commentOnly.directives.labels.json │ │ │ ├── options │ │ │ ├── ppcg48.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ppcg48.binary.commentOnly.directives.labels.json │ │ │ ├── ppcg48.commentOnly.directives.intel.labels.json │ │ │ ├── ppcg48.commentOnly.directives.labels.json │ │ │ ├── test.cpp │ │ │ ├── zapcc190308.binary.commentOnly.directives.intel.labels.json │ │ │ ├── zapcc190308.binary.commentOnly.directives.labels.json │ │ │ ├── zapcc190308.commentOnly.directives.intel.labels.json │ │ │ └── zapcc190308.commentOnly.directives.labels.json │ ├── d │ │ ├── compilers.json │ │ └── square │ │ │ ├── gdc48.binary.commentOnly.directives.intel.labels.json │ │ │ ├── gdc48.binary.commentOnly.directives.labels.json │ │ │ ├── gdc48.commentOnly.directives.intel.labels.json │ │ │ ├── gdc48.commentOnly.directives.labels.json │ │ │ ├── gdc49.binary.commentOnly.directives.intel.labels.json │ │ │ ├── gdc49.binary.commentOnly.directives.labels.json │ │ │ ├── gdc49.commentOnly.directives.intel.labels.json │ │ │ ├── gdc49.commentOnly.directives.labels.json │ │ │ ├── gdc52.binary.commentOnly.directives.intel.labels.json │ │ │ ├── gdc52.binary.commentOnly.directives.labels.json │ │ │ ├── gdc52.commentOnly.directives.intel.labels.json │ │ │ ├── gdc52.commentOnly.directives.labels.json │ │ │ ├── ldc017.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ldc017.binary.commentOnly.directives.labels.json │ │ │ ├── ldc017.commentOnly.directives.intel.labels.json │ │ │ ├── ldc017.commentOnly.directives.labels.json │ │ │ ├── ldc100.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ldc100.binary.commentOnly.directives.labels.json │ │ │ ├── ldc100.commentOnly.directives.intel.labels.json │ │ │ ├── ldc100.commentOnly.directives.labels.json │ │ │ ├── ldc110.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ldc110.binary.commentOnly.directives.labels.json │ │ │ ├── ldc110.commentOnly.directives.intel.labels.json │ │ │ ├── ldc110.commentOnly.directives.labels.json │ │ │ ├── ldcbeta.binary.commentOnly.directives.intel.labels.json │ │ │ ├── ldcbeta.binary.commentOnly.directives.labels.json │ │ │ ├── ldcbeta.commentOnly.directives.intel.labels.json │ │ │ ├── ldcbeta.commentOnly.directives.labels.json │ │ │ ├── options │ │ │ └── test.d │ ├── go │ │ ├── compilers.json │ │ └── square │ │ │ ├── 6g141.binary.commentOnly.directives.intel.labels.json │ │ │ ├── 6g141.binary.commentOnly.directives.labels.json │ │ │ ├── 6g141.commentOnly.directives.intel.labels.json │ │ │ ├── 6g141.commentOnly.directives.labels.json │ │ │ ├── gccgo491.binary.commentOnly.directives.intel.labels.json │ │ │ ├── gccgo491.binary.commentOnly.directives.labels.json │ │ │ ├── gccgo491.commentOnly.directives.intel.labels.json │ │ │ ├── gccgo491.commentOnly.directives.labels.json │ │ │ ├── gccgo494.binary.commentOnly.directives.intel.labels.json │ │ │ ├── gccgo494.binary.commentOnly.directives.labels.json │ │ │ ├── gccgo494.commentOnly.directives.intel.labels.json │ │ │ ├── gccgo494.commentOnly.directives.labels.json │ │ │ ├── gccgo630.binary.commentOnly.directives.intel.labels.json │ │ │ ├── gccgo630.binary.commentOnly.directives.labels.json │ │ │ ├── gccgo630.commentOnly.directives.intel.labels.json │ │ │ ├── gccgo630.commentOnly.directives.labels.json │ │ │ ├── options │ │ │ └── test.go │ └── rust │ │ ├── compilers.json │ │ └── square │ │ ├── beta.binary.commentOnly.directives.intel.labels.json │ │ ├── beta.binary.commentOnly.directives.labels.json │ │ ├── beta.commentOnly.directives.intel.labels.json │ │ ├── beta.commentOnly.directives.labels.json │ │ ├── nightly.binary.commentOnly.directives.intel.labels.json │ │ ├── nightly.binary.commentOnly.directives.labels.json │ │ ├── nightly.commentOnly.directives.intel.labels.json │ │ ├── nightly.commentOnly.directives.labels.json │ │ ├── options │ │ ├── r100.binary.commentOnly.directives.intel.labels.json │ │ ├── r100.binary.commentOnly.directives.labels.json │ │ ├── r100.commentOnly.directives.intel.labels.json │ │ ├── r100.commentOnly.directives.labels.json │ │ ├── r110.binary.commentOnly.directives.intel.labels.json │ │ ├── r110.binary.commentOnly.directives.labels.json │ │ ├── r110.commentOnly.directives.intel.labels.json │ │ ├── r110.commentOnly.directives.labels.json │ │ ├── r1110.binary.commentOnly.directives.intel.labels.json │ │ ├── r1110.binary.commentOnly.directives.labels.json │ │ ├── r1110.commentOnly.directives.intel.labels.json │ │ ├── r1110.commentOnly.directives.labels.json │ │ ├── r1120.binary.commentOnly.directives.intel.labels.json │ │ ├── r1120.binary.commentOnly.directives.labels.json │ │ ├── r1120.commentOnly.directives.intel.labels.json │ │ ├── r1120.commentOnly.directives.labels.json │ │ ├── r1130.binary.commentOnly.directives.intel.labels.json │ │ ├── r1130.binary.commentOnly.directives.labels.json │ │ ├── r1130.commentOnly.directives.intel.labels.json │ │ ├── r1130.commentOnly.directives.labels.json │ │ ├── r1140.binary.commentOnly.directives.intel.labels.json │ │ ├── r1140.binary.commentOnly.directives.labels.json │ │ ├── r1140.commentOnly.directives.intel.labels.json │ │ ├── r1140.commentOnly.directives.labels.json │ │ ├── r1151.binary.commentOnly.directives.intel.labels.json │ │ ├── r1151.binary.commentOnly.directives.labels.json │ │ ├── r1151.commentOnly.directives.intel.labels.json │ │ ├── r1151.commentOnly.directives.labels.json │ │ ├── r1160.binary.commentOnly.directives.intel.labels.json │ │ ├── r1160.binary.commentOnly.directives.labels.json │ │ ├── r1160.commentOnly.directives.intel.labels.json │ │ ├── r1160.commentOnly.directives.labels.json │ │ ├── r120.binary.commentOnly.directives.intel.labels.json │ │ ├── r120.binary.commentOnly.directives.labels.json │ │ ├── r120.commentOnly.directives.intel.labels.json │ │ ├── r120.commentOnly.directives.labels.json │ │ ├── r130.binary.commentOnly.directives.intel.labels.json │ │ ├── r130.binary.commentOnly.directives.labels.json │ │ ├── r130.commentOnly.directives.intel.labels.json │ │ ├── r130.commentOnly.directives.labels.json │ │ ├── r140.binary.commentOnly.directives.intel.labels.json │ │ ├── r140.binary.commentOnly.directives.labels.json │ │ ├── r140.commentOnly.directives.intel.labels.json │ │ ├── r140.commentOnly.directives.labels.json │ │ ├── r170.binary.commentOnly.directives.intel.labels.json │ │ ├── r170.binary.commentOnly.directives.labels.json │ │ ├── r170.commentOnly.directives.intel.labels.json │ │ ├── r170.commentOnly.directives.labels.json │ │ ├── r190.binary.commentOnly.directives.intel.labels.json │ │ ├── r190.binary.commentOnly.directives.labels.json │ │ ├── r190.commentOnly.directives.intel.labels.json │ │ ├── r190.commentOnly.directives.labels.json │ │ └── test.rs └── remote-test.py ├── update_compilers ├── common.inc ├── install_arm_compilers.sh ├── install_binaries.sh ├── install_compilers.sh ├── install_libraries.sh └── install_nonfree_compilers.sh └── windows ├── Msvce.psm1 ├── README.md ├── files ├── Dockerfile.template ├── compiler-explorer.properties ├── cookie_policy.html ├── privacy_policy.html └── python.properties ├── msvce-config-schema.json └── msvce-config.json /.claude/agents/compiler-explorer-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.claude/agents/compiler-explorer-architect.md -------------------------------------------------------------------------------- /.claude/agents/python-code-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.claude/agents/python-code-reviewer.md -------------------------------------------------------------------------------- /.claude/commands/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.claude/commands/commit.md -------------------------------------------------------------------------------- /.claude/commands/simplify-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.claude/commands/simplify-python.md -------------------------------------------------------------------------------- /.claude/format-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.claude/format-file.py -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/workflows/adhoc-command-lin-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/adhoc-command-lin-builder.yml -------------------------------------------------------------------------------- /.github/workflows/adhoc-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/adhoc-command.yml -------------------------------------------------------------------------------- /.github/workflows/bespoke-build-arm64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/bespoke-build-arm64.yaml -------------------------------------------------------------------------------- /.github/workflows/bespoke-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/bespoke-build.yaml -------------------------------------------------------------------------------- /.github/workflows/check-build-requirements-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/check-build-requirements-comment.yml -------------------------------------------------------------------------------- /.github/workflows/check-build-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/check-build-requirements.yml -------------------------------------------------------------------------------- /.github/workflows/compiler-discovery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/compiler-discovery.yml -------------------------------------------------------------------------------- /.github/workflows/consolidate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/consolidate.yml -------------------------------------------------------------------------------- /.github/workflows/install-nightly-compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/install-nightly-compilers.yaml -------------------------------------------------------------------------------- /.github/workflows/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/install.yml -------------------------------------------------------------------------------- /.github/workflows/lin-lib-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/lin-lib-build.yaml -------------------------------------------------------------------------------- /.github/workflows/package-ms-compiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/package-ms-compiler.yaml -------------------------------------------------------------------------------- /.github/workflows/python-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/python-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/scheduled-lin-lib-builds-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/scheduled-lin-lib-builds-full.yaml -------------------------------------------------------------------------------- /.github/workflows/scheduled-lin-lib-builds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/scheduled-lin-lib-builds.yaml -------------------------------------------------------------------------------- /.github/workflows/scheduled-win-lib-builds-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/scheduled-win-lib-builds-full.yaml -------------------------------------------------------------------------------- /.github/workflows/scheduled-win-lib-builds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/scheduled-win-lib-builds.yaml -------------------------------------------------------------------------------- /.github/workflows/start_staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/start_staging.yml -------------------------------------------------------------------------------- /.github/workflows/win-lib-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.github/workflows/win-lib-build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/infra.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/infra.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/ce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/runConfigurations/ce.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/ce_install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/runConfigurations/ce_install.xml -------------------------------------------------------------------------------- /.idea/terraform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/terraform.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.ozy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.ozy.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.pylintrc -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.vscode/launch_debug_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.vscode/launch_debug_example.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /BuildingCompilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/BuildingCompilers.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/README.md -------------------------------------------------------------------------------- /admin-daily-builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin-daily-builds.sh -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- 1 | buildStatus.json 2 | -------------------------------------------------------------------------------- /admin/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/503.html -------------------------------------------------------------------------------- /admin/builds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/builds.html -------------------------------------------------------------------------------- /admin/fish_prompt.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/fish_prompt.fish -------------------------------------------------------------------------------- /admin/knockout-3.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/knockout-3.4.2.js -------------------------------------------------------------------------------- /admin/libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/libraries.html -------------------------------------------------------------------------------- /admin/simpleGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/simpleGrid.js -------------------------------------------------------------------------------- /admin/status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/status.css -------------------------------------------------------------------------------- /admin/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/status.html -------------------------------------------------------------------------------- /admin/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/admin/status.js -------------------------------------------------------------------------------- /analytics/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/.eslintignore -------------------------------------------------------------------------------- /analytics/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/.eslintrc -------------------------------------------------------------------------------- /analytics/compilestats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/compilestats.js -------------------------------------------------------------------------------- /analytics/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/install.sh -------------------------------------------------------------------------------- /analytics/lib/compiler-arguments-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/lib/compiler-arguments-writer.js -------------------------------------------------------------------------------- /analytics/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/lib/logger.js -------------------------------------------------------------------------------- /analytics/lib/s3-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/lib/s3-handler.js -------------------------------------------------------------------------------- /analytics/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/package-lock.json -------------------------------------------------------------------------------- /analytics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/package.json -------------------------------------------------------------------------------- /analytics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/analytics/readme.md -------------------------------------------------------------------------------- /bin/bin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/bin.iml -------------------------------------------------------------------------------- /bin/ce: -------------------------------------------------------------------------------- 1 | scripts/python_shim -------------------------------------------------------------------------------- /bin/ce_install: -------------------------------------------------------------------------------- 1 | scripts/python_shim -------------------------------------------------------------------------------- /bin/check_build_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/check_build_requirements.py -------------------------------------------------------------------------------- /bin/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/lib/amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/amazon.py -------------------------------------------------------------------------------- /bin/lib/amazon_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/amazon_properties.py -------------------------------------------------------------------------------- /bin/lib/aws_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/aws_utils.py -------------------------------------------------------------------------------- /bin/lib/binary_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/binary_info.py -------------------------------------------------------------------------------- /bin/lib/blue_green_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/blue_green_deploy.py -------------------------------------------------------------------------------- /bin/lib/build_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/build_check.py -------------------------------------------------------------------------------- /bin/lib/builds_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/builds_core.py -------------------------------------------------------------------------------- /bin/lib/cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cdn.py -------------------------------------------------------------------------------- /bin/lib/ce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/ce.py -------------------------------------------------------------------------------- /bin/lib/ce_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/ce_install.py -------------------------------------------------------------------------------- /bin/lib/ce_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/ce_utils.py -------------------------------------------------------------------------------- /bin/lib/cefs/consolidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/consolidation.py -------------------------------------------------------------------------------- /bin/lib/cefs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/constants.py -------------------------------------------------------------------------------- /bin/lib/cefs/conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/conversion.py -------------------------------------------------------------------------------- /bin/lib/cefs/deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/deployment.py -------------------------------------------------------------------------------- /bin/lib/cefs/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/formatting.py -------------------------------------------------------------------------------- /bin/lib/cefs/fsck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/fsck.py -------------------------------------------------------------------------------- /bin/lib/cefs/gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/gc.py -------------------------------------------------------------------------------- /bin/lib/cefs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/models.py -------------------------------------------------------------------------------- /bin/lib/cefs/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/paths.py -------------------------------------------------------------------------------- /bin/lib/cefs/repair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/repair.py -------------------------------------------------------------------------------- /bin/lib/cefs/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/state.py -------------------------------------------------------------------------------- /bin/lib/cefs/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs/unpack.py -------------------------------------------------------------------------------- /bin/lib/cefs_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cefs_manifest.py -------------------------------------------------------------------------------- /bin/lib/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/__init__.py -------------------------------------------------------------------------------- /bin/lib/cli/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/admin.py -------------------------------------------------------------------------------- /bin/lib/cli/ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/ads.py -------------------------------------------------------------------------------- /bin/lib/cli/blue_green.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/blue_green.py -------------------------------------------------------------------------------- /bin/lib/cli/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/builder.py -------------------------------------------------------------------------------- /bin/lib/cli/builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/builds.py -------------------------------------------------------------------------------- /bin/lib/cli/ce_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/ce_router.py -------------------------------------------------------------------------------- /bin/lib/cli/ce_router_killswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/ce_router_killswitch.py -------------------------------------------------------------------------------- /bin/lib/cli/cefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/cefs.py -------------------------------------------------------------------------------- /bin/lib/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/cli.py -------------------------------------------------------------------------------- /bin/lib/cli/compiler_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/compiler_routing.py -------------------------------------------------------------------------------- /bin/lib/cli/compiler_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/compiler_stats.py -------------------------------------------------------------------------------- /bin/lib/cli/conan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/conan.py -------------------------------------------------------------------------------- /bin/lib/cli/cpp_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/cpp_libraries.py -------------------------------------------------------------------------------- /bin/lib/cli/decorations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/decorations.py -------------------------------------------------------------------------------- /bin/lib/cli/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/environment.py -------------------------------------------------------------------------------- /bin/lib/cli/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/events.py -------------------------------------------------------------------------------- /bin/lib/cli/fortran_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/fortran_libraries.py -------------------------------------------------------------------------------- /bin/lib/cli/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/instances.py -------------------------------------------------------------------------------- /bin/lib/cli/library_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/library_stats.py -------------------------------------------------------------------------------- /bin/lib/cli/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/links.py -------------------------------------------------------------------------------- /bin/lib/cli/motd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/motd.py -------------------------------------------------------------------------------- /bin/lib/cli/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/runner.py -------------------------------------------------------------------------------- /bin/lib/cli/smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/smb.py -------------------------------------------------------------------------------- /bin/lib/cli/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/tools.py -------------------------------------------------------------------------------- /bin/lib/cli/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cli/workflows.py -------------------------------------------------------------------------------- /bin/lib/cloudfront_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cloudfront_config.py -------------------------------------------------------------------------------- /bin/lib/cloudfront_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/cloudfront_utils.py -------------------------------------------------------------------------------- /bin/lib/compiler_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/compiler_routing.py -------------------------------------------------------------------------------- /bin/lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/config.py -------------------------------------------------------------------------------- /bin/lib/config_expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/config_expand.py -------------------------------------------------------------------------------- /bin/lib/config_safe_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/config_safe_loader.py -------------------------------------------------------------------------------- /bin/lib/deployment_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/deployment_utils.py -------------------------------------------------------------------------------- /bin/lib/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/discovery.py -------------------------------------------------------------------------------- /bin/lib/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/env.py -------------------------------------------------------------------------------- /bin/lib/fortran_library_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/fortran_library_builder.py -------------------------------------------------------------------------------- /bin/lib/golang_stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/golang_stdlib.py -------------------------------------------------------------------------------- /bin/lib/installable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/lib/installable/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/archives.py -------------------------------------------------------------------------------- /bin/lib/installable/edg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/edg.py -------------------------------------------------------------------------------- /bin/lib/installable/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/git.py -------------------------------------------------------------------------------- /bin/lib/installable/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/go.py -------------------------------------------------------------------------------- /bin/lib/installable/installable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/installable.py -------------------------------------------------------------------------------- /bin/lib/installable/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/python.py -------------------------------------------------------------------------------- /bin/lib/installable/rust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/rust.py -------------------------------------------------------------------------------- /bin/lib/installable/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/script.py -------------------------------------------------------------------------------- /bin/lib/installable/solidity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installable/solidity.py -------------------------------------------------------------------------------- /bin/lib/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installation.py -------------------------------------------------------------------------------- /bin/lib/installation_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/installation_context.py -------------------------------------------------------------------------------- /bin/lib/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/instance.py -------------------------------------------------------------------------------- /bin/lib/library_build_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/library_build_config.py -------------------------------------------------------------------------------- /bin/lib/library_build_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/library_build_history.py -------------------------------------------------------------------------------- /bin/lib/library_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/library_builder.py -------------------------------------------------------------------------------- /bin/lib/library_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/library_platform.py -------------------------------------------------------------------------------- /bin/lib/library_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/library_props.py -------------------------------------------------------------------------------- /bin/lib/library_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/library_yaml.py -------------------------------------------------------------------------------- /bin/lib/list_compilers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/list_compilers.py -------------------------------------------------------------------------------- /bin/lib/log_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/log_to_json.py -------------------------------------------------------------------------------- /bin/lib/nightly_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/nightly_versions.py -------------------------------------------------------------------------------- /bin/lib/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/notify.py -------------------------------------------------------------------------------- /bin/lib/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/releases.py -------------------------------------------------------------------------------- /bin/lib/rust_crates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/rust_crates.py -------------------------------------------------------------------------------- /bin/lib/rust_library_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/rust_library_builder.py -------------------------------------------------------------------------------- /bin/lib/squashfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/squashfs.py -------------------------------------------------------------------------------- /bin/lib/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/ssh.py -------------------------------------------------------------------------------- /bin/lib/staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/lib/staging.py -------------------------------------------------------------------------------- /bin/list_compilers: -------------------------------------------------------------------------------- 1 | scripts/python_shim -------------------------------------------------------------------------------- /bin/log_to_json: -------------------------------------------------------------------------------- 1 | scripts/python_shim -------------------------------------------------------------------------------- /bin/resources/XercesVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/resources/XercesVersion.hpp -------------------------------------------------------------------------------- /bin/resources/Xerces_autoconf_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/resources/Xerces_autoconf_config.hpp -------------------------------------------------------------------------------- /bin/resources/catch_user_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/resources/catch_user_config.hpp -------------------------------------------------------------------------------- /bin/resources/curl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/resources/curl_config.h -------------------------------------------------------------------------------- /bin/resources/googlebenchmark_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/resources/googlebenchmark_export.h -------------------------------------------------------------------------------- /bin/resources/mfem_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/resources/mfem_config.hpp -------------------------------------------------------------------------------- /bin/scripts/python_shim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/scripts/python_shim -------------------------------------------------------------------------------- /bin/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/test/ads_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/ads_test.py -------------------------------------------------------------------------------- /bin/test/amazon_properties_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/amazon_properties_test.py -------------------------------------------------------------------------------- /bin/test/build_check_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/build_check_test.py -------------------------------------------------------------------------------- /bin/test/ce_install_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/ce_install_test.py -------------------------------------------------------------------------------- /bin/test/cefs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/test/cefs/consolidation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/consolidation_test.py -------------------------------------------------------------------------------- /bin/test/cefs/deployment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/deployment_test.py -------------------------------------------------------------------------------- /bin/test/cefs/formatting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/formatting_test.py -------------------------------------------------------------------------------- /bin/test/cefs/gc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/gc_test.py -------------------------------------------------------------------------------- /bin/test/cefs/manifest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/manifest_test.py -------------------------------------------------------------------------------- /bin/test/cefs/paths_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/paths_test.py -------------------------------------------------------------------------------- /bin/test/cefs/repair_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/repair_test.py -------------------------------------------------------------------------------- /bin/test/cefs/state_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/state_test.py -------------------------------------------------------------------------------- /bin/test/cefs/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/test_helpers.py -------------------------------------------------------------------------------- /bin/test/cefs/unpack_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cefs/unpack_test.py -------------------------------------------------------------------------------- /bin/test/cli/ce_router_killswitch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cli/ce_router_killswitch_test.py -------------------------------------------------------------------------------- /bin/test/cli/workflows_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cli/workflows_test.py -------------------------------------------------------------------------------- /bin/test/cloudfront_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/cloudfront_utils_test.py -------------------------------------------------------------------------------- /bin/test/compiler_routing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/compiler_routing_test.py -------------------------------------------------------------------------------- /bin/test/config_expand_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/config_expand_test.py -------------------------------------------------------------------------------- /bin/test/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/config_test.py -------------------------------------------------------------------------------- /bin/test/deployment_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/deployment_utils_test.py -------------------------------------------------------------------------------- /bin/test/fortran_library_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/fortran_library_builder_test.py -------------------------------------------------------------------------------- /bin/test/fortran_library_props_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/fortran_library_props_test.py -------------------------------------------------------------------------------- /bin/test/installable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/test/installable/git_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/installable/git_test.py -------------------------------------------------------------------------------- /bin/test/installable/go_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/installable/go_test.py -------------------------------------------------------------------------------- /bin/test/installable/installable_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/installable/installable_test.py -------------------------------------------------------------------------------- /bin/test/installation_context_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/installation_context_test.py -------------------------------------------------------------------------------- /bin/test/installation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/installation_test.py -------------------------------------------------------------------------------- /bin/test/library_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/library_builder_test.py -------------------------------------------------------------------------------- /bin/test/library_props_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/library_props_test.py -------------------------------------------------------------------------------- /bin/test/notify_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/notify_test.py -------------------------------------------------------------------------------- /bin/test/releases_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/releases_test.py -------------------------------------------------------------------------------- /bin/test/runner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/runner_test.py -------------------------------------------------------------------------------- /bin/test/rust_library_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/rust_library_builder_test.py -------------------------------------------------------------------------------- /bin/test/test_instances_blue_green.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/test_instances_blue_green.py -------------------------------------------------------------------------------- /bin/test/test_instances_isolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/test_instances_isolate.py -------------------------------------------------------------------------------- /bin/test/test_squashfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/test/test_squashfs.py -------------------------------------------------------------------------------- /bin/yaml/ada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/ada.yaml -------------------------------------------------------------------------------- /bin/yaml/algol68.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/algol68.yaml -------------------------------------------------------------------------------- /bin/yaml/android-java.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/android-java.yaml -------------------------------------------------------------------------------- /bin/yaml/android-java/create_boot_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/android-java/create_boot_images.sh -------------------------------------------------------------------------------- /bin/yaml/android-java/create_boot_images_old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/android-java/create_boot_images_old.sh -------------------------------------------------------------------------------- /bin/yaml/android-java/fetch_android_jar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/android-java/fetch_android_jar.sh -------------------------------------------------------------------------------- /bin/yaml/android-java/fetch_art_release_from_head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/android-java/fetch_art_release_from_head.sh -------------------------------------------------------------------------------- /bin/yaml/asm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/asm.yaml -------------------------------------------------------------------------------- /bin/yaml/c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/c.yaml -------------------------------------------------------------------------------- /bin/yaml/c3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/c3.yaml -------------------------------------------------------------------------------- /bin/yaml/carbon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/carbon.yaml -------------------------------------------------------------------------------- /bin/yaml/circle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/circle.yaml -------------------------------------------------------------------------------- /bin/yaml/circt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/circt.yaml -------------------------------------------------------------------------------- /bin/yaml/clean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/clean.yaml -------------------------------------------------------------------------------- /bin/yaml/clojure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/clojure.yaml -------------------------------------------------------------------------------- /bin/yaml/cobol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/cobol.yaml -------------------------------------------------------------------------------- /bin/yaml/cpp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/cpp.yaml -------------------------------------------------------------------------------- /bin/yaml/cppfront.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/cppfront.yaml -------------------------------------------------------------------------------- /bin/yaml/crystal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/crystal.yaml -------------------------------------------------------------------------------- /bin/yaml/cuda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/cuda.yaml -------------------------------------------------------------------------------- /bin/yaml/d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/d.yaml -------------------------------------------------------------------------------- /bin/yaml/dart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/dart.yaml -------------------------------------------------------------------------------- /bin/yaml/dotnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/dotnet.yaml -------------------------------------------------------------------------------- /bin/yaml/erlang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/erlang.yaml -------------------------------------------------------------------------------- /bin/yaml/fortran.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/fortran.yaml -------------------------------------------------------------------------------- /bin/yaml/gimple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/gimple.yaml -------------------------------------------------------------------------------- /bin/yaml/glsl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/glsl.yaml -------------------------------------------------------------------------------- /bin/yaml/go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/go.yaml -------------------------------------------------------------------------------- /bin/yaml/haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/haskell.yaml -------------------------------------------------------------------------------- /bin/yaml/helion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/helion.yaml -------------------------------------------------------------------------------- /bin/yaml/hlsl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/hlsl.yaml -------------------------------------------------------------------------------- /bin/yaml/hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/hook.yaml -------------------------------------------------------------------------------- /bin/yaml/hylo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/hylo.yaml -------------------------------------------------------------------------------- /bin/yaml/ispc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/ispc.yaml -------------------------------------------------------------------------------- /bin/yaml/jakt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/jakt.yaml -------------------------------------------------------------------------------- /bin/yaml/java.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/java.yaml -------------------------------------------------------------------------------- /bin/yaml/javascript.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/javascript.yaml -------------------------------------------------------------------------------- /bin/yaml/julia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/julia.yaml -------------------------------------------------------------------------------- /bin/yaml/khronos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/khronos.yaml -------------------------------------------------------------------------------- /bin/yaml/kotlin-native.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/kotlin-native.yaml -------------------------------------------------------------------------------- /bin/yaml/kotlin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/kotlin.yaml -------------------------------------------------------------------------------- /bin/yaml/libraries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/libraries.yaml -------------------------------------------------------------------------------- /bin/yaml/micropython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/micropython.yaml -------------------------------------------------------------------------------- /bin/yaml/mojo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/mojo.yaml -------------------------------------------------------------------------------- /bin/yaml/nim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/nim.yaml -------------------------------------------------------------------------------- /bin/yaml/nix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/nix.yaml -------------------------------------------------------------------------------- /bin/yaml/numba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/numba.yaml -------------------------------------------------------------------------------- /bin/yaml/ocaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/ocaml.yaml -------------------------------------------------------------------------------- /bin/yaml/odin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/odin.yaml -------------------------------------------------------------------------------- /bin/yaml/pascal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/pascal.yaml -------------------------------------------------------------------------------- /bin/yaml/pascal/fpc-trunk.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/pascal/fpc-trunk.cfg -------------------------------------------------------------------------------- /bin/yaml/pascal/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/pascal/fpc.cfg -------------------------------------------------------------------------------- /bin/yaml/pascal/install_fpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/pascal/install_fpc.sh -------------------------------------------------------------------------------- /bin/yaml/pony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/pony.yaml -------------------------------------------------------------------------------- /bin/yaml/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/python.yaml -------------------------------------------------------------------------------- /bin/yaml/pythran.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/pythran.yaml -------------------------------------------------------------------------------- /bin/yaml/racket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/racket.yaml -------------------------------------------------------------------------------- /bin/yaml/raku.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/raku.yaml -------------------------------------------------------------------------------- /bin/yaml/ruby.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/ruby.yaml -------------------------------------------------------------------------------- /bin/yaml/rust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/rust.yaml -------------------------------------------------------------------------------- /bin/yaml/sail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/sail.yaml -------------------------------------------------------------------------------- /bin/yaml/scala.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/scala.yaml -------------------------------------------------------------------------------- /bin/yaml/slang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/slang.yaml -------------------------------------------------------------------------------- /bin/yaml/snowball.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/snowball.yaml -------------------------------------------------------------------------------- /bin/yaml/solidity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/solidity.yaml -------------------------------------------------------------------------------- /bin/yaml/spice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/spice.yaml -------------------------------------------------------------------------------- /bin/yaml/sway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/sway.yaml -------------------------------------------------------------------------------- /bin/yaml/swift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/swift.yaml -------------------------------------------------------------------------------- /bin/yaml/toit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/toit.yaml -------------------------------------------------------------------------------- /bin/yaml/tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/tools.yaml -------------------------------------------------------------------------------- /bin/yaml/triton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/triton.yaml -------------------------------------------------------------------------------- /bin/yaml/typescript.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/typescript.yaml -------------------------------------------------------------------------------- /bin/yaml/v.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/v.yaml -------------------------------------------------------------------------------- /bin/yaml/vala.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/vala.yaml -------------------------------------------------------------------------------- /bin/yaml/vyper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/vyper.yaml -------------------------------------------------------------------------------- /bin/yaml/wasm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/wasm.yaml -------------------------------------------------------------------------------- /bin/yaml/windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/windows.yaml -------------------------------------------------------------------------------- /bin/yaml/ygen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/ygen.yaml -------------------------------------------------------------------------------- /bin/yaml/zig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/bin/yaml/zig.yaml -------------------------------------------------------------------------------- /ce_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/ce_install.ps1 -------------------------------------------------------------------------------- /conan/switch-to-ce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/conan/switch-to-ce.sh -------------------------------------------------------------------------------- /conan/switch-to-default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/conan/switch-to-default.sh -------------------------------------------------------------------------------- /cost-reports/CostReportJune2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/cost-reports/CostReportJune2025.md -------------------------------------------------------------------------------- /crontab.admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/crontab.admin -------------------------------------------------------------------------------- /crontab.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/crontab.builder -------------------------------------------------------------------------------- /crontab.root.admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/crontab.root.admin -------------------------------------------------------------------------------- /docs/aarch64_execution_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/aarch64_execution_workflow.md -------------------------------------------------------------------------------- /docs/adding_msvc_compilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/adding_msvc_compilers.md -------------------------------------------------------------------------------- /docs/adding_rust_crates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/adding_rust_crates.md -------------------------------------------------------------------------------- /docs/aws_architecture_blue_green.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/aws_architecture_blue_green.md -------------------------------------------------------------------------------- /docs/aws_architecture_current.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/aws_architecture_current.md -------------------------------------------------------------------------------- /docs/aws_architecture_visual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/aws_architecture_visual.md -------------------------------------------------------------------------------- /docs/blue_green_deployment_strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/blue_green_deployment_strategy.md -------------------------------------------------------------------------------- /docs/ce_install_yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/ce_install_yaml.md -------------------------------------------------------------------------------- /docs/cefs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/cefs.md -------------------------------------------------------------------------------- /docs/colored-queues-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/colored-queues-implementation.md -------------------------------------------------------------------------------- /docs/cpp_library_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/cpp_library_commands.md -------------------------------------------------------------------------------- /docs/filter-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/filter-system.md -------------------------------------------------------------------------------- /docs/fortran_library_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/fortran_library_commands.md -------------------------------------------------------------------------------- /docs/gh_runner_debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/gh_runner_debugging.md -------------------------------------------------------------------------------- /docs/installing_compilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/installing_compilers.md -------------------------------------------------------------------------------- /docs/lambda_compilation_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/lambda_compilation_workflow.md -------------------------------------------------------------------------------- /docs/nsjail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/nsjail.md -------------------------------------------------------------------------------- /docs/oidc_third_party_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/oidc_third_party_access.md -------------------------------------------------------------------------------- /docs/packaging_qnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/packaging_qnx.md -------------------------------------------------------------------------------- /docs/release_new_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/release_new_version.md -------------------------------------------------------------------------------- /docs/resizing_conan_disk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/resizing_conan_disk.md -------------------------------------------------------------------------------- /docs/sqs_scaling_aarch64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/sqs_scaling_aarch64.md -------------------------------------------------------------------------------- /docs/updating_asm-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/updating_asm-parser.md -------------------------------------------------------------------------------- /docs/windows_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/windows_architecture.md -------------------------------------------------------------------------------- /docs/windows_library_builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/docs/windows_library_builder.md -------------------------------------------------------------------------------- /events-lambda/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/.eslintrc.yml -------------------------------------------------------------------------------- /events-lambda/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/.prettierrc.cjs -------------------------------------------------------------------------------- /events-lambda/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/config.js -------------------------------------------------------------------------------- /events-lambda/events-connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/events-connections.js -------------------------------------------------------------------------------- /events-lambda/events-onconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/events-onconnect.js -------------------------------------------------------------------------------- /events-lambda/events-ondisconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/events-ondisconnect.js -------------------------------------------------------------------------------- /events-lambda/events-sendmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/events-sendmessage.js -------------------------------------------------------------------------------- /events-lambda/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/package-lock.json -------------------------------------------------------------------------------- /events-lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/package.json -------------------------------------------------------------------------------- /events-lambda/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/events-lambda/readme.md -------------------------------------------------------------------------------- /gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/gcc.md -------------------------------------------------------------------------------- /grafana/agent-win.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/grafana/agent-win.yaml -------------------------------------------------------------------------------- /grafana/agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/grafana/agent.yaml -------------------------------------------------------------------------------- /grafana/ce-metrics.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/grafana/ce-metrics.service -------------------------------------------------------------------------------- /grafana/grafana-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/grafana/grafana-agent.service -------------------------------------------------------------------------------- /grafana/make-config-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/grafana/make-config-admin.sh -------------------------------------------------------------------------------- /grafana/make-config-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/grafana/make-config-ci.sh -------------------------------------------------------------------------------- /grafana/make-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/grafana/make-config.sh -------------------------------------------------------------------------------- /grafana/update-metrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/grafana/update-metrics.sh -------------------------------------------------------------------------------- /init/ce-conan.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/ce-conan.service -------------------------------------------------------------------------------- /init/ce-router.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/ce-router.service -------------------------------------------------------------------------------- /init/compiler-explorer.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/compiler-explorer.service -------------------------------------------------------------------------------- /init/do-discovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/do-discovery.sh -------------------------------------------------------------------------------- /init/log-instance-id.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/log-instance-id.service -------------------------------------------------------------------------------- /init/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/run.ps1 -------------------------------------------------------------------------------- /init/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/settings.yml -------------------------------------------------------------------------------- /init/start-builder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/start-builder.ps1 -------------------------------------------------------------------------------- /init/start-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/start-builder.sh -------------------------------------------------------------------------------- /init/start-conan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/start-conan.sh -------------------------------------------------------------------------------- /init/start-router.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/start-router.sh -------------------------------------------------------------------------------- /init/start.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/start.ps1 -------------------------------------------------------------------------------- /init/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/init/start.sh -------------------------------------------------------------------------------- /lambda/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /lambda/alert_on_elb_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/alert_on_elb_instance.py -------------------------------------------------------------------------------- /lambda/alert_on_elb_instance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/alert_on_elb_instance_test.py -------------------------------------------------------------------------------- /lambda/cloudwatch_to_discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/cloudwatch_to_discord.py -------------------------------------------------------------------------------- /lambda/cloudwatch_to_discord_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/cloudwatch_to_discord_test.py -------------------------------------------------------------------------------- /lambda/get_deployed_exe_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/get_deployed_exe_version.py -------------------------------------------------------------------------------- /lambda/get_remote_execution_archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/get_remote_execution_archs.py -------------------------------------------------------------------------------- /lambda/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/pyproject.toml -------------------------------------------------------------------------------- /lambda/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/stats.py -------------------------------------------------------------------------------- /lambda/stats_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/stats_test.py -------------------------------------------------------------------------------- /lambda/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/status.py -------------------------------------------------------------------------------- /lambda/status_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/status_test.py -------------------------------------------------------------------------------- /lambda/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/lambda/uv.lock -------------------------------------------------------------------------------- /logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/README.md -------------------------------------------------------------------------------- /logo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/favicon.png -------------------------------------------------------------------------------- /logo/favicon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/favicon.xcf -------------------------------------------------------------------------------- /logo/icon/CompilerExplorer Logo Icon AI.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/icon/CompilerExplorer Logo Icon AI.ai -------------------------------------------------------------------------------- /logo/icon/CompilerExplorer Logo Icon EPS.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/icon/CompilerExplorer Logo Icon EPS.eps -------------------------------------------------------------------------------- /logo/icon/CompilerExplorer Logo Icon JPEG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/icon/CompilerExplorer Logo Icon JPEG.jpg -------------------------------------------------------------------------------- /logo/icon/CompilerExplorer Logo Icon PDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/icon/CompilerExplorer Logo Icon PDF.pdf -------------------------------------------------------------------------------- /logo/icon/CompilerExplorer Logo Icon PNG (transparent_bg).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/icon/CompilerExplorer Logo Icon PNG (transparent_bg).png -------------------------------------------------------------------------------- /logo/icon/CompilerExplorer Logo Icon PSD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/icon/CompilerExplorer Logo Icon PSD.psd -------------------------------------------------------------------------------- /logo/icon/CompilerExplorer Logo Icon SVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/icon/CompilerExplorer Logo Icon SVG.svg -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b AI.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b AI.ai -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b EPS.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b EPS.eps -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b JPEG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b JPEG.jpg -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b PDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b PDF.pdf -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b PSD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b PSD.psd -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b SVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/Black/CompilerExplorer v1b SVG.svg -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w AI.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w AI.ai -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w EPS.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w EPS.eps -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w JPEG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w JPEG.jpg -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w PDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w PDF.pdf -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w PSD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w PSD.psd -------------------------------------------------------------------------------- /logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w SVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Primary (vertical)/White/CompilerExplorer v1w SVG.svg -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b AI.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b AI.ai -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b EPS.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b EPS.eps -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b JPEG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b JPEG.jpg -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b PDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b PDF.pdf -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b PSD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b PSD.psd -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b SVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/Black/CompilerExplorer v2b SVG.svg -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w AI.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w AI.ai -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w EPS.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w EPS.eps -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w JPEG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w JPEG.jpg -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w PDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w PDF.pdf -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w PSD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w PSD.psd -------------------------------------------------------------------------------- /logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w SVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/monochrome/Secondary (horizontal)/White/CompilerExplorer v2w SVG.svg -------------------------------------------------------------------------------- /logo/primary/CompilerExplorer v1 AI.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/primary/CompilerExplorer v1 AI.ai -------------------------------------------------------------------------------- /logo/primary/CompilerExplorer v1 EPS.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/primary/CompilerExplorer v1 EPS.eps -------------------------------------------------------------------------------- /logo/primary/CompilerExplorer v1 JPEG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/primary/CompilerExplorer v1 JPEG.jpg -------------------------------------------------------------------------------- /logo/primary/CompilerExplorer v1 PDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/primary/CompilerExplorer v1 PDF.pdf -------------------------------------------------------------------------------- /logo/primary/CompilerExplorer v1 PNG (transparent_bg).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/primary/CompilerExplorer v1 PNG (transparent_bg).png -------------------------------------------------------------------------------- /logo/primary/CompilerExplorer v1 PSD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/primary/CompilerExplorer v1 PSD.psd -------------------------------------------------------------------------------- /logo/primary/CompilerExplorer v1 SVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/primary/CompilerExplorer v1 SVG.svg -------------------------------------------------------------------------------- /logo/secondary/CompilerExplorer v2 AI.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/secondary/CompilerExplorer v2 AI.ai -------------------------------------------------------------------------------- /logo/secondary/CompilerExplorer v2 EPS.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/secondary/CompilerExplorer v2 EPS.eps -------------------------------------------------------------------------------- /logo/secondary/CompilerExplorer v2 JPEG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/secondary/CompilerExplorer v2 JPEG.jpg -------------------------------------------------------------------------------- /logo/secondary/CompilerExplorer v2 PDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/secondary/CompilerExplorer v2 PDF.pdf -------------------------------------------------------------------------------- /logo/secondary/CompilerExplorer v2 PNG (transparent_bg).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/secondary/CompilerExplorer v2 PNG (transparent_bg).png -------------------------------------------------------------------------------- /logo/secondary/CompilerExplorer v2 PSD.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/secondary/CompilerExplorer v2 PSD.psd -------------------------------------------------------------------------------- /logo/secondary/CompilerExplorer v2 SVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/secondary/CompilerExplorer v2 SVG.svg -------------------------------------------------------------------------------- /logo/site-logo-beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/site-logo-beta.svg -------------------------------------------------------------------------------- /logo/site-logo-inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/site-logo-inverse.svg -------------------------------------------------------------------------------- /logo/site-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/logo/site-logo.svg -------------------------------------------------------------------------------- /make_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/make_json.py -------------------------------------------------------------------------------- /msvc-install/gen-props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/msvc-install/gen-props.py -------------------------------------------------------------------------------- /msvc-install/gh-msvc-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/msvc-install/gh-msvc-install.ps1 -------------------------------------------------------------------------------- /msvc-install/msvc2019-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/msvc-install/msvc2019-install.ps1 -------------------------------------------------------------------------------- /msvc-install/msvc2022-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/msvc-install/msvc2022-install.ps1 -------------------------------------------------------------------------------- /mugs/arm32_eabi_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/arm32_eabi_mug.png -------------------------------------------------------------------------------- /mugs/arm32_eabi_mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/arm32_eabi_mug.svg -------------------------------------------------------------------------------- /mugs/arm64_abi_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/arm64_abi_mug.png -------------------------------------------------------------------------------- /mugs/arm64_abi_mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/arm64_abi_mug.svg -------------------------------------------------------------------------------- /mugs/arm64_go_abi_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/arm64_go_abi_mug.png -------------------------------------------------------------------------------- /mugs/arm64_go_abi_mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/arm64_go_abi_mug.svg -------------------------------------------------------------------------------- /mugs/core/__init__.py: -------------------------------------------------------------------------------- 1 | # Core modules for mug generation 2 | -------------------------------------------------------------------------------- /mugs/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/core/constants.py -------------------------------------------------------------------------------- /mugs/core/data_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/core/data_structures.py -------------------------------------------------------------------------------- /mugs/core/layout_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/core/layout_engine.py -------------------------------------------------------------------------------- /mugs/core/svg_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/core/svg_generation.py -------------------------------------------------------------------------------- /mugs/core/text_measurement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/core/text_measurement.py -------------------------------------------------------------------------------- /mugs/generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/generators/__init__.py -------------------------------------------------------------------------------- /mugs/generators/arm32_eabi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/generators/arm32_eabi.py -------------------------------------------------------------------------------- /mugs/generators/arm64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/generators/arm64.py -------------------------------------------------------------------------------- /mugs/generators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/generators/base.py -------------------------------------------------------------------------------- /mugs/generators/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/generators/go.py -------------------------------------------------------------------------------- /mugs/generators/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/generators/msvc.py -------------------------------------------------------------------------------- /mugs/generators/riscv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/generators/riscv.py -------------------------------------------------------------------------------- /mugs/generators/systemv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/generators/systemv.py -------------------------------------------------------------------------------- /mugs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/index.html -------------------------------------------------------------------------------- /mugs/make_arm32_eabi_mug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/make_arm32_eabi_mug.py -------------------------------------------------------------------------------- /mugs/make_arm64_go_mug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/make_arm64_go_mug.py -------------------------------------------------------------------------------- /mugs/make_arm64_mug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/make_arm64_mug.py -------------------------------------------------------------------------------- /mugs/make_riscv_go_mug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/make_riscv_go_mug.py -------------------------------------------------------------------------------- /mugs/make_riscv_mug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/make_riscv_mug.py -------------------------------------------------------------------------------- /mugs/make_x86_64_go_mug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/make_x86_64_go_mug.py -------------------------------------------------------------------------------- /mugs/make_x86_64_msvc_mug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/make_x86_64_msvc_mug.py -------------------------------------------------------------------------------- /mugs/make_x86_64_systemv_mug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/make_x86_64_systemv_mug.py -------------------------------------------------------------------------------- /mugs/riscv_abi_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/riscv_abi_mug.png -------------------------------------------------------------------------------- /mugs/riscv_abi_mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/riscv_abi_mug.svg -------------------------------------------------------------------------------- /mugs/riscv_go_abi_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/riscv_go_abi_mug.png -------------------------------------------------------------------------------- /mugs/riscv_go_abi_mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/riscv_go_abi_mug.svg -------------------------------------------------------------------------------- /mugs/x86_64_go_abi_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/x86_64_go_abi_mug.png -------------------------------------------------------------------------------- /mugs/x86_64_go_abi_mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/x86_64_go_abi_mug.svg -------------------------------------------------------------------------------- /mugs/x86_64_msvc_abi_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/x86_64_msvc_abi_mug.png -------------------------------------------------------------------------------- /mugs/x86_64_msvc_abi_mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/x86_64_msvc_abi_mug.svg -------------------------------------------------------------------------------- /mugs/x86_64_systemv_abi_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/x86_64_systemv_abi_mug.png -------------------------------------------------------------------------------- /mugs/x86_64_systemv_abi_mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/mugs/x86_64_systemv_abi_mug.svg -------------------------------------------------------------------------------- /nginx/ce-router.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/nginx/ce-router.conf -------------------------------------------------------------------------------- /nginx/nginx-win.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/nginx/nginx-win.conf -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /packer/InstallBuilderTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/InstallBuilderTools.ps1 -------------------------------------------------------------------------------- /packer/InstallPwsh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/InstallPwsh.ps1 -------------------------------------------------------------------------------- /packer/InstallTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/InstallTools.ps1 -------------------------------------------------------------------------------- /packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/README.md -------------------------------------------------------------------------------- /packer/SetUpWinRM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/SetUpWinRM.ps1 -------------------------------------------------------------------------------- /packer/Startup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/Startup.ps1 -------------------------------------------------------------------------------- /packer/aarch64-node.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/aarch64-node.pkr.hcl -------------------------------------------------------------------------------- /packer/admin.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/admin.pkr.hcl -------------------------------------------------------------------------------- /packer/builder.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/builder.pkr.hcl -------------------------------------------------------------------------------- /packer/ce-router.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/ce-router.pkr.hcl -------------------------------------------------------------------------------- /packer/conan.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/conan.pkr.hcl -------------------------------------------------------------------------------- /packer/gpu-node.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/gpu-node.pkr.hcl -------------------------------------------------------------------------------- /packer/known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/known_hosts -------------------------------------------------------------------------------- /packer/local.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/local.pkr.hcl -------------------------------------------------------------------------------- /packer/node.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/node.pkr.hcl -------------------------------------------------------------------------------- /packer/smb-local.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/smb-local.pkr.hcl -------------------------------------------------------------------------------- /packer/smb.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/smb.pkr.hcl -------------------------------------------------------------------------------- /packer/win.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/packer/win.pkr.hcl -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/pyproject.toml -------------------------------------------------------------------------------- /remove_old_compilers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/remove_old_compilers.sh -------------------------------------------------------------------------------- /scripts/build_lambda_deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/scripts/build_lambda_deterministic.py -------------------------------------------------------------------------------- /scripts/build_nodejs_lambda_deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/scripts/build_nodejs_lambda_deterministic.py -------------------------------------------------------------------------------- /setup-aarch64-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-aarch64-node.sh -------------------------------------------------------------------------------- /setup-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-admin.sh -------------------------------------------------------------------------------- /setup-builder-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-builder-startup.sh -------------------------------------------------------------------------------- /setup-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-builder.sh -------------------------------------------------------------------------------- /setup-ce-router.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-ce-router.sh -------------------------------------------------------------------------------- /setup-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-ci.sh -------------------------------------------------------------------------------- /setup-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-common.sh -------------------------------------------------------------------------------- /setup-conan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-conan.sh -------------------------------------------------------------------------------- /setup-gpu-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-gpu-node.sh -------------------------------------------------------------------------------- /setup-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-node.sh -------------------------------------------------------------------------------- /setup-smb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup-smb.sh -------------------------------------------------------------------------------- /setup.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/setup.fish -------------------------------------------------------------------------------- /site-aarch64prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/site-aarch64prod.sh -------------------------------------------------------------------------------- /site-aarch64staging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/site-aarch64staging.sh -------------------------------------------------------------------------------- /site-beta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/site-beta.sh -------------------------------------------------------------------------------- /site-gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/site-gpu.sh -------------------------------------------------------------------------------- /site-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/site-prod.sh -------------------------------------------------------------------------------- /site-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/site-runner.sh -------------------------------------------------------------------------------- /site-staging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/site-staging.sh -------------------------------------------------------------------------------- /smb-server/rsync-share.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/smb-server/rsync-share.sh -------------------------------------------------------------------------------- /smb-server/smb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/smb-server/smb.conf -------------------------------------------------------------------------------- /start-support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/start-support.sh -------------------------------------------------------------------------------- /static-checks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/static-checks.ps1 -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- 1 | .terraform 2 | -------------------------------------------------------------------------------- /terraform/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/aarch64-blue-green.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/aarch64-blue-green.tf -------------------------------------------------------------------------------- /terraform/acm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/acm.tf -------------------------------------------------------------------------------- /terraform/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/alb.tf -------------------------------------------------------------------------------- /terraform/apigateway_ce_pub_api.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/apigateway_ce_pub_api.tf -------------------------------------------------------------------------------- /terraform/apigateway_events_api.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/apigateway_events_api.tf -------------------------------------------------------------------------------- /terraform/asg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/asg.tf -------------------------------------------------------------------------------- /terraform/audit.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/audit.tf -------------------------------------------------------------------------------- /terraform/backups.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/backups.tf -------------------------------------------------------------------------------- /terraform/beta-blue-green.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/beta-blue-green.tf -------------------------------------------------------------------------------- /terraform/ce-router.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/ce-router.tf -------------------------------------------------------------------------------- /terraform/cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/cloudfront.tf -------------------------------------------------------------------------------- /terraform/cloudfront_conan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/cloudfront_conan.tf -------------------------------------------------------------------------------- /terraform/cloudwatch.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/cloudwatch.tf -------------------------------------------------------------------------------- /terraform/dynamodb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/dynamodb.tf -------------------------------------------------------------------------------- /terraform/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/ec2.tf -------------------------------------------------------------------------------- /terraform/efs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/efs.tf -------------------------------------------------------------------------------- /terraform/gpu-blue-green.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/gpu-blue-green.tf -------------------------------------------------------------------------------- /terraform/lambda.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/lambda.tf -------------------------------------------------------------------------------- /terraform/lambda_elfshaker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/lambda_elfshaker.tf -------------------------------------------------------------------------------- /terraform/lambda_events.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/lambda_events.tf -------------------------------------------------------------------------------- /terraform/lambda_explain.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/lambda_explain.tf -------------------------------------------------------------------------------- /terraform/lambda_nightlyversion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/lambda_nightlyversion.tf -------------------------------------------------------------------------------- /terraform/lambda_remote_archs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/lambda_remote_archs.tf -------------------------------------------------------------------------------- /terraform/lc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/lc.tf -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/.gitignore -------------------------------------------------------------------------------- /terraform/modules/blue_green/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/blue_green/main.tf -------------------------------------------------------------------------------- /terraform/modules/blue_green/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/blue_green/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/blue_green/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/blue_green/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ce_dns/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_dns/main.tf -------------------------------------------------------------------------------- /terraform/modules/ce_dns/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_dns/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ce_dns/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_dns/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ce_network/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_network/main.tf -------------------------------------------------------------------------------- /terraform/modules/ce_network/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_network/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ce_network/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_network/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ce_router/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_router/main.tf -------------------------------------------------------------------------------- /terraform/modules/ce_router/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_router/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ce_router/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/modules/ce_router/variables.tf -------------------------------------------------------------------------------- /terraform/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/network.tf -------------------------------------------------------------------------------- /terraform/prod-blue-green.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/prod-blue-green.tf -------------------------------------------------------------------------------- /terraform/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/route53.tf -------------------------------------------------------------------------------- /terraform/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/s3.tf -------------------------------------------------------------------------------- /terraform/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/security.tf -------------------------------------------------------------------------------- /terraform/sqs_worker_queues.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/sqs_worker_queues.tf -------------------------------------------------------------------------------- /terraform/staging-blue-green.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/staging-blue-green.tf -------------------------------------------------------------------------------- /terraform/temp_storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/temp_storage.tf -------------------------------------------------------------------------------- /terraform/tg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/tg.tf -------------------------------------------------------------------------------- /terraform/third_party.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/third_party.tf -------------------------------------------------------------------------------- /terraform/variables_temp_storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/variables_temp_storage.tf -------------------------------------------------------------------------------- /terraform/windows-blue-green.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/terraform/windows-blue-green.tf -------------------------------------------------------------------------------- /test/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/all.sh -------------------------------------------------------------------------------- /test/remote-cases/c++/compilers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/compilers.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/aarchg54.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/aarchg54.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/arm541.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/arm541.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/arm541.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/arm541.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/arm541.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/arm541.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/armg453.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/armg453.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/armg453.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/armg453.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/armg454.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/armg454.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/armg454.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/armg454.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/armg464.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/armg464.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/armg464.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/armg464.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/armhfg54.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/armhfg54.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/avrg453.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/avrg453.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/avrg453.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/avrg453.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/avrg454.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/avrg454.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/avrg454.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/avrg454.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/avrg464.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/avrg464.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/avrg464.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/avrg464.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang30.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang30.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang30.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang30.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang31.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang31.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang31.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang31.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang36x.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang36x.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang381.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang381.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang390.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang390.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang391.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang391.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang400.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang400.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/clang_trunk.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/clang_trunk.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/ellcc0133.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/ellcc0133.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/ellcc0134.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/ellcc0134.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g447.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g447.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g447.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g447.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g447.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g447.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g474.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g474.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g474.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g474.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g474.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g474.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g485.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g485.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g485.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g485.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g485.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g485.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g494.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g494.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g494.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g494.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g494.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g494.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g510.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g510.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g510.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g510.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g510.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g510.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g540.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g540.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g540.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g540.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g540.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g540.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g6.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g6.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g6.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g6.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g6.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g6.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g62.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g62.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g62.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g62.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g62.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g62.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g63.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g63.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g63.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g63.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g63.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g63.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/g7snapshot.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/g7snapshot.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/icc1301.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/icc1301.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/icc1301.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/icc1301.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/icc16.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/icc16.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/icc16.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/icc16.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/icc16.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/icc16.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/icc17.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/icc17.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/icc17.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/icc17.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/icc17.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/icc17.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/mips564.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/mips564.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/mips564.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/mips564.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/mips564el.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/mips564el.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/msp430g453.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/msp430g453.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/msp430g530.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/msp430g530.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/msp430g621.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/msp430g621.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/options: -------------------------------------------------------------------------------- 1 | -O2 2 | -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/ppcg48.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/ppcg48.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/ppcg48.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/ppcg48.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/ppcg48.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/ppcg48.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/test.cpp -------------------------------------------------------------------------------- /test/remote-cases/c++/sum-o2/zapcc190308.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum-o2/zapcc190308.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/aarchg54.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/aarchg54.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/aarchg54.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/aarchg54.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/aarchg54.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/aarchg54.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/arm541.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/arm541.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/arm541.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/arm541.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/arm541.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/arm541.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg453.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg453.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg453.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg453.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg453.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg453.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg454.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg454.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg454.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg454.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg454.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg454.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg464.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg464.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg464.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg464.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armg464.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armg464.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armhfg54.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armhfg54.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armhfg54.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armhfg54.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/armhfg54.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/armhfg54.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg453.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg453.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg453.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg453.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg453.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg453.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg454.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg454.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg454.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg454.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg454.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg454.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg464.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg464.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg464.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg464.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/avrg464.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/avrg464.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang30.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang30.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang30.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang30.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang30.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang30.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang31.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang31.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang31.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang31.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang31.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang31.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang36x.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang36x.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang36x.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang36x.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang36x.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang36x.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang381.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang381.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang381.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang381.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang381.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang381.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang390.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang390.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang390.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang390.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang390.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang390.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang391.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang391.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang391.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang391.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang391.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang391.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang400.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang400.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang400.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang400.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/clang_trunk.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/clang_trunk.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/ellcc0133.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/ellcc0133.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/ellcc0134.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/ellcc0134.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g447.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g447.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g447.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g447.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g447.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g447.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g474.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g474.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g474.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g474.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g474.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g474.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g485.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g485.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g485.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g485.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g485.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g485.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g494.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g494.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g494.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g494.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g494.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g494.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g510.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g510.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g510.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g510.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g510.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g510.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g540.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g540.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g540.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g540.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g540.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g540.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g6.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g6.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g6.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g6.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g6.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g6.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g62.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g62.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g62.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g62.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g62.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g62.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g63.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g63.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g63.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g63.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g63.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g63.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/g7snapshot.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/g7snapshot.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/icc1301.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/icc1301.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/icc1301.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/icc1301.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/icc16.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/icc16.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/icc16.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/icc16.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/icc16.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/icc16.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/icc17.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/icc17.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/icc17.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/icc17.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/icc17.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/icc17.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/mips564.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/mips564.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/mips564.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/mips564.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/mips564el.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/mips564el.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/mips5el.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/mips5el.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/mips5el.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/mips5el.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/msp430g453.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/msp430g453.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/msp430g530.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/msp430g530.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/msp430g621.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/msp430g621.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/ppcg48.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/ppcg48.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/ppcg48.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/ppcg48.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/ppcg48.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/ppcg48.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/test.cpp -------------------------------------------------------------------------------- /test/remote-cases/c++/sum/zapcc190308.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/c++/sum/zapcc190308.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/compilers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/compilers.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc48.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc48.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc48.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc48.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc48.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc48.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc49.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc49.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc49.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc49.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc49.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc49.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc52.binary.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc52.binary.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc52.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc52.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/gdc52.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/gdc52.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/ldc017.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/ldc017.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/ldc017.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/ldc017.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/ldc100.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/ldc100.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/ldc100.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/ldc100.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/ldc110.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/ldc110.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/ldc110.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/ldc110.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/ldcbeta.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/ldcbeta.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/d/square/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/remote-cases/d/square/test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/d/square/test.d -------------------------------------------------------------------------------- /test/remote-cases/go/compilers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/go/compilers.json -------------------------------------------------------------------------------- /test/remote-cases/go/square/6g141.commentOnly.directives.intel.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/go/square/6g141.commentOnly.directives.intel.labels.json -------------------------------------------------------------------------------- /test/remote-cases/go/square/6g141.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/go/square/6g141.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/go/square/gccgo491.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/go/square/gccgo491.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/go/square/gccgo494.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/go/square/gccgo494.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/go/square/gccgo630.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/go/square/gccgo630.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/go/square/options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/remote-cases/go/square/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/go/square/test.go -------------------------------------------------------------------------------- /test/remote-cases/rust/compilers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/compilers.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/beta.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/beta.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/nightly.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/nightly.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/options: -------------------------------------------------------------------------------- 1 | -O 2 | -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r100.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r100.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r110.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r110.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r1110.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r1110.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r1120.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r1120.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r1130.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r1130.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r1140.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r1140.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r1151.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r1151.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r1160.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r1160.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r120.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r120.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r130.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r130.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r140.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r140.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r170.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r170.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/r190.commentOnly.directives.labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/r190.commentOnly.directives.labels.json -------------------------------------------------------------------------------- /test/remote-cases/rust/square/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-cases/rust/square/test.rs -------------------------------------------------------------------------------- /test/remote-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/test/remote-test.py -------------------------------------------------------------------------------- /update_compilers/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/update_compilers/common.inc -------------------------------------------------------------------------------- /update_compilers/install_arm_compilers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/update_compilers/install_arm_compilers.sh -------------------------------------------------------------------------------- /update_compilers/install_binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/update_compilers/install_binaries.sh -------------------------------------------------------------------------------- /update_compilers/install_compilers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/update_compilers/install_compilers.sh -------------------------------------------------------------------------------- /update_compilers/install_libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/update_compilers/install_libraries.sh -------------------------------------------------------------------------------- /update_compilers/install_nonfree_compilers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/update_compilers/install_nonfree_compilers.sh -------------------------------------------------------------------------------- /windows/Msvce.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/windows/Msvce.psm1 -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/files/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/windows/files/Dockerfile.template -------------------------------------------------------------------------------- /windows/files/compiler-explorer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/windows/files/compiler-explorer.properties -------------------------------------------------------------------------------- /windows/files/cookie_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/windows/files/cookie_policy.html -------------------------------------------------------------------------------- /windows/files/privacy_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/windows/files/privacy_policy.html -------------------------------------------------------------------------------- /windows/files/python.properties: -------------------------------------------------------------------------------- 1 | compilers= 2 | -------------------------------------------------------------------------------- /windows/msvce-config-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/windows/msvce-config-schema.json -------------------------------------------------------------------------------- /windows/msvce-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/infra/HEAD/windows/msvce-config.json --------------------------------------------------------------------------------