FAQ:Compiling 04

From Net-SNMP Wiki

Jump to: navigation, search

How can I reduce the memory footprint?

In order to reduce the memory footprint (for instance, to embed the snmpd into a device), the following configure options could be used.

 '--disable-debugging'

This turns off the compilation of all debugging statements.

 '--enable-mini-agent' '--with-out-mib-modules=examples/ucdDemoPublic'

This creates an agent with just the essential MIB modules included. NOTE: If you need additional MIB modules, then simply add them using the option '--with-mib-modules=...' but this will of course increase the memory footprint.

 '--with-transports=UDP'

This option specifies the transport domains to include. For a simple standalone agent, just UDP should be sufficient. (Although the 'disman' and 'agentx' modules may require the Callback, TCP and/or Unix transport domains as well).

 '--without-kmem-usage'

This can be used in order to omit the code that operates on the /dev/kmem interface. Clearly, this option cannot be used when one of the configured MIB modules depends on it.

 '--with-mibdirs=' and '--with-mibs='

These options tell the agent not to load any MIB modules. This doesn't affect the size of libraries or application binaries, but will reduce the memory footprint during runtime.

 '--disable-mib-loading'

This can be used in order to omit the code that loads and parses the MIB files altogether. This will reduce both the runtime memory footprint, and the binary sizes.

Once the agent (snmpd) has been linked, you might also try running 'strip snmpd' to remove un-necessary debug/symbol information.

   FAQ:Compiling
   
  1. How do I compile with 'cc' instead of 'gcc'?
  2. The compilation is complaining about missing libraries. Why?
  3. I'm getting an error "autoheader: not found" - what's wrong?
  4. How can I reduce the memory footprint?
  5. How can I reduce the installation footprint or speed up compilation?
  6. How can I compile the project to use static linking?
  7. Why is the project workspace empty under Visual C++?
  8. Why does 'make test' skip five tests?
  9. Why does 'make test' complain about a pid file?
Personal tools