3

From this : What is the file .sconsign.dblite for? I understand that it is a database.

I am interested to see the contents of it. How can it be parsed? Is there any standard tool available?

Community
  • 1
  • 1
gkns
  • 697
  • 2
  • 12
  • 32

1 Answers1

4

The installation of SCons contains a command-line tool named "sconsign", which can be used to output the contents of the signature database in a more human-readable format. If you're under Linux/Unix, check its MAN page please (man sconsign).

dirkbaechle
  • 3,984
  • 14
  • 17
  • Note that the command-line tool "sconsign" mentioned above is actually a Python script which requires some setup in order to run it. – Amir Katz Jun 07 '15 at 10:30