Skip to content

Commit e31f5a6

Browse files
authored
Roman duris/fix jetson wheel platform (#2497)
* generate_build_config.py now selects <any> wheel platform for system flag <jetson> * Revert "generate_build_config.py now selects <any> wheel platform for system flag <jetson>" This reverts commit d722bee. * generate_build_config.py now selects <any> wheel platform for system flag <jetson>
1 parent 6edd802 commit e31f5a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/package_tools/generate_build_config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,10 @@ def generate_config(args):
7575
cmake_cfg = {}
7676

7777
# wheel platform tag
78-
if args.system in ['linux', 'jetson']:
78+
if args.system in ['linux']:
7979
config['PLATFORM_TAG'] = 'manylinux2014_x86_64'
80+
elif args.system in ['jetson']:
81+
config['PLATFORM_TAG'] = 'any'
8082
else:
8183
config['PLATFORM_TAG'] = get_platform().replace('-',
8284
'_').replace('.', '_')

0 commit comments

Comments
 (0)