On Mon, Sep 05, 2016 at 01:05:04PM +0000, Pietro wrote: > arm-phytec-linux-gnueabi-ld > : unrecognized option ' > -Wl,-soname,libgpr.so.1
That specific error is likely avoided by using the gcc or g++ compiler drivers (as appropriate) instead of plain ld. > Shouldn't that line be -soname=libgrp.so ? The -Wl flag instructs the driver program to pass through the arguments (-soname and libgpr.so.1) to ld, so the resulting ld command line will contain "-soname libgpr.so.1". -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/grpc-io. To view this discussion on the web visit https://groups.google.com/d/msgid/grpc-io/20160907192836.GA1331%40propane.slrz.net. For more options, visit https://groups.google.com/d/optout.
