Check libbcc build time instead of sha1sum.

Since libbcc.so is larger than 3+Mb, it takes a lot of time
to calculate its sha1 checksum.  In order to shorten the startup
time, we introduce the build time check.  There will be a string
called libbcc_build_time in libbcc.so and the cached file,
which will store the build time of libbcc.so.

In case that you have to upate libbcc.so frequently, and you
want to enable the sha1 checksum of libbcc, then you may change
USE_LIBBCC_SHA1SUM to true.
diff --git a/lib/bcc/Script.cpp b/lib/bcc/Script.cpp
index 588906a..8fb8fd0 100644
--- a/lib/bcc/Script.cpp
+++ b/lib/bcc/Script.cpp
@@ -204,7 +204,10 @@
   CacheReader reader;
 
   // Dependencies
+#if defined(USE_LIBBCC_SHA1SUM)
   reader.addDependency(BCC_FILE_RESOURCE, pathLibBCC, sha1LibBCC);
+#endif
+
   reader.addDependency(BCC_FILE_RESOURCE, pathLibRS, sha1LibRS);
 
   if (sourceBC) {
@@ -288,7 +291,9 @@
       CacheWriter writer;
 
       // Dependencies
+#if defined(USE_LIBBCC_SHA1SUM)
       writer.addDependency(BCC_FILE_RESOURCE, pathLibBCC, sha1LibBCC);
+#endif
       writer.addDependency(BCC_FILE_RESOURCE, pathLibRS, sha1LibRS);
 
       if (sourceBC) {