Hi,
I started to build the v1.7 in debug mode under Linux Fedora 23 64 bits with the following command line:
./cmake_generic.sh …/build -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=/usr/local
All goes fine until I reach the step in which AssetImporter is linked. Such operation fails and ends with the following errors:
…/…/ThirdParty/Assimp/libAssimp.a(zutil.c.o):(.bss+0x0): multiple definitions for “z_verbose”
…/…/…/lib/libUrho3D.a(ftgzip.c.o):(.bss+0x0): first definition here
I algo get a multiple definition error message for “z_error”.
However, if I build the release version, I do not get such errors and the build process successfully ends (the AssetImporter is built).
Any idea on what is going on ? Or maybe is it a known error ?
I also compiled the git version (after a git clone done today) and the same error occurs if I compile in debug mode.
Charles