Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Roman duris/fix jetson wheel platform #2497

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "generate_build_config.py now selects <any> wheel platform for…
… system flag <jetson>"

This reverts commit d722bee.
  • Loading branch information
roman-duris committed Oct 17, 2023
commit 4ae6d2f28641979d638cc57e087829feebc32606
4 changes: 1 addition & 3 deletions tools/package_tools/generate_build_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,8 @@ def generate_config(args):
cmake_cfg = {}

# wheel platform tag
if args.system in ['linux']:
if args.system in ['linux', 'jetson']:
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