You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today, I decided to compile this project against .NET 8.0. I thought, "how hard could be?" As it turns out, very!
Firstly, vcpkg failed with this error message:
error: this vcpkg instance requires a manifest with a specified baseline in order to interact with ports. Please add 'builtin-baseline' to the manifest or add a 'vcpkg-configuration.json' that redefines the default registry.
So, as the error message says, I added a vcpkg-configuration.json file:
This time, the build process built a vcpkg_installed folder, the size of which is 3.56 GB. But ultimately, AntiDupl's build stopped with these errors:
1>adDataCollector.cpp
1>F:\Projects\AntiDupl (original)\src\AntiDupl\adDataCollector.cpp(101,10): error C2039: 'ResizeBilinear': is not a member of 'Simd'1> F:\Projects\AntiDupl (original)\src\AntiDupl\adSimd.h(32,11):
1> see declaration of 'Simd'1>F:\Projects\AntiDupl (original)\src\AntiDupl\adDataCollector.cpp(101,10): error C3861: 'ResizeBilinear': identifier not found
1>adImageUtils.cpp
1>F:\Projects\AntiDupl (original)\src\AntiDupl\adImageUtils.cpp(67,31): error C2039: 'ResizeBilinear': is not a member of 'Simd'1> F:\Projects\AntiDupl (original)\src\AntiDupl\adSimd.h(32,11):
1> see declaration of 'Simd'1>F:\Projects\AntiDupl (original)\src\AntiDupl\adImageUtils.cpp(67,31): error C3861: 'ResizeBilinear': identifier not found
1>F:\Projects\AntiDupl (original)\src\AntiDupl\adImageUtils.cpp(74,31): error C2039: 'ResizeBilinear': is not a member of 'Simd'1> F:\Projects\AntiDupl (original)\src\AntiDupl\adSimd.h(32,11):
1> see declaration of 'Simd'1>F:\Projects\AntiDupl (original)\src\AntiDupl\adImageUtils.cpp(74,31): error C3861: 'ResizeBilinear': identifier not found
1>F:\Projects\AntiDupl (original)\src\AntiDupl\adImageUtils.cpp(78,31): error C2039: 'ResizeBilinear': is not a member of 'Simd'1> F:\Projects\AntiDupl (original)\src\AntiDupl\adSimd.h(32,11):
1> see declaration of 'Simd'1>F:\Projects\AntiDupl (original)\src\AntiDupl\adImageUtils.cpp(78,31): error C3861: 'ResizeBilinear': identifier not found
1>adJxl.cpp
1>F:\Projects\AntiDupl (original)\src\AntiDupl\adJxl.cpp(136,7): error C2660: 'JxlDecoderGetICCProfileSize': functiondoes not take 4 arguments
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
skycommand
changed the title
Compilation failure, probabyl because of upstream changes
Compilation failure, probably because of upstream changes
Jan 21, 2025
Hi.
Today, I decided to compile this project against .NET 8.0. I thought, "how hard could be?" As it turns out, very!
Firstly,
vcpkg
failed with this error message:So, as the error message says, I added a
vcpkg-configuration.json
file:This time, the build process built a
vcpkg_installed
folder, the size of which is 3.56 GB. But ultimately, AntiDupl's build stopped with these errors:What am I doing wrong?
The text was updated successfully, but these errors were encountered: