blob: 1cec3cc7678c45893780a8a7c29af9a2bd4abab1 [file] [log] [blame]
//===- lld/Config/Version.h - LLD Version Number ----------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Defines a version-related utility function.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_VERSION_H
#define LLD_VERSION_H
#include "lld/Config/Version.inc"
#include "llvm/ADT/StringRef.h"
namespace lld {
/// \brief Retrieves a string representing the complete lld version.
std::string getLLDVersion();
}
#endif // LLD_VERSION_H