this post was submitted on 25 Feb 2024
424 points (100.0% liked)

linuxmemes

24670 readers
1307 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     
    top 25 comments
    sorted by: hot top controversial new old
    [–] [email protected] 43 points 1 year ago (1 children)

    You want me to compile it best i can do is a git repo. And thats if it runs on windows in the first place.

    [–] [email protected] 8 points 1 year ago (1 children)

    @muntedcrocodile @0x4E4F should be able to run dosbox on any platform tho [gives you turbo pascal source]

    [–] [email protected] 1 points 1 year ago (1 children)

    Not really a solution if it has a GUI, dosbox only runs command line stuff.

    [–] [email protected] 4 points 1 year ago (1 children)

    Well that's not at all true, but it won't have the graphical environment you want.

    [–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

    What do you mean, dosbox can run programs with a GUI? Didn't know that...

    [–] [email protected] 5 points 1 year ago

    If it couldn't do graphics it wouldn't be very useful for old games. You can run Windows 3.1, or used to haven't tried in a while. But it's not what is needed here even if it can.

    [–] [email protected] 38 points 1 year ago (2 children)

    I've used mingw in the past, the exe usually is 10x the size and wants the entire binary of any library used as well and first requires you to download the source windows version of the lib and link it. Meaning a small SDL2 project on Linux was I think 100kib while on windows it was 1mib + 2.5 mib

    [–] [email protected] 22 points 1 year ago (1 children)

    Windows has dll hell... so basically, to ge around this, some tools statically link by default. It's not an ideal solution, but it works most of the time... and regarding how unmainatained a Windows install might be (old installs, like Win7) or how badly updated/upgraded it might be (newer installs, Win10 and 11), I guess it is the only choice you actually have to make your app run on as many Windows systems as possible.

    [–] [email protected] 1 points 1 year ago (1 children)

    Since I don't do this professionally it doesn't have to run on any windows systems, I just was stuck with windows recently so I programmed in a GitHub codespace and compiled for Windows which is how I found out about all that I'm so happy not to have run into problems like this on Linux.

    [–] [email protected] 3 points 1 year ago

    Linux is a smooth ride when it comes to binaries... might miss a few dependencies here and there, but all easily fixed if you just install them.

    Windows on the other hand 😬...

    [–] [email protected] 3 points 1 year ago* (last edited 1 year ago) (1 children)

    If you have WSL set up run

    strip your.exe
    

    It often reduces the size a fair bit

    [–] [email protected] 1 points 1 year ago (1 children)

    Doesn't it work in Linux normally?

    [–] [email protected] 1 points 1 year ago (1 children)

    Oh sure, just figured this was all done under windows.

    [–] [email protected] 1 points 1 year ago

    Nope I used a GitHub codespace since I didn't have a C compiler on the windows installation I was stuck with.

    [–] [email protected] 19 points 1 year ago (1 children)

    Do it the long way and compile in a vm.

    [–] [email protected] 5 points 1 year ago

    My thoughts exactly... seems to be the safest route.

    [–] [email protected] 13 points 1 year ago* (last edited 1 year ago)

    Best I can do is make an elf that mostly works and the memory manager seems pretty solid but the second you start doing stuff with strings, it fucks all up and I never figured out that bug after months so it is what it is. If you want to print a string you have to drop into real mode first.

    [–] [email protected] 12 points 1 year ago (2 children)

    I was able to use this guys docker image and tool in order to cross compile my Rust programs in the past. They were very simple programs so I dont know how well it works for larger projects.

    https://github.com/Jake-Shadle/xwin

    [–] [email protected] 3 points 1 year ago

    You could even cross-compile from musl... very cool πŸ‘!

    [–] [email protected] 3 points 1 year ago

    I heard recently that you can use the zig compiler to cross compile rust programs.

    [–] [email protected] 9 points 1 year ago (1 children)
    [–] [email protected] 7 points 1 year ago* (last edited 1 year ago)

    No, it's Vala... and it's not my project, client just wants this to run on Windows.

    [–] [email protected] 8 points 1 year ago

    Simply install Ubuntu from Microsoft Store.

    [–] [email protected] 3 points 1 year ago (1 children)

    They should just use reverse-wine, if that exists.

    [–] [email protected] 3 points 1 year ago

    Wish it did...