noc.social is part of the decentralized social network powered by Mastodon.
This instance is focused on technology, networking, linux, privacy, security, infosec, engineering, but open to anyone. Civil discourse, polite and open. Managed by the noc.org / trunc.org team.

Administered by:

Server stats:

676
active users

Learn more

At the beginning of the semester I had students install g++ and gdb via the MinGW installer.

Now that we're using gdb in an assignment, one student's gdb isn't recognizing the executable file they built using "g++ -g blah.cpp" and such.

It is giving "not in executable format: file format not recognized" - which seems like an x64/x86 mismatch? Haven't seen this problem with any other students yet.

#gdb #mingw

This weekend I tried to compile #Allegro for #Win9x with #mingw.
I was able to get the examples running on #Win10, but when I copied them over to my #Win98 box they crashed with an illegal instruction.
That happened because mingw on #Ubuntu is targeting i686 and I have an AMD K6-II in my test rig.
Then I tried compiling mingw myself with i386 as a target, that failed because the 386 is missing an instruction that is needed by the runtime library.
I got it working with i486, though.

1/

I have finally implemented all required #WebView2 interfaces in #C and have now my own #browser control which also compiles on #MinGW.

Without a ready-to-use SDK, 'WebView2Loader.dll` and `CreateCoreWebView2EnvironmentWithOptions` is the secret point to start with.
Fortunately, methods were quite comparable to the old #ActiveX browser control I already did know.

If Microsoft invents a new browser API every 10 years I have at least 5 years before I need to adapt my code to the next standard 😁

I've begun the process of switch Rust's Windows CI to Server 2022, starting with the mingw builders: github.com/rust-lang/rust/pull

This was tried a couple of years ago, but there some issues with mingw - so kudos to the folks that investigated and fixed those (sorry that I don't have links)!

Next step, the MSVC builders, which will require bumping the version of Clang that's used to build LLVM first...

#RustLang #Rust #windows #mingw

Use Server 2022 in CI for mingw jobs by dpaoliello · Pull Request #124562 · rust-lang/rustGitHub
Replied to Koopa 🌸

Reddit tells me that #MSYS2 is one of the more comprehensive and up-to-date distributions of #MinGW-w64, so i'm gonna use that.

the funny thing about this one is that it uses regular pacman

(neofetch came by default - that was not my doing!)

@rsalz I'd be interested in possibly helping to replace or add another option besides Perl to the build system. That might make the project more appealing to some of the more minimal Linux distributions out there and encourage them to use and contribute to the project. I can also offer to test and debug on Windows with #MinGW if needed.

Smacked head-first into a stupid issue with the #libcurl package deployed by #MinGW / #MSYS / #MinGW64 - turns out that if you copy the DLLs out of the MinGW environment (you know, like if you want to actually *deploy* an application that uses them), libcurl suddenly starts freaking out about "SSL CA cert" problems.

Someone on StackOverflow noticed there's an alternate "mingw-w64-x86_64-curl-winssl" package that doesn't seem to suffer from this issue (which I confirmed). What a damned mess!

Wine 8.4 packages for Slackware

The Wine developers released version 8.4 last week. There's lots of bugfixes of course, but the announcement also mentions that the work has started on a Wayland graphics driver. Note that in the previous 8.3 release for which I did not create packages, Smart Card support was added, using PCSC-Lite for which I also have a package.

alien.slackbook.org/blog/wine-

#Slackware #Software #mingw #mingw-w64 #windows #wine

I can't get i686-w64-mingw32-gcc that comes with Ubuntu to generate i486 code. Even with -march=i486, I can do an objdump on the result and it's full of cmov!

EDIT: I should say I discovered this when I found my gcc executables crashing on launch on my Pentium laptop, even tho they run just fine in Windows NT 4 in a VM on my modern PC.

#mingw