ericmckean / webm

Automatically exported from code.google.com/p/webm
0 stars 0 forks source link

Strip complains for command line too long #686

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I have a problem with mingw-w64 / msys2 on x86 Windows 7.

During compilation the rule to strip symbols _g.a->.a fails for libvpx and 
libgtest.

I had to execute by hand

 nm libvpx_g.a | grep ' [A-TV-Z] ' | awk '{print "-K"$3'} | xargs strip --strip-unneeded -o libvpx.a libvpx_g.a
 nm libgtest_g.a | grep ' [A-TV-Z] ' | awk '{print "-K"$3'} | xargs strip --strip-unneeded -o libgtest.a libgtest_g.a

to have it going.

Original issue reported on code.google.com by fithis2...@gmail.com on 1 Jan 2014 at 5:37

GoogleCodeExporter commented 9 years ago

Original comment by ya...@google.com on 9 Jan 2014 at 11:19

GoogleCodeExporter commented 9 years ago
This should be fixed after --strip-unneeded was replaced and the nm/awk use was 
obviated:
https://gerrit.chromium.org/gerrit/#/c/70942/

Original comment by jz...@google.com on 24 Jul 2014 at 5:43