diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-09 15:00:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-09 15:00:46 -0500 |
commit | dc10945ad7cd210426091a9e7809c90a9ff0b175 (patch) | |
tree | ae9c7139555c1dda1a41946496ae13ab6303adba /mesonbuild/backend/ninjabackend.py | |
parent | 5603f90287695fc6e092f2701ec222e4fddc3899 (diff) | |
parent | daa893e0119f972eae1b55db6e5f4a61799fdd93 (diff) | |
download | meson-dc10945ad7cd210426091a9e7809c90a9ff0b175.zip meson-dc10945ad7cd210426091a9e7809c90a9ff0b175.tar.gz meson-dc10945ad7cd210426091a9e7809c90a9ff0b175.tar.bz2 |
Merge pull request #995 from centricular/more-appveyor-builds
appveyor.yml: Test more than just MSVC2010 + Ninja on x86
Diffstat (limited to 'mesonbuild/backend/ninjabackend.py')
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index 63380bd..af96f3d 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -1694,9 +1694,9 @@ rule FORTRAN_DEP_HACK if target.has_pch(): tfilename = self.get_target_filename_abs(target) - return compiler.get_compile_debugfile_args(tfilename) + return compiler.get_compile_debugfile_args(tfilename, pch=True) else: - return compiler.get_compile_debugfile_args(objfile) + return compiler.get_compile_debugfile_args(objfile, pch=False) def get_link_debugfile_args(self, linker, target, outname): return linker.get_link_debugfile_args(outname) |