Return a path to a temporary directory where temporary files should be placed.
(self)
| 1821 | return cmd |
| 1822 | |
| 1823 | def get_build_temp_dir(self): |
| 1824 | """ |
| 1825 | Return a path to a temporary directory where temporary files should be |
| 1826 | placed. |
| 1827 | """ |
| 1828 | cmd = get_cmd('build') |
| 1829 | cmd.ensure_finalized() |
| 1830 | return cmd.build_temp |
| 1831 | |
| 1832 | def have_f77c(self): |
| 1833 | """Check for availability of Fortran 77 compiler. |