summaryrefslogtreecommitdiffstats
path: root/PCbuild/make_buildinfo.c
blob: b7b7ebc2eb35c217811ccc5a5159d18bb2b0024a (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include <windows.h>

#include <sys/types.h>

#include <sys/stat.h>

#include <stdio.h>


/* This file creates the getbuildinfo.o object, by first

   invoking subwcrev.exe (if found), and then invoking cl.exe.

   As a side effect, it might generate PCBuild\getbuildinfo2.c

   also. If this isn't a subversion checkout, or subwcrev isn't

   found, it compiles ..\\Modules\\getbuildinfo.c instead.



   Currently, subwcrev.exe is found from the registry entries

   of TortoiseSVN.



   No attempt is made to place getbuildinfo.o into the proper

   binary directory. This isn't necessary, as this tool is

   invoked as a pre-link step for pythoncore, so that overwrites

   any previous getbuildinfo.o.



*/

int make_buildinfo2()
{
	struct _stat st;
	HKEY hTortoise;
	char command[500];
	DWORD type, size;
	if (_stat(".svn", &st) < 0)
		return 0;
	if (RegOpenKey(HKEY_LOCAL_MACHINE, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS &&
	    RegOpenKey(HKEY_CURRENT_USER, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS)
		/* Tortoise not installed */
		return 0;
	command[0] = '"';  /* quote the path to the executable */
	size = sizeof(command) - 1;
	if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
	    type != REG_SZ)
		/* Registry corrupted */
		return 0;
	strcat(command, "bin\\subwcrev.exe");
	if (_stat(command+1, &st) < 0)
		/* subwcrev.exe not part of the release */
		return 0;
	strcat(command, "\" .. ..\\Modules\\getbuildinfo.c getbuildinfo2.c");
	puts(command); fflush(stdout);
	if (system(command) < 0)
		return 0;
	return 1;
}

int main(int argc, char*argv[])
{
	char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
	int do_unlink, result;
	if (argc != 2) {
		fprintf(stderr, "make_buildinfo $(ConfigurationName)\n");
		return EXIT_FAILURE;
	}
	if (strcmp(argv[1], "Release") == 0) {
		strcat(command, "-MD ");
	}
	else if (strcmp(argv[1], "Debug") == 0) {
		strcat(command, "-D_DEBUG -MDd ");
	}
	else if (strcmp(argv[1], "ReleaseItanium") == 0) {
		strcat(command, "-MD /USECL:MS_ITANIUM ");
	}
	else if (strcmp(argv[1], "ReleaseAMD64") == 0) {
		strcat(command, "-MD ");
		strcat(command, "-MD /USECL:MS_OPTERON ");
	}
	else {
		fprintf(stderr, "unsupported configuration %s\n", argv[1]);
		return EXIT_FAILURE;
	}

	if ((do_unlink = make_buildinfo2()))
		strcat(command, "getbuildinfo2.c -DSUBWCREV ");
	else
		strcat(command, "..\\Modules\\getbuildinfo.c");
	strcat(command, " -Fogetbuildinfo.o -I..\\Include -I..\\PC");
	puts(command); fflush(stdout);
	result = system(command);
	if (do_unlink)
		unlink("getbuildinfo2.c");
	if (result < 0)
		return EXIT_FAILURE;
	return 0;
}
| | |/ / | |/| | | | * | Examples clean upBea Lam2010-06-281-0/+0 | | * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-06-241-0/+0 | | |\ \ | | | |/ | | |/| | | | * Update screenshotBea Lam2010-06-231-0/+0 * | | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7David Boddie2010-06-281-3/+47 |\ \ \ \ | |/ / / | * | | doc: update the ECMAScript referenceKent Hansen2010-06-281-3/+47 | |/ / * | | Merge branch '4.7' of /home/dboddie/git/oslo-staging-1 into 4.7David Boddie2010-06-25