12345678910111213141516171819202122232425 |
- """Configure GDB using the WRS/Linux environment."""
- import os
- if 'ENV_PREFIX' in os.environ:
- gdb.execute('set sysroot %s' % os.environ['ENV_PREFIX'])
- else:
- print "warning: ENV_PREFIX environment variable missing."
- print "The debugger will probably be unable to find the correct system libraries"
|