Hi, I am a beginner in using tup. We have licensed a third party software that uses Tup build system. I am trying to run Coverity(static code analyser) on a C++ project with Tup build system.
Original line: : foreach *.cpp | abc.h |> g++ $(CFLAGS) %f -o %o |> %B.o After adding Coverity: : foreach *.cpp | abc.h |> cov-build --dir $(TopDir)/idir g++ $(CFLAGS) %f -o %o |> %B.o On doing so, I'm getting "tup error: hard links are not supported" error. Want to understand how to by pass this issue. -- -- tup-users mailing list email: [email protected] unsubscribe: [email protected] options: http://groups.google.com/group/tup-users?hl=en --- You received this message because you are subscribed to the Google Groups "tup-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tup-users/f110323b-5f0b-441b-ab20-5c9fb1e2c3fen%40googlegroups.com.
