1 #include "caffe2/core/common.h" 2 3 namespace caffe2 { 4 GetBuildOptions()5const std::map<string, string>& GetBuildOptions() { 6 #ifndef CAFFE2_BUILD_STRINGS 7 #define CAFFE2_BUILD_STRINGS {} 8 #endif 9 static const std::map<string, string> kMap = CAFFE2_BUILD_STRINGS; 10 return kMap; 11 } 12 13 } // namespace caffe2 14