blob: 10afc633cf2c33a4d2483e92c33e32822b1614a2 (
plain)
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
29
30
31
32
33
34
35
36
|
#include <stdio.h>
#include <string.h>
int main(int argc, const char* argv[])
{
int cpp = 0;
const char* msc_ver = "1600";
int i;
for (i = 1; i < argc; ++i) {
if (strncmp(argv[i], "--cc-define=", 12) == 0) {
fprintf(stdout, "\n#define %s 1", argv[i]+12);
} else if (strncmp(argv[i], "-msc=", 5) == 0) {
msc_ver = argv[i]+5;
} else if (strstr(argv[i], ".cpp")) {
cpp = 1;
}
}
fprintf(stdout,
"\n"
);
if (cpp) {
fprintf(stdout,
"#define __cplusplus 199711L\n"
);
}
fprintf(stdout,
"#define _MSC_VER %s\n", msc_ver
);
fprintf(stdout,
"#define __has_include(x) x\n"
"#define __has_include_next(x) x\n"
"#define _WIN32 1\n"
"#define __has_last(x) x"
);
return 0;
}
|