Skip to content

Commit

Permalink
Merge pull request #20585 from SebastianAchilles/20240522131645_new_p…
Browse files Browse the repository at this point in the history
…r_libfabric1121

use PSM2 dependency in libfabric only on x86_64
  • Loading branch information
lexming committed May 22, 2024
2 parents fc724cb + 8aa655b commit 601ef9d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ builddependencies = [

dependencies = [
('numactl', '2.0.14'),
('PSM2', '12.0.1'),
# PSM2 only compiles on x86_64
('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
]

osdependencies = [OS_PKG_IBVERBS_DEV]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ builddependencies = [

dependencies = [
('numactl', '2.0.14'),
('PSM2', '12.0.1'),
# PSM2 only compiles on x86_64
('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
]

osdependencies = [OS_PKG_IBVERBS_DEV]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ builddependencies = [

dependencies = [
('numactl', '2.0.14'),
('PSM2', '12.0.1'),
# PSM2 only compiles on x86_64
('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
]

osdependencies = [OS_PKG_IBVERBS_DEV]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ builddependencies = [

dependencies = [
('numactl', '2.0.14'),
('PSM2', '12.0.1'),
# PSM2 only compiles on x86_64
('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
]

osdependencies = [OS_PKG_IBVERBS_DEV]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ builddependencies = [

dependencies = [
('numactl', '2.0.14'),
('PSM2', '12.0.1'),
# PSM2 only compiles on x86_64
('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
]

osdependencies = [OS_PKG_IBVERBS_DEV]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ builddependencies = [

dependencies = [
('numactl', '2.0.16'),
('PSM2', '12.0.1'),
# PSM2 only compiles on x86_64
('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
]

osdependencies = [OS_PKG_IBVERBS_DEV]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ builddependencies = [

dependencies = [
('numactl', '2.0.16'),
('PSM2', '12.0.1'),
# PSM2 only compiles on x86_64
('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
]

osdependencies = [OS_PKG_IBVERBS_DEV]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ builddependencies = [

dependencies = [
('numactl', '2.0.16'),
('PSM2', '12.0.1'),
# PSM2 only compiles on x86_64
('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
]

osdependencies = [OS_PKG_IBVERBS_DEV]
Expand Down

0 comments on commit 601ef9d

Please sign in to comment.