blob: 27580bb6066eb86f6bccf12c65156516450bc17f [file] [log] [blame]
Christian Heimesad14d112007-11-17 08:15:27 +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.
Christian Heimesd9a4d1d2008-01-01 14:42:15 +00008 As a side effect, it might generate PC\VS7.1\getbuildinfo2.c
Christian Heimesad14d112007-11-17 08:15:27 +00009 also. If this isn't a subversion checkout, or subwcrev isn't
Christian Heimesd9a4d1d2008-01-01 14:42:15 +000010 found, it compiles ..\\..\\Modules\\getbuildinfo.c instead.
Christian Heimesad14d112007-11-17 08:15:27 +000011
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;
Christian Heimes5b5e81c2007-12-31 16:14:33 +000026 char command[500];
Christian Heimesad14d112007-11-17 08:15:27 +000027 DWORD type, size;
28 if (_stat(".svn", &st) < 0)
29 return 0;
30 /* Allow suppression of subwcrev.exe invocation if a no_subwcrev file is present. */
31 if (_stat("no_subwcrev", &st) == 0)
32 return 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 */
36 return 0;
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 ||
40 type != REG_SZ)
41 /* Registry corrupted */
42 return 0;
Christian Heimes5b5e81c2007-12-31 16:14:33 +000043 strcat(command, "bin\\subwcrev.exe");
Christian Heimesad14d112007-11-17 08:15:27 +000044 if (_stat(command+1, &st) < 0)
45 /* subwcrev.exe not part of the release */
46 return 0;
Christian Heimesd9a4d1d2008-01-01 14:42:15 +000047 strcat(command, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c");
Christian Heimesad14d112007-11-17 08:15:27 +000048 puts(command); fflush(stdout);
49 if (system(command) < 0)
50 return 0;
51 return 1;
52}
53
54int main(int argc, char*argv[])
55{
56 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
57 int do_unlink, result;
58 if (argc != 2) {
59 fprintf(stderr, "make_buildinfo $(ConfigurationName)\n");
60 return EXIT_FAILURE;
61 }
62 if (strcmp(argv[1], "Release") == 0) {
Christian Heimes5b5e81c2007-12-31 16:14:33 +000063 strcat(command, "-MD ");
Christian Heimesad14d112007-11-17 08:15:27 +000064 }
65 else if (strcmp(argv[1], "Debug") == 0) {
Christian Heimes5b5e81c2007-12-31 16:14:33 +000066 strcat(command, "-D_DEBUG -MDd ");
Christian Heimesad14d112007-11-17 08:15:27 +000067 }
68 else if (strcmp(argv[1], "ReleaseItanium") == 0) {
Christian Heimes5b5e81c2007-12-31 16:14:33 +000069 strcat(command, "-MD /USECL:MS_ITANIUM ");
Christian Heimesad14d112007-11-17 08:15:27 +000070 }
71 else if (strcmp(argv[1], "ReleaseAMD64") == 0) {
Christian Heimes5b5e81c2007-12-31 16:14:33 +000072 strcat(command, "-MD ");
73 strcat(command, "-MD /USECL:MS_OPTERON ");
Christian Heimesad14d112007-11-17 08:15:27 +000074 }
75 else {
76 fprintf(stderr, "unsupported configuration %s\n", argv[1]);
77 return EXIT_FAILURE;
78 }
79
80 if ((do_unlink = make_buildinfo2()))
Christian Heimes5b5e81c2007-12-31 16:14:33 +000081 strcat(command, "getbuildinfo2.c -DSUBWCREV ");
Christian Heimesad14d112007-11-17 08:15:27 +000082 else
Christian Heimesd9a4d1d2008-01-01 14:42:15 +000083 strcat(command, "..\\..\\Modules\\getbuildinfo.c");
84 strcat(command, " -Fogetbuildinfo.o -I..\\..\\Include -I..\\..\\PC");
Christian Heimesad14d112007-11-17 08:15:27 +000085 puts(command); fflush(stdout);
86 result = system(command);
87 if (do_unlink)
Christian Heimes5b5e81c2007-12-31 16:14:33 +000088 unlink("getbuildinfo2.c");
Christian Heimesad14d112007-11-17 08:15:27 +000089 if (result < 0)
90 return EXIT_FAILURE;
91 return 0;
Christian Heimesd9a4d1d2008-01-01 14:42:15 +000092}