search for: projlibspaths

Displaying 8 results from an estimated 8 matches for "projlibspaths".

2007 Feb 25
0
[LLVMdev] llvm-config Perl not found ProjLibsPaths 'bug'
If Perl is not installed ProjLibsPaths is set to :- ProjLibsPaths = /usr/build/llvm/Debug/bin/llvm-config llvm-config: Perl not found so llvm-config could not be generatedllvm[2]: Causing a hard bug to determine/debug. Aaron -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pip...
2007 May 17
3
[LLVMdev] 2.0-prerelease build errors
...rball contains a FileParser.h.cvs but not a FileParser.h -=- With bison installed, the build gets past TableGen but breaks later: gmake[2]: Entering directory `/usr/home/emil/objdir/tools/opt' /usr/home/emil/llvm-2.0/Makefile.rules:1021: *** multiple target patterns. Stop. This is because $(ProjLibsPaths) contains: "/usr/home/emil/objdir/Release/bin/llvm-config llvm-config: Perl not found so llvm-config could not be generated" Should configure also error out if perl isn't installed? -=- With both bison and perl installed, the build succeeds. (phew) --Emil
2007 May 17
0
[LLVMdev] 2.0-prerelease build errors
...ou have found a bug in our Makefiles. > With bison installed, the build gets past TableGen but breaks later: > gmake[2]: Entering directory `/usr/home/emil/objdir/tools/opt' > /usr/home/emil/llvm-2.0/Makefile.rules:1021: *** multiple target patterns. Stop. > > This is because $(ProjLibsPaths) contains: > "/usr/home/emil/objdir/Release/bin/llvm-config llvm-config: Perl not > found so llvm-config could not be generated" > > Should configure also error out if perl isn't installed? Yes. Reid has changed this so that perl is now required. Thanks so much for repor...
2010 Aug 05
3
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...Prefix)$(LIBRARYNAME)$(SHLIBEXT) endif LibName.O := $(LibDir)/$(LIBRARYNAME).o LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca @@ -1125,13 +1171,13 @@ SharedLibKindMessage := "Loadable Module" else SharedLibKindMessage := "Shared Library" endif -$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir +$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \ $(notdir $@) $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \ $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)...
2010 Aug 05
2
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...Prefix)$(LIBRARYNAME)$(SHLIBEXT) endif LibName.O := $(LibDir)/$(LIBRARYNAME).o LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca @@ -1125,13 +1170,13 @@ SharedLibKindMessage := "Loadable Module" else SharedLibKindMessage := "Shared Library" endif -$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir +$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedDir)/.dir $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \ $(notdir $@) $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \ $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS) el...
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 15
0
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...TH because OSX ignores the rpath most # of the time. - Run.Shared := $(SHLIBPATH_VAR)="$(LibDir)$${$(SHLIBPATH_VAR):+:}$$$(SHLIBPATH_VAR)" + Run.Shared := $(SHLIBPATH_VAR)="$(SharedLibDir)$${$(SHLIBPATH_VAR):+:}$$$(SHLIBPATH_VAR)" endif $(LLVMUnitTestExe): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
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