Skip to content

Commit aa3abe7

Browse files
committed
Fix tc-print subdirectory load order
1 parent 90b810e commit aa3abe7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

hphp/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ endif()
134134

135135
add_subdirectory(tools/hfsort)
136136
add_subdirectory(tools/version)
137-
add_subdirectory(tools/tc-print)
138137

139138
add_subdirectory(compiler)
140139
add_subdirectory(hack)
@@ -144,6 +143,10 @@ add_subdirectory(neo)
144143
add_subdirectory(runtime)
145144
add_subdirectory(runtime/ext)
146145

146+
# Note: tc-print depends on EXTENSION_SYSTEMLIB_SOURCES being already set
147+
# and therefore should be added after extensions.
148+
add_subdirectory(tools/tc-print)
149+
147150
# The runtime/test binary require GTest and GMock to be installed globally
148151
option(RUNTIME_TEST_BIN "Create the HHVM runtime/test binary" OFF)
149152
if (RUNTIME_TEST_BIN)

0 commit comments

Comments
 (0)