> I get the following error trying to compile valgrind 3.5.0 with icc
> version 11.1:

> icc: command line warning #10006: ignoring unknown option '-Wno-long-long'
> icc: command line warning #10006: ignoring unknown option '-Wno-pointer-sign'
> icc: command line warning #10006: ignoring unknown option 
> '-Wdeclaration-after-statement'

Those three lines above are warnings, not errors, and are not fatal.
icc and gcc differ in diagnosing extensions and legal-but-iffy code.

> ld:../valt_load_address_amd64_linux.lds:219: syntax error
> make[4]: *** [memcheck-amd64-linux] Error 1

What is line 219 of valt_load_address_amd64_linux.lds ?
The source has:
-----
  .debug_line     0 : { *(.debug_line) }
  .debug_frame    0 : { *(.debug_frame) }     ### line 219
  .debug_str      0 : { *(.debug_str) }
-----
which is OK.  Is yours OK?  Is your /bin/ld OK?  Does running
memcheck on the 'make' itself and all children:
   valgrind  --trace-children=yes  make
detect any problems?

-- 

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
Valgrind-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/valgrind-users

Reply via email to