Skip to content

Commit e6af575

Browse files
WizKidfacebook-github-bot
authored andcommitted
Have gen-type-scanners and gen-member-reflection depend on both hhvm.dwp and hhvm
Summary: - This was the only way I could figure out to depend on the hhvm file also. - We still just hope that the hhvm and hhvm.dwp files will be in the same folder. Reviewed By: ricklavoie Differential Revision: D77204938 fbshipit-source-id: 643147343577b6f6ef694b238d3cb853e2b5c6fa
1 parent f0bf1e9 commit e6af575

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

hphp/tools/type-info-gens/gen-member-reflection.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,9 @@ int main(int argc, char** argv) {
197197
("source_file",
198198
po::value<std::string>()->required(),
199199
"filename to read debug-info from")
200+
("dep",
201+
po::value<std::vector<std::string>>(),
202+
"just here so we can add dependencies")
200203
("output_file",
201204
po::value<std::string>()->required(),
202205
"filename of generated code")

hphp/tools/type-info-gens/gen-type-scanners.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3393,6 +3393,9 @@ int main(int argc, char** argv) {
33933393
("source_file",
33943394
po::value<std::string>()->required(),
33953395
"filename to read debug-info from")
3396+
("dep",
3397+
po::value<std::vector<std::string>>(),
3398+
"just here so we can add dependencies")
33963399
("output_file",
33973400
po::value<std::string>()->required(),
33983401
"filename of generated scanners")

0 commit comments

Comments
 (0)