Skip to content

Commit

Permalink
generate_build_config.py now selects <any> wheel platform for system …
Browse files Browse the repository at this point in the history
…flag <jetson>
  • Loading branch information
roman-duris committed Oct 17, 2023
1 parent 4ae6d2f commit a591227
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/package_tools/generate_build_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ def generate_config(args):
cmake_cfg = {}

# wheel platform tag
if args.system in ['linux', 'jetson']:
if args.system in ['linux']:
config['PLATFORM_TAG'] = 'manylinux2014_x86_64'
elif args.system in ['jetson']:
config['PLATFORM_TAG'] = 'any'
else:
config['PLATFORM_TAG'] = get_platform().replace('-',
'_').replace('.', '_')
Expand Down

0 comments on commit a591227

Please sign in to comment.