msvc-wine VS compiler-explorer

Compare msvc-wine vs compiler-explorer and see what are their differences.

msvc-wine

Scripts for setting up and running MSVC in Wine on Linux (by mstorsjo)

compiler-explorer

Run compilers interactively from your web browser and interact with the assembly (by compiler-explorer)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
msvc-wine compiler-explorer
6 191
569 15,295
- 2.1%
8.3 9.9
24 days ago 3 days ago
Shell TypeScript
GNU General Public License v3.0 or later BSD 2-clause "Simplified" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

msvc-wine

Posts with mentions or reviews of msvc-wine. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-06.
  • How to deal with MSVC in DevOps
    9 projects | /r/cpp | 6 Jul 2023
    Okay, I am trying it, but it does not exactly work out of the box. Do you remember how you got a hand on the MSVC libraries? I use https://github.com/mstorsjo/msvc-wine to download the MSVC toolchain using python, and then I simply wget this file https://raw.githubusercontent.com/llvm/llvm-project/main/llvm/cmake/platforms/WinMsvc.cmake, and call CMake like in the example the file has as a comment in the first few lines. I installed clang-tools-15 and lld-15 using apt. Does this sound somehow correct? I set all the paths correctly and I get a CMake Error "include could not find requested file: [...] //ClangClCMakeCompileRules.cmake", the error occurs while CMake is testing the C compiler if it works.
  • Wine 8.0
    7 projects | news.ycombinator.com | 24 Jan 2023
    That's a nice lead! - I'll try looking into that more. If you have or remember some more details - please share! Thanks!

    (One of my use cases is https://github.com/mstorsjo/msvc-wine - and invocation of `cl.exe` or `link.exe` taking 250ms at each is not going to be great (then again `cl.exe` can be made to input several .cpp/.c files, but it becomes more awkward to express that at the build level).

  • Cross compiling pybind11 module with Mingw-gcc for Windows from Linux
    4 projects | /r/cpp_questions | 29 Dec 2022
  • Visual Studio 2022 17.4 is available!
    2 projects | /r/cpp | 9 Nov 2022
    you can run the C++ compiler via wine: https://github.com/mstorsjo/msvc-wine
  • Wine 6.15 Released
    1 project | /r/linux_gaming | 14 Aug 2021
    I guess I should try installing MSVC again one of these days. Maybe it's finally possible to setup a "real" Windows cross compilation build environment without msvc-wine.

compiler-explorer

Posts with mentions or reviews of compiler-explorer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-28.
  • What if null was an Object in Java?
    3 projects | news.ycombinator.com | 28 Apr 2024
    At least on android arm64, looks like a `dmb ishst` is emitted after the constructor, which allows future loads to not need an explicit barrier. Removing `final` from the field causes that barrier to not be emitted.

    https://godbolt.org/#g:!((g:!((g:!((h:codeEditor,i:(filename...

  • Ask HN: Which books/resources to understand modern Assembler?
    6 projects | news.ycombinator.com | 21 Apr 2024
  • 3rd Edition of Programming: Principles and Practice Using C++ by Stroustrup
    6 projects | news.ycombinator.com | 19 Apr 2024
    You said You won't get "extreme performance" from C++ because it is buried under the weight of decades of compatibility hacks.

    Now your whole comment is about vector behavior. You haven't talked about what 'decades of compatibility hacks' are holding back performance. Whatever behavior you want from a vector is not a language limitation.

    You could write your own vector and be done with it, although I'm still not sure what you mean, since once you reserve capacity a vector still doubles capacity when you overrun it. The reason this is never a performance obstacle is that if you're going to use more memory anyway, you reserve more up front. This is what any normal programmer does and they move on.

    Show what you mean here:

    https://godbolt.org/

    I've never used ISPC. It's somewhat interesting although since it's Intel focused of course it's not actually portable.

    I guess now the goal posts are shifting. First it was that "C++ as a language has performance limitations" now it's "rust has a vector that has a function I want and also I want SIMD stuff that doesn't exist. It does exist? not like that!"

    Try to stay on track. You said there were "decades of compatibility hacks" holding back C++ performance then you went down a rabbit hole that has nothing to do with supporting that.

  • C++ Insights – See your source code with the eyes of a compiler
    5 projects | news.ycombinator.com | 5 Apr 2024
    C++ Insights is available online at https://cppinsights.io/

    It is also available at a touch of a button within the most excellent https://godbolt.org/

    along side the button that takes your code sample to https://quick-bench.com/

    Those sites and https://cppreference.com/ are what I'm using constantly while coding.

    I recently discovered https://whitebox.systems/ It's a local app with a $69 one-time charge. And, it only really works with "C With Classes" style functions. But, it looks promising as another productivity boost.

  • Ask HN: How can I learn about performance optimization?
    6 projects | news.ycombinator.com | 2 Mar 2024
    [P&H RISC] https://www.google.com/books/edition/_/e8DvDwAAQBAJ

    Compiler Explorer by Matt Godbolt [Godbolt] can help better understand what code a compiler generates under different circumstances.

    [Godbolt] https://godbolt.org

    The official CPU architecture manuals from CPU vendors are surprisingly readable and information-rich. I only read the fragments that I need or that I am interested in and move on. Here is the Intel’s one [Intel]. I use the Combined Volume Set, which is a huge PDF comprising all the ten volumes. It is easier to search in when it’s all in one file. I can open several copies on different pages to make navigation easier.

    Intel also has a whole optimization reference manual [Intel] (scroll down, it’s all on the same page). The manual helps understand what exactly the CPU is doing.

    [Intel] https://www.intel.com/content/www/us/en/developer/articles/t...

    Personally, I believe in automated benchmarks that measure end-to-end what is actually important and notify you when a change impacts performance for the worse.

  • Managing mutable data in Elixir with Rust
    1 project | news.ycombinator.com | 16 Feb 2024
    Let's compile it with https://godbolt.org/, turn on some optimisations and inspect the IR (-O2 -emit-llvm). Copying out the part that corresponds to the while loop:

      4:
  • Free MIT Course: Performance Engineering of Software Systems
    4 projects | news.ycombinator.com | 10 Jan 2024
    resources were extra useful when building deeper intuitions about GPU performance for ML models at work and in graduate school.

    - CMU's "Deep Learning Systems" Course is hosted online and has YouTube lectures online. While not generally relevant to software performance, it is especially useful for engineers interested in building strong fundamentals that will serve them well when taking ML models into production environments: https://dlsyscourse.org/

    - Compiler Explorer is a tool that allows you easily input some code in and check how the assembly output maps to the source. I think this is exceptionally useful for beginner/intermediate programmers who are familiar with one compiled high-level language and have not been exposed to reading lots of assembly. It is also great for testing how different compiler flags affect assembly output. Many people used to coding in C and C++ probably know about this, but I still run into people who haven't so I share it whenever performance comes up: https://godbolt.org/

  • Verifying Rust Zeroize with Assembly...including portable SIMD
    1 project | dev.to | 10 Jan 2024
    To really understand what's going on here we can look at the compiled assembly code. I'm working on a Mac and can do this using the objdump tool. Compiler Explorer is also a handy tool but doesn't seem to support Arm assembly which is what Rust will use when compiling on Apple Silicon.
  • 4B If Statements
    5 projects | news.ycombinator.com | 27 Dec 2023
  • Operator precedence doubt
    1 project | /r/cprogramming | 11 Dec 2023
    Play around with it in godbolt if you're really curious: https://godbolt.org/

What are some alternatives?

When comparing msvc-wine and compiler-explorer you can also consider the following projects:

infra - Infrastructure to set up the public Compiler Explorer instances and compilers

C++ Format - A modern formatting library

Navidrome Music Server - 🎧☁️ Modern Music Server and Streamer compatible with Subsonic/Airsonic

rust - Empowering everyone to build reliable and efficient software.

pyenv - Simple Python version management

format-benchmark - A collection of formatting benchmarks

NCCABoilerplate - A set of Boilerplate projects for most of the work we do

papers - ISO/IEC JTC1 SC22 WG21 paper scheduling and management

box64 - Box64 - Linux Userspace x86_64 Emulator with a twist, targeted at ARM64 Linux devices

rustc_codegen_gcc - libgccjit AOT codegen for rustc

docker-msvc-cpp - Dockerized Visual C++ environment with wine

firejail - Linux namespaces and seccomp-bpf sandbox