6 /* This file creates the getbuildinfo.o object, by first
7 invoking subwcrev.exe (if found), and then invoking cl.exe.
8 As a side effect, it might generate PCBuild\getbuildinfo2.c
9 also. If this isn't a subversion checkout, or subwcrev isn't
10 found, it compiles ..\\Modules\\getbuildinfo.c instead.
12 Currently, subwcrev.exe is found from the registry entries
15 No attempt is made to place getbuildinfo.o into the proper
16 binary directory. This isn't necessary, as this tool is
17 invoked as a pre-link step for pythoncore, so that overwrites
18 any previous getbuildinfo.o.
28 if (_stat(".svn", &st
) < 0)
30 /* Allow suppression of subwcrev.exe invocation if a no_subwcrev file is present. */
31 if (_stat("no_subwcrev", &st
) == 0)
33 if (RegOpenKey(HKEY_LOCAL_MACHINE
, "Software\\TortoiseSVN", &hTortoise
) != ERROR_SUCCESS
&&
34 RegOpenKey(HKEY_CURRENT_USER
, "Software\\TortoiseSVN", &hTortoise
) != ERROR_SUCCESS
)
35 /* Tortoise not installed */
37 command
[0] = '"'; /* quote the path to the executable */
38 size
= sizeof(command
) - 1;
39 if (RegQueryValueEx(hTortoise
, "Directory", 0, &type
, command
+1, &size
) != ERROR_SUCCESS
||
41 /* Registry corrupted */
43 strcat(command
, "bin\\subwcrev.exe");
44 if (_stat(command
+1, &st
) < 0)
45 /* subwcrev.exe not part of the release */
47 strcat(command
, "\" .. ..\\Modules\\getbuildinfo.c getbuildinfo2.c");
48 puts(command
); fflush(stdout
);
49 if (system(command
) < 0)
54 int main(int argc
, char*argv
[])
56 char command
[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
57 int do_unlink
, result
;
59 fprintf(stderr
, "make_buildinfo $(ConfigurationName)\n");
62 if (strcmp(argv
[1], "Release") == 0) {
63 strcat(command
, "-MD ");
65 else if (strcmp(argv
[1], "Debug") == 0) {
66 strcat(command
, "-D_DEBUG -MDd ");
68 else if (strcmp(argv
[1], "ReleaseItanium") == 0) {
69 strcat(command
, "-MD /USECL:MS_ITANIUM ");
71 else if (strcmp(argv
[1], "ReleaseAMD64") == 0) {
72 strcat(command
, "-MD ");
73 strcat(command
, "-MD /USECL:MS_OPTERON ");
76 fprintf(stderr
, "unsupported configuration %s\n", argv
[1]);
80 if ((do_unlink
= make_buildinfo2()))
81 strcat(command
, "getbuildinfo2.c -DSUBWCREV ");
83 strcat(command
, "..\\Modules\\getbuildinfo.c");
84 strcat(command
, " -Fogetbuildinfo.o -I..\\Include -I..\\PC");
85 puts(command
); fflush(stdout
);
86 result
= system(command
);
88 unlink("getbuildinfo2.c");