blob: b7b7ebc2eb35c217811ccc5a5159d18bb2b0024a [file] [log] [blame]
Martin v. Löwis3150a272006-01-18 19:18:51 +00001#include <windows.h>
2#include <sys/types.h>
3#include <sys/stat.h>
4#include <stdio.h>
5
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.
11
12 Currently, subwcrev.exe is found from the registry entries
13 of TortoiseSVN.
14
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.
19
20*/
21
22int make_buildinfo2()
23{
24 struct _stat st;
25 HKEY hTortoise;
26 char command[500];
27 DWORD type, size;
28 if (_stat(".svn", &st) < 0)
29 return 0;
30 if (RegOpenKey(HKEY_LOCAL_MACHINE, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS &&
31 RegOpenKey(HKEY_CURRENT_USER, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS)
32 /* Tortoise not installed */
33 return 0;
Tim Peters8207cc72006-01-18 20:04:02 +000034 command[0] = '"'; /* quote the path to the executable */
35 size = sizeof(command) - 1;
36 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
Martin v. Löwis3150a272006-01-18 19:18:51 +000037 type != REG_SZ)
38 /* Registry corrupted */
39 return 0;
Martin v. Löwis62ffc072006-01-19 16:17:31 +000040 strcat(command, "bin\\subwcrev.exe");
41 if (_stat(command+1, &st) < 0)
Martin v. Löwis3150a272006-01-18 19:18:51 +000042 /* subwcrev.exe not part of the release */
43 return 0;
Martin v. Löwis62ffc072006-01-19 16:17:31 +000044 strcat(command, "\" .. ..\\Modules\\getbuildinfo.c getbuildinfo2.c");
Martin v. Löwis3150a272006-01-18 19:18:51 +000045 puts(command); fflush(stdout);
46 if (system(command) < 0)
47 return 0;
48 return 1;
49}
50
51int main(int argc, char*argv[])
52{
53 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
54 int do_unlink, result;
55 if (argc != 2) {
56 fprintf(stderr, "make_buildinfo $(ConfigurationName)\n");
57 return EXIT_FAILURE;
58 }
59 if (strcmp(argv[1], "Release") == 0) {
60 strcat(command, "-MD ");
Martin v. Löwis3150a272006-01-18 19:18:51 +000061 }
62 else if (strcmp(argv[1], "Debug") == 0) {
63 strcat(command, "-D_DEBUG -MDd ");
Martin v. Löwis3150a272006-01-18 19:18:51 +000064 }
Martin v. Löwis856bf9a2006-02-14 20:42:55 +000065 else if (strcmp(argv[1], "ReleaseItanium") == 0) {
66 strcat(command, "-MD /USECL:MS_ITANIUM ");
67 }
68 else if (strcmp(argv[1], "ReleaseAMD64") == 0) {
Martin v. Löwis3150a272006-01-18 19:18:51 +000069 strcat(command, "-MD ");
Martin v. Löwis856bf9a2006-02-14 20:42:55 +000070 strcat(command, "-MD /USECL:MS_OPTERON ");
Martin v. Löwis3150a272006-01-18 19:18:51 +000071 }
72 else {
73 fprintf(stderr, "unsupported configuration %s\n", argv[1]);
74 return EXIT_FAILURE;
75 }
76
77 if ((do_unlink = make_buildinfo2()))
78 strcat(command, "getbuildinfo2.c -DSUBWCREV ");
79 else
80 strcat(command, "..\\Modules\\getbuildinfo.c");
81 strcat(command, " -Fogetbuildinfo.o -I..\\Include -I..\\PC");
82 puts(command); fflush(stdout);
83 result = system(command);
84 if (do_unlink)
85 unlink("getbuildinfo2.c");
86 if (result < 0)
87 return EXIT_FAILURE;
88 return 0;
89}