[DiscordArchive] I have a few modules, but just the regular, account mounts, transmog and so on.
[DiscordArchive] I have a few modules, but just the regular, account mounts, transmog and so on.
Archived author: veritas9160 • Posted: 2025-03-24T12:35:43.229000+00:00
Original source
I’m looking for some help with a compiling issue. I know it has to do with Cmake and pulling info from some library. I’ve tired rm -rf azerothcore-wotlk/var/build. below is my Cmake log file text.
Determining if the strtod_l exist failed with the following output:
Change Dir: /root/azerothcore-wotlk/var/build/obj/CMakeFiles/CMakeScratch/TryCompile-CbIKSi
Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_48718/fast && /usr/bin/gmake -f CMakeFiles/cmTC_48718.dir/build.make CMakeFiles/cmTC_48718.dir/build
gmake[1]: Entering directory '/root/azerothcore-wotlk/var/build/obj/CMakeFiles/CMakeScratch/TryCompile-CbIKSi'
Building C object CMakeFiles/cmTC_48718.dir/CheckSymbolExists.c.o
/usr/bin/clang -MD -MT CMakeFiles/cmTC_48718.dir/CheckSymbolExists.c.o -MF CMakeFiles/cmTC_48718.dir/CheckSymbolExists.c.o.d -o CMakeFiles/cmTC_48718.dir/CheckSymbolExists.c.o -c /root/azerothcore-wotlk/var/build/obj/CMakeFiles/CMakeScratch/TryCompile-CbIKSi/CheckSymbolExists.c
/root/azerothcore-wotlk/var/build/obj/CMakeFiles/CMakeScratch/TryCompile-CbIKSi/CheckSymbolExists.c:8:19: error: use of undeclared identifier 'strtod_l'
return ((int*)(&strtod_l))[argc];
^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTC_48718.dir/build.make:79: CMakeFiles/cmTC_48718.dir/CheckSymbolExists.c.o] Error 1
gmake[1]: Leaving directory '/root/azerothcore-wotlk/var/build/obj/CMakeFiles/CMakeScratch/TryCompile-CbIKSi'
gmake: *** [Makefile:127: cmTC_48718/fast] Error 2
File CheckSymbolExists.c:
/* */
#include <stdlib.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef strtod_l
return ((int*)(&strtod_l))[argc];
#else
(void)argc;
return 0;
#endif
}
Archived author: veritas9160 • Posted: 2025-03-24T12:37:02.218000+00:00
Original source
Sorry for the wall of text