tup icon indicating copy to clipboard operation
tup copied to clipboard

Tup is a file-based build system.

Results 117 tup issues
Sort by recently updated
recently updated
newest added

If I mount a directory with ``sshfs`` that contains a ``.tup`` directory and a ``Tupfile``, and try to run ``tup upd``, I get the following: ``` open(".", 0): Permission denied...

I see that [Tup is supposed to be able to deal with spaces in input filenames](https://github.com/gittup/tup/blob/master/test/t4175-space-filename.sh), but when I use a space in an _output directory name_ it seems to...

Support for run scripts opens up many possibilities without requiring changes to Tup itself. It allows, for instance, having a third-party script read build definitions in arbitrary languages — even...

I have been struggling for a while with PDB files in Visual C++ and Google turns up people talking about it, sometimes finding workarounds for specific edge cases, but I...

I have the following Tupfile: ``` .gitignore : memetic.tex | citations.bib |> latexmk -lualatex %f |> %B.pdf %B.fdb_latexmk %B.out %B.aux %B.log %B.fls %B.bbl %B.blg ``` The generated .gitignore contains ``memetic.pdf``,...

It would be nice to be able to have tup build a project without touching the source tree. After using CMake for years, it's something I've grown accustomed to (for...

I was trying to test new "tup generate" feature, but it doesn't seem to like Windows. If I try to use it in any of my projects using tup I...

running `tup upd` get: ``` mount: Permission denied tup error: Unable to remount the root file-system as a private mount. *** tup errors *** *** Command ID=15 failed with return...

Many programs need to have a correct localization to work well with the underlying system, and usually use the LANG and LC_\* env to be able to better fit to...

Hi, I want to copy file from source directory to variant specific directory. I tried 'cp %f %o' and 'touch %f' but tup complains that I will overwrite source file,...