Search found 473 matches

by synchronicity
Sat Apr 06, 2024 7:58 pm
Forum: wimlib discussion
Topic: After creating a backup, WIM is recognized with inaccuracy.
Replies: 1
Views: 464

Re: After creating a backup, WIM is recognized with inaccuracy.

It comes from "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProductName" in the Windows registry. So it must still say Windows 10. If there's something else that should be used instead, wimlib could look at that.
by synchronicity
Tue Mar 12, 2024 3:10 am
Forum: wimlib discussion
Topic: wimlib 1.14.4 released
Replies: 2
Views: 844

Re: wimlib 1.14.4 released

Thanks, I've fixed the date.
by synchronicity
Sat Feb 24, 2024 7:25 pm
Forum: wimlib discussion
Topic: wimlib 1.14.4 released
Replies: 2
Views: 844

wimlib 1.14.4 released

I've released wimlib 1.14.4: Fixed potential crash when writing WIM XML data, introduced in v1.14.0. Improved some documentation. Fixed the Windows build script to avoid an unnecessary DLL dependency when building with MSYS2 MINGW32 or MSYS2 MINGW64. The files and their SHA-256 checksums are: 3633db...
by synchronicity
Sat Feb 10, 2024 5:36 pm
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 45566

Re: ARM64 Support

Since this is off-topic from ARM64 support, can you please create a new thread? Please include a clear report of the issue, including the error message(s) you're currently seeing and attaching the DLL that's not working. Please use the latest git master branch only, without anything reverted , and i...
by synchronicity
Thu Feb 08, 2024 3:30 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 45566

Re: ARM64 Support

Code: Select all

if "$cc" --version | grep -q '(GCC)'; then
        configure_args+=("CC=$cc -static -static-libgcc -static-libstdc++")
fi
That's also the old code, not the new code, so make sure you've run 'git pull'...
by synchronicity
Thu Feb 08, 2024 3:21 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 45566

Re: ARM64 Support

Yes, I haven't seen the issue on newer operating systems such as Windows 10, and surely wouldn't run into it on Windows Server 2022 either.
Why not do the build on one of those, then?
by synchronicity
Wed Feb 07, 2024 6:42 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 45566

Re: ARM64 Support

(I would also encourage you to start a new thread if you have issues that are unrelated to the ARM64 support, which this thread is about.)
by synchronicity
Wed Feb 07, 2024 6:42 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 45566

Re: ARM64 Support

Hi, It turned out that the windows-build.sh script had a bug that made it not use the -static-libgcc compiler flag in the MINGW32 and MINGW64 MSYS2 environments as intended, causing the DLL to depend on libgcc. I've pushed out a commit that fixed this. This did not affect the official i686 and x86_6...
by synchronicity
Wed Feb 07, 2024 12:18 am
Forum: wimlib discussion
Topic: ARM64 Support
Replies: 38
Views: 45566

Re: ARM64 Support

What dependency problems are you referring to, specifically? The ARM64 libwim-15.dll has the same dependencies as the x86_64 one, I believe. It only depends on standard Windows DLLs (ntdll, msvcrt, advapi32, user32, kernel32).
by synchronicity
Sat Feb 03, 2024 6:05 am
Forum: wimlib discussion
Topic: VSS paths unable to be used with wimlib-imagex
Replies: 6
Views: 3316

Re: VSS paths unable to be used with wimlib-imagex

Hi, I tested this and paths to the root of the volume do work: wimcapture \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\ test.wim However paths to subdirectories do not work: wimcapture \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Users test.wim [ERROR] Can't open "\\Users" (status=c0...