Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3150a270
Commit
3150a270
authored
Jan 18, 2006
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing make_buildinfo.c.
parent
d078e40d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
87 additions
and
0 deletions
+87
-0
PCbuild/make_buildinfo.c
PCbuild/make_buildinfo.c
+87
-0
No files found.
PCbuild/make_buildinfo.c
0 → 100644
View file @
3150a270
#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
;
size
=
sizeof
(
command
);
if
(
RegQueryValueEx
(
hTortoise
,
"Directory"
,
0
,
&
type
,
command
,
&
size
)
!=
ERROR_SUCCESS
||
type
!=
REG_SZ
)
/* Registry corrupted */
return
0
;
strcat
(
command
,
"bin
\\
subwcrev.exe"
);
if
(
_stat
(
command
,
&
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 "
);
//strcpy(targetdir, "x86-temp-debug");
}
else
if
(
strcmp
(
argv
[
1
],
"Debug"
)
==
0
)
{
strcat
(
command
,
"-D_DEBUG -MDd "
);
//strcpy(targetdir, "x86-temp-release");
}
else
if
(
strcmp
(
argv
[
1
],
"ReleaseItanium"
))
{
strcat
(
command
,
"-MD "
);
//strcpy(targetdir, "ia64-temp-release");
}
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
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment