Vladimir Merzliakov
2005-Feb-17 23:06 UTC
[LLVMdev] LLVM CFE bootstrap problem at FreeBSD after last$(Install) changes in Makefile.rules
> Vladimir, > > Thanks for the note. Unfortunately, the install approach that we're > using in the makefiles is a bit broken, based on Linux install program. > We'll get this cleaned up soon so that it works on multiple unixes. > > Reid.Ok Temporary fixed by partly reverting $(Install) changes in local copy Makefile.rules (removing -D option from $(Install) call lines). Vladimir
Reid Spencer
2005-Feb-17 23:16 UTC
[LLVMdev] LLVM CFE bootstrap problem at FreeBSD after last$(Install) changes in Makefile.rules
right, but that will lead to directory creation problems on some systems with a fresh install. Reid. On Thu, 2005-02-17 at 15:06, Vladimir Merzliakov wrote:> > Vladimir, > > > > Thanks for the note. Unfortunately, the install approach that we're > > using in the makefiles is a bit broken, based on Linux install program. > > We'll get this cleaned up soon so that it works on multiple unixes. > > > > Reid. > Ok > > Temporary fixed by partly reverting $(Install) changes in local copy > Makefile.rules (removing -D option from $(Install) call lines). > > Vladimir > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050217/ddc4202a/attachment.sig>
Vladimir Merzliakov
2005-Feb-17 23:31 UTC
[LLVMdev] LLVM CFE bootstrap problem at FreeBSD afterlast$(Install) changes in Makefile.rules
> right, but that will lead to directory creation problems on some systems > with a fresh install.May be instead $(Install) -D -m 0644 $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) use $(Install) -d $(PROJ_etcdir); $(Install) -m 0644 $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) as more compatible? Vladimir
Vladimir Merzliakov
2005-Feb-20 11:32 UTC
[LLVMdev] LLVM CFE bootstrap problem at FreeBSDafterlast$(Install) changes in Makefile.rules
> right, but that will lead to directory creation problems on some systems > with a fresh install. > > Reid. > > Temporary fixed by partly reverting $(Install) changes in local copy > Makefile.rules (removing -D option from $(Install) call lines). >I found one more problem with $(Install) at FreebSD - now in LLVM install: At FreebSD install can't autocreate directories at "Installing include files" : /home/wanderer/pkg/llvm/include/./llvm/ADT/BitSetVector.h Note: see /dot/ part. And then current LLVM state at FreebSD: After http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20050214/024145.html and http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20050214/024146.html LLVM can't be installed with $(Install) -D (unsupported by FreeBSD install tool) and without -D (include files instaletion broken) LLVM CFE can't be bootstraped with -D (rejected) but build and install fine after removing -D option. Vladimir
Apparently Analagous Threads
- [LLVMdev] LLVM CFE bootstrap problem at FreeBSD after last$(Install) changes in Makefile.rules
- [LLVMdev] LLVM CFE bootstrap problem at FreeBSD after last $(Install) changes in Makefile.rules
- [LLVMdev] LLVM CFE bootstrap problem at FreeBSD after last $(Install) changes in Makefile.rules
- [LLVMdev] [Cygwin] llvm 'make install' build errors
- [LLVMdev] LLVM CFE bootstrap problem at FreeBSDafterlast$(Install) changes in Makefile.rules