Skip to content

Commit 271a19f

Browse files
authored
Fix wrong RPATH using the absolute path instead of relative one (#239)
1 parent 8cdcb2a commit 271a19f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lmdeploy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) OpenMMLab. All rights reserved.
22
from typing import Tuple
33

4-
__version__ = '0.0.4'
4+
__version__ = '0.0.5'
55
short_version = __version__
66

77

src/turbomind/python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_14)
1919

2020
set_target_properties(${PROJECT_NAME} PROPERTIES
2121
BUILD_RPATH "\$ORIGIN"
22-
INSTALL_RPATH "\$ORIGIN;../../nvidia/nccl/lib/")
22+
INSTALL_RPATH "\$ORIGIN;\$ORIGIN/../../nvidia/nccl/lib/")

0 commit comments

Comments
 (0)