huangcm
2025-07-01 2af87f2bbd5ba07d377b5a7f0ee0e96053f2d424
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
 
// Test that the __libcpp_version file matches the value of _LIBCPP_VERSION
 
#include <__config>
 
#ifndef _LIBCPP_VERSION
#error _LIBCPP_VERSION must be defined
#endif
 
static const int libcpp_version =
#include <__libcpp_version>
;
 
static_assert(_LIBCPP_VERSION == libcpp_version,
              "_LIBCPP_VERSION doesn't match __libcpp_version");
 
int main() {
 
}