Skip to content

Commit d031828

Browse files
committed
Fix tc-print subdirectory load order
1 parent bca2570 commit d031828

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

hphp/CMakeLists.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ endif()
135135

136136
add_subdirectory(tools/hfsort)
137137
add_subdirectory(tools/version)
138-
add_subdirectory(tools/tc-print)
139138

140139
add_subdirectory(compiler)
141140
add_subdirectory(hack)
@@ -145,6 +144,10 @@ add_subdirectory(neo)
145144
add_subdirectory(runtime)
146145
add_subdirectory(runtime/ext)
147146

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

0 commit comments

Comments
 (0)