Skip to content

Release v1.0.1

Compare
Choose a tag to compare
@greyishsong greyishsong released this 15 Sep 14:05
· 65 commits to main since this release

Release Note

Bug fixes

  • Undefine the macro near and far in camera.cpp for MSVC.
  • Full template instantiation of Eigen::Matrix when implementing formatter for it, MSVC should not give error about formatter.hpp anymore.

When running the pre-complied version on Linux, you may encounter runtime errors containing following info:

version `GLIBC_2.38' not found

that's because your system requires higher version of some shared libraries which are not provided by our release. Please try to remove the lib directory to let the program search within the system's library path.

发布说明

Bug 修复

  • camera.cpp 中取消来自 MSVC 标准库的 nearfar 的宏定义。
  • 实现 Eigen::Matrix 类的 formatter 时提供所有模板参数(完全特化),保证 MSVC 能够编译 formatter.hpp

在 Linux 上运行预编译版本时,可能会遇到类似如下问题的错误:

version `GLIBC_2.38' not found

这是因为你的系统需要更高版本的动态链接库,而我们在 lib 中放置的版本不够新。此时请删除 lib 目录并重新尝试运行,让程序自行从系统库目录中寻找相应的动态链接库。