diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-09-20 06:54:53 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-09-20 06:54:53 (GMT) |
commit | 5f36117b8ff7e14ae450e770cdaa67e60561672d (patch) | |
tree | 4a2a37410499f50efddc31f4834fcb313a24fae1 /src/PlatformUtils.cc | |
parent | 3eda281be13dfe9eb8fcbc9fb82e75e74d107e01 (diff) |
restore missing digits. make --info work better. fix parser / path bug
Diffstat (limited to 'src/PlatformUtils.cc')
-rw-r--r-- | src/PlatformUtils.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PlatformUtils.cc b/src/PlatformUtils.cc index f731a9a..5059b78 100644 --- a/src/PlatformUtils.cc +++ b/src/PlatformUtils.cc @@ -107,14 +107,14 @@ std::string PlatformUtils::info() #endif // ENABLE_CGAL s << "OpenSCAD Version: " << TOSTRING(OPENSCAD_VERSION) - << "\nCompiler: " << compiler_info - << "\nCompile date: " << __DATE__ + << "\nCompiler, build date: " << compiler_info << ", " << __DATE__ << "\nBoost version: " << BOOST_LIB_VERSION << "\nEigen version: " << EIGEN_WORLD_VERSION << "." << EIGEN_MAJOR_VERSION << "." << EIGEN_MINOR_VERSION << "\nCGAL version, kernels: " << TOSTRING(CGAL_VERSION) << ", " << cgal_3d_kernel << ", " << cgal_2d_kernel << ", " << cgal_2d_kernelEx << "\nOpenCSG version: " << OPENCSG_VERSION_STRING << "\nQt version: " << qtVersion << "\nMingW build: " << mingwstatus + << "\nOPENSCADPATH: " << getenv("OPENSCADPATH") ; return s.str(); } |