meson ビルド システムでは、コンパイラ プロパティからコンパイラ名に加えてコンパイラ バージョンを取得できますか?
たとえば、次のように C++ コンパイラ名を取得できます。
compiler = meson.get_compiler('cpp')
compilerName = compiler.get_id()
これは、「clang」、「gcc」、「msvc」などの文字列を返します。バージョン情報も取得する方法があるかどうか疑問に思っています。
meson ビルド システムでは、コンパイラ プロパティからコンパイラ名に加えてコンパイラ バージョンを取得できますか?
たとえば、次のように C++ コンパイラ名を取得できます。
compiler = meson.get_compiler('cpp')
compilerName = compiler.get_id()
これは、「clang」、「gcc」、「msvc」などの文字列を返します。バージョン情報も取得する方法があるかどうか疑問に思っています。