Displaying 8 results from an estimated 8 matches for "proj_bindir".
2006 Dec 09
3
[LLVMdev] llvm build not respecting DESTDIR?
Reid Spencer wrote:
> Yes, but its a bit verbose. The variables that control this are all
> defined in the Makefile.config file. The variables are:
>
> PROJ_prefix := /proj/llvm/install-1
> PROJ_bindir := /proj/llvm/install-1/bin
> PROJ_libdir := /proj/llvm/install-1/lib
> PROJ_datadir := /proj/llvm/install-1/share
> PROJ_docsdir := /proj/llvm/install-1/docs/llvm
> PROJ_etcdir := /proj/llvm/install-1/etc/llvm
> PROJ_includedir := /proj/llvm/install-1/include
>...
2006 Dec 08
0
[LLVMdev] llvm build not respecting DESTDIR?
...ied "make install PREFIX=...", but that didn't work either. Are
> there any suggestions on how to get this to work?
Yes, but its a bit verbose. The variables that control this are all
defined in the Makefile.config file. The variables are:
PROJ_prefix := /proj/llvm/install-1
PROJ_bindir := /proj/llvm/install-1/bin
PROJ_libdir := /proj/llvm/install-1/lib
PROJ_datadir := /proj/llvm/install-1/share
PROJ_docsdir := /proj/llvm/install-1/docs/llvm
PROJ_etcdir := /proj/llvm/install-1/etc/llvm
PROJ_includedir := /proj/llvm/install-1/include
PROJ_infodir := /proj/llvm/...
2006 Dec 08
5
[LLVMdev] llvm build not respecting DESTDIR?
Hello,
I'm updating the macports build of llvm, and I'm running into an issue
trying to stage llvm into a temporary directory. It builds fine, but
when I try to install it into a temporary location, it insists on
installing into the final location. The only reference I saw to the
standard gnu DESTDIR was in the llvm.spec file, but none of the
generated Makefiles have that value. Is
2006 Dec 09
0
[LLVMdev] llvm build not respecting DESTDIR?
...,
On Fri, 2006-12-08 at 19:27 -0800, Erick Tryzelaar wrote:
> Reid Spencer wrote:
> > Yes, but its a bit verbose. The variables that control this are all
> > defined in the Makefile.config file. The variables are:
> >
> > PROJ_prefix := /proj/llvm/install-1
> > PROJ_bindir := /proj/llvm/install-1/bin
> > PROJ_libdir := /proj/llvm/install-1/lib
> > PROJ_datadir := /proj/llvm/install-1/share
> > PROJ_docsdir := /proj/llvm/install-1/docs/llvm
> > PROJ_etcdir := /proj/llvm/install-1/etc/llvm
> > PROJ_includedir := /proj/llv...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid,
I think it is the first time it is run that the errors occcur !?
Not sure but that would seem logical.
Aaron
2010 Aug 05
2
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...cho) Uninstall circumvented with NO_INSTALL
else
-ifdef LOADABLE_MODULE
-DestSharedLib = $(DESTDIR)$(PROJ_libdir)/$(LIBRARYNAME)$(SHLIBEXT)
+# Win32.DLL prefers to be located on the "PATH" of binaries.
+ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
+DestSharedDir := $(DESTDIR)$(PROJ_bindir)
else
-DestSharedLib = $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
+DestSharedDir := $(DESTDIR)$(PROJ_libdir)
endif
+DestSharedLib := $(DestSharedDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
install-local:: $(DestSharedLib)
-$(DestSharedLib): $(LibName.SO) $(DESTDIR)$(PROJ_libdir)...
2010 Aug 05
0
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
Hi Takumi,
> Any feedbacks are welcome.
> Have fun!
This seems to be pretty useful addition to LLVM on windows! And it
seems the only painless way to make plugins working, yay!
For me the patch looks pretty good. One minor thing: could you please
rename SharedDir => SharedLibDir
Thanks!
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg
2010 Aug 05
3
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...) Uninstall circumvented with NO_INSTALL
else
-ifdef LOADABLE_MODULE
-DestSharedLib = $(DESTDIR)$(PROJ_libdir)/$(LIBRARYNAME)$(SHLIBEXT)
+# Win32.DLL prefers to be located on the "PATH" of binaries.
+ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
+DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
else
-DestSharedLib = $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
+DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
endif
+DestSharedLib := $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
install-local:: $(DestSharedLib)
-$(DestSharedLib): $(LibName.SO) $(DESTDIR)$(PROJ_l...