search for: nmpath

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

Did you mean: nmath
2009 Aug 19
2
[LLVMdev] Build issues on Solaris
...st version: >> --- GenLibDeps.pl (revision 78653) >> +++ GenLibDeps.pl (working copy) >> @@ -100,7 +100,7 @@ >> print " <dt><b>$lib</b</dt><dd><ul>\n"; >> } >> open UNDEFS, >> - "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | >> uniq |"; >> + "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' -e 's/^ *//' >> | sort | uniq |"; >> my %DepLibs; >> while (<UNDEFS>) { >>...
2009 Aug 25
0
[LLVMdev] Build issues on Solaris
...t; --- GenLibDeps.pl (revision 78653) >>> +++ GenLibDeps.pl (working copy) >>> @@ -100,7 +100,7 @@ >>> print " <dt><b>$lib</b</dt><dd><ul>\n"; >>> } >>> open UNDEFS, >>> - "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort >>> | uniq |"; >>> + "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' -e 's/^ >>> *//' | sort | uniq |"; >>> my %DepLibs; >>> while (<UNDEFS>...
2009 Aug 19
0
[LLVMdev] Build issues on Solaris
...to recognize > the first version: > --- GenLibDeps.pl (revision 78653) > +++ GenLibDeps.pl (working copy) > @@ -100,7 +100,7 @@ > print " <dt><b>$lib</b</dt><dd><ul>\n"; > } > open UNDEFS, > - "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | > uniq |"; > + "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' -e 's/^ *//' > | sort | uniq |"; > my %DepLibs; > while (<UNDEFS>) { > chomp; starting at li...
2009 Aug 11
6
[LLVMdev] Build issues on Solaris
...might be better to change GenLibDeps.pl to recognize the first version: --- GenLibDeps.pl (revision 78653) +++ GenLibDeps.pl (working copy) @@ -100,7 +100,7 @@ print " <dt><b>$lib</b</dt><dd><ul>\n"; } open UNDEFS, - "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |"; + "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' -e 's/^ *//' | sort | uniq |"; my %DepLibs; while (<UNDEFS>) { chomp; Cheers, Nathan
2009 Aug 18
0
[LLVMdev] Build issues on Solaris
...ps.pl to recognize > the first version: > --- GenLibDeps.pl       (revision 78653) > +++ GenLibDeps.pl       (working copy) > @@ -100,7 +100,7 @@ >      print "  <dt><b>$lib</b</dt><dd><ul>\n"; >    } >    open UNDEFS, > -    "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | > uniq |"; > +    "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' -e 's/^ *//' > | sort | uniq |"; >    my %DepLibs; >    while (<UNDEFS>) { >      chomp; > > Cheers, >...
2008 Aug 02
0
[LLVMdev] [PATCH] GenLibsDep.pl fail-over for broken piping
...avoid falsely reporting that all libraries have no dependencies whatsoever. If the %DepLibs hash proves to be empty after the loop in the gen_one_entry function: * Assume that the command processor isn't *NIX-like enough to handle the piped command. * Redo the hash construction (beyond the $nmPath invocation) in Perl. Kenneth -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: GenLibDeps.pl.patch URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080802/5d951ba8/attachment.ksh>
2008 Oct 12
2
[LLVMdev] Genlibdeps.pl, CMake and MSYS
Kenneth Boyd <zaimoni at zaimoni.com> writes: >>> * I am seeing desynchronization between the configure-generated >>> Makefiles and the CMakeFile.txt files. [e.g., llc; makefile doesn't >>> have asmprinter, CMakeFile.txt does]. That much I should be able to >>> construct a patch for "blind", if no-one gets to it first. >>>
2010 Mar 21
3
[LLVMdev] LLVM on Solaris/Intel?
> I don't know anything about Solaris, but your paste doesn't actually > contain any errors, just warnings (unless I'm reading "ld: warning: > relocation error:" wrong). It might help to run make without -j until > it fails, and then use `make VERBOSE=1` to print the exact commands > it's running. Sorry. There was so much output I wasn't sure how much