Skip to content

Commit 9f61ba7

Browse files
author
Chris Cummins
committed
Add missing cmake dependencies.
1 parent 297072f commit 9f61ba7

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

compiler_gym/service/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ py_library(
1313
":compilation_session",
1414
":connection",
1515
# TODO(github.com/facebookresearch/CompilerGym/pull/633):
16-
# add this after circular dependencies are resolved
16+
# add this after circular dependencies are resolved:
1717
# ":client_service_compiler_env",
1818
":connection_pool",
1919
# TODO(github.com/facebookresearch/CompilerGym/pull/633):

compiler_gym/service/CMakeLists.txt

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ cg_py_library(
1414
::compilation_session
1515
::connection
1616
# TODO(github.com/facebookresearch/CompilerGym/pull/633):
17-
# add this after circular dependencies are resolved
18-
#::client_service_compiler_env
17+
# add this after circular dependencies are resolved:
18+
# ::client_service_compiler_env
19+
::connection_pool
1920
compiler_gym::errors::errors
2021
compiler_gym::service::proto::proto
2122
PUBLIC
@@ -76,3 +77,13 @@ cg_py_library(
7677
compiler_gym::views::views
7778
PUBLIC
7879
)
80+
81+
cg_py_library(
82+
NAME
83+
connection_pool
84+
SRCS
85+
"connection_pool.py"
86+
DEPS
87+
::connection
88+
PUBLIC
89+
)

0 commit comments

Comments
 (0)