I'm only trying to use devkitpro in order to compile extdata_dump so that I can change its config.txt so I can install a modified CFL_DB.dat. I have installed devkitpro as well as gnu make in order to do this. when running make in the folder containing everything I want to compile, it returns many errors that mostly mention how extdata_dump is doing things that don't match what devkitpro says. For instance, one error says
Code: Select all
C:/Users/OWNER/Downloads/extdatadump/extdata_dump-src/extdata_dump-master/source/archive.c:366:15: error: too many arguments to function 'FSUSER_OpenFile'
366 | ret = FSUSER_OpenFile(NULL, &filehandle, extdata_archive, FS_makePath(PATH_CHAR, path), 1, 0);
| ^~~~~~~~~~~~~~~
C:/devkitPro/libctru/include/3ds/services/fs.h:315:8: note: declared here
315 | Result FSUSER_OpenFile(Handle* out, FS_Archive archive, FS_Path path, u32 openFlags, u32 attributes);
| ^~~~~~~~~~~~~~~
Thanks for any help you can give.