office-gobmx/external/skia/source/skia_compiler.cxx
Luboš Luňák 2eeb682211 log properly the compiler used to compile Skia
Using #define's directly from VCL will report the compiler used
to compile VCL, which may be different from the one used for Skia.
Also truncate the log file on opening.

Change-Id: Iddf613613df20505f1abe1dd5468dcc8c7041410
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97090
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2020-06-25 16:16:49 +02:00

20 lines
389 B
C++

/*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <skia_compiler.hxx>
// Get the type of compiler that Skia is compiled with.
const char* skia_compiler_name()
{
#if defined __clang__
return "Clang";
#elif defined __GNUC__
return "GCC";
#elif defined _MSC_VER
return "MSVC";
#else
return "?";
#endif
}