forked from infiniflow/infinity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update clang toolchain inside build image to 18 pytorch/pytorch#4101 The underlying issue was wrt statically linking libstdc++ and we no longer do that. infinity-sdk python module segment fault if it's staticly link with libstdc++. However if it dynamically link with libstdc++, it requires the runtime libstdc++ be no older than the version of compilation time (gcc13). This makes deployment complicated. infinity-sdk cannot link with libstdc++ older as gcc11 since gcc11 doesn't support C++20 module well. The python wheel `manylinux_2_17` actually uses gcc10. Looks dead end... The solution is let infinity-sdk python module static link with libc++ which's a part of clang toolchain. - [x] Other (please describe): toolchain
- Loading branch information
1 parent
f9f4528
commit 846bcfd
Showing
4 changed files
with
50 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[C7.9.2009-base] | ||
name=CentOS-7.9.2009 - Base | ||
baseurl=http://mirrors.aliyun.com/centos-vault/7.9.2009/os/$basearch/ | ||
gpgcheck=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
[C7.9.2009-updates] | ||
name=CentOS-7.9.2009 - Updates | ||
baseurl=http://mirrors.aliyun.com/centos-vault/7.9.2009/updates/$basearch/ | ||
gpgcheck=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
[C7.9.2009-extras] | ||
name=CentOS-7.9.2009 - Extras | ||
baseurl=http://mirrors.aliyun.com/centos-vault/7.9.2009/extras/$basearch/ | ||
gpgcheck=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
[C7.9.2009-centosplus] | ||
name=CentOS-7.9.2009 - Plus | ||
baseurl=http://mirrors.aliyun.com/centos-vault/7.9.2009/centosplus/$basearch/ | ||
gpgcheck=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters