File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ cc_library(paddle_fluid DEPS ${fluid_modules})
11
11
# Create shared library
12
12
cc_library (paddle_fluid_shared SHARED
13
13
SRCS io.cc
14
- DEPS ${ ARCHIVE_START} ${GLOB_OP_LIB} ${FLUID_CORE_MODULES} ${ARCHIVE_START} )
14
+ DEPS ARCHIVE_START ${GLOB_OP_LIB} ${FLUID_CORE_MODULES} ARCHIVE_END )
15
15
set_target_properties (paddle_fluid_shared PROPERTIES OUTPUT_NAME paddle_fluid )
16
16
if (NOT APPLE )
17
17
# TODO(liuyiqun): Temporarily disable the link flag because it is not support on Mac.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ function(inference_test TARGET_NAME)
17
17
string (REGEX REPLACE "^_$" "" arg "${arg} " )
18
18
cc_test (test_inference_${TARGET_NAME}${arg}
19
19
SRCS test_inference_${TARGET_NAME}.cc
20
- DEPS ${ARCHIVE_BEGIN} paddle_fluid ${ ARCHIVE_END}
20
+ DEPS ARCHIVE_START paddle_fluid ARCHIVE_END
21
21
ARGS --dirname=${PYTHON_TESTS_DIR}/book/${TARGET_NAME}${arg}.inference.model )
22
22
set_tests_properties (test_inference_${TARGET_NAME}${arg}
23
23
PROPERTIES DEPENDS test_${TARGET_NAME} )
You can’t perform that action at this time.
0 commit comments