aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mesonmain.py
diff options
context:
space:
mode:
authorNicolas Schneider <nioncode+git@gmail.com>2016-02-25 22:36:39 +0100
committerNicolas Schneider <nioncode+git@gmail.com>2016-02-25 23:13:29 +0100
commitac5ee0c41453b6fcc6bf21d7d714040e622ce6f1 (patch)
tree415f0e062b56e51ca419c76766d5bd36bf35a274 /mesonbuild/mesonmain.py
parentbffc84e77e871e1b671ac15064fe985b33972e7d (diff)
downloadmeson-ac5ee0c41453b6fcc6bf21d7d714040e622ce6f1.zip
meson-ac5ee0c41453b6fcc6bf21d7d714040e622ce6f1.tar.gz
meson-ac5ee0c41453b6fcc6bf21d7d714040e622ce6f1.tar.bz2
dump coredata to file before calling backend.generate()
This ensures that all build files always have a later timestamp than coredata.dat, which is used to check if the build files must be regenerated.
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r--mesonbuild/mesonmain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py
index 1a7b084..543a31f 100644
--- a/mesonbuild/mesonmain.py
+++ b/mesonbuild/mesonmain.py
@@ -166,8 +166,8 @@ itself as required.'''
mlog.log('Build machine cpu family:', mlog.bold(intr.builtin['build_machine'].cpu_family_method([], {})))
mlog.log('Build machine cpu:', mlog.bold(intr.builtin['build_machine'].cpu_method([], {})))
intr.run()
+ env.dump_coredata()
g.generate(intr)
- env.generating_finished()
dumpfile = os.path.join(env.get_scratch_dir(), 'build.dat')
pickle.dump(b, open(dumpfile, 'wb'))