diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-02-14 20:42:55 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-02-14 20:42:55 (GMT) |
commit | 856bf9a4e962ec118bcbfc5150825b256f2b8e2e (patch) | |
tree | 6ccc4386886b82a558e7ace3d47a9ab3ff4749e3 /PCbuild/make_buildinfo.c | |
parent | cffcfed1263a255386c0da50709d6abc18accaab (diff) | |
download | cpython-856bf9a4e962ec118bcbfc5150825b256f2b8e2e.zip cpython-856bf9a4e962ec118bcbfc5150825b256f2b8e2e.tar.gz cpython-856bf9a4e962ec118bcbfc5150825b256f2b8e2e.tar.bz2 |
Add build support for AMD64.
Diffstat (limited to 'PCbuild/make_buildinfo.c')
-rw-r--r-- | PCbuild/make_buildinfo.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/PCbuild/make_buildinfo.c b/PCbuild/make_buildinfo.c index 0b28ade..b7b7ebc 100644 --- a/PCbuild/make_buildinfo.c +++ b/PCbuild/make_buildinfo.c @@ -58,15 +58,16 @@ int main(int argc, char*argv[]) }
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")) {
+ else if (strcmp(argv[1], "ReleaseItanium") == 0) {
+ strcat(command, "-MD /USECL:MS_ITANIUM ");
+ }
+ else if (strcmp(argv[1], "ReleaseAMD64") == 0) {
strcat(command, "-MD ");
- //strcpy(targetdir, "ia64-temp-release");
+ strcat(command, "-MD /USECL:MS_OPTERON ");
}
else {
fprintf(stderr, "unsupported configuration %s\n", argv[1]);
|