diff options
author | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2020-06-27 21:10:06 (GMT) |
---|---|---|
committer | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2020-06-27 21:10:06 (GMT) |
commit | d5f805cd9890123afa10f230024473d3003667b9 (patch) | |
tree | 7803236c91371e6c96cdb7871ce03534bdff5fef | |
parent | 3327dd6a6f4345607f9a72eaed59f74b06c39d25 (diff) | |
download | SCons-d5f805cd9890123afa10f230024473d3003667b9.zip SCons-d5f805cd9890123afa10f230024473d3003667b9.tar.gz SCons-d5f805cd9890123afa10f230024473d3003667b9.tar.bz2 |
Add "#include <stdio.h>" to generated c code to prevent build failures on x86 for MSVS 2015+.
-rw-r--r-- | test/MSVS/vs-14.0-exec.py | 1 | ||||
-rw-r--r-- | test/MSVS/vs-14.0Exp-exec.py | 1 | ||||
-rw-r--r-- | test/MSVS/vs-14.1-exec.py | 1 | ||||
-rw-r--r-- | test/MSVS/vs-14.2-exec.py | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/test/MSVS/vs-14.0-exec.py b/test/MSVS/vs-14.0-exec.py index 1d5b9bc..7e919ba 100644 --- a/test/MSVS/vs-14.0-exec.py +++ b/test/MSVS/vs-14.0-exec.py @@ -81,6 +81,7 @@ env.Program('foo.c') """ % locals()) test.write(['sub dir', 'foo.c'], r""" +#include <stdio.h> int main(int argc, char *argv) { diff --git a/test/MSVS/vs-14.0Exp-exec.py b/test/MSVS/vs-14.0Exp-exec.py index cb4aaf3..5d2a585 100644 --- a/test/MSVS/vs-14.0Exp-exec.py +++ b/test/MSVS/vs-14.0Exp-exec.py @@ -77,6 +77,7 @@ env.Program('foo.c') """ % locals()) test.write(['sub dir', 'foo.c'], r""" +#include <stdio.h> int main(int argc, char *argv) { diff --git a/test/MSVS/vs-14.1-exec.py b/test/MSVS/vs-14.1-exec.py index bcf4fbe..2accaaf 100644 --- a/test/MSVS/vs-14.1-exec.py +++ b/test/MSVS/vs-14.1-exec.py @@ -81,6 +81,7 @@ env.Program('foo.c') """ % locals()) test.write(['sub dir', 'foo.c'], r""" +#include <stdio.h> int main(int argc, char *argv) { diff --git a/test/MSVS/vs-14.2-exec.py b/test/MSVS/vs-14.2-exec.py index 1894031..5a3079d 100644 --- a/test/MSVS/vs-14.2-exec.py +++ b/test/MSVS/vs-14.2-exec.py @@ -81,6 +81,7 @@ env.Program('foo.c') """ % locals()) test.write(['sub dir', 'foo.c'], r""" +#include <stdio.h> int main(int argc, char *argv) { |