You (mike ganzberger) write:
> I believe I've encountered a problem with AFS. We've
>started using the "template" feature of the latest C++ compilers.
[stuff deleted]
>The make file is simple:
>SRCS = test.cc Matrix.cc CCLComplex.cc
>FLAGS = -I. -ptv
>test1:
>       rm -rf ptrepository
>       CC +T $(FLAGS) -o test1 $(SRCS)
>
>Has anyone else experienced this problem with C++ and AFS? Any suggestions?

        CC uses hard links, which are disallowed across AFS
directories due to the ambiguity of which ACL to use.
        Here's an ugly hack, but if you use the source code directory
for the ptrepostitory directory, it should compile.  Change the
flags to

FLAGS = -I. -prv -ptr.

Where -ptr. specifies the current directory for the ptrepository
directory.

                    Yours,
                            Larry Schwimmer
                            [EMAIL PROTECTED]

Reply via email to