Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e193126

Browse files
Cronanfilmor
authored andcommitted
Adds support for the Jetson Nano (#986)
1 parent 1463538 commit e193126

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
1111

1212
- Added automatic NuGet package generation in appveyor and local builds
1313
- Added function that sets Py_NoSiteFlag to 1.
14+
- Added support for Jetson Nano.
1415

1516
### Changed
1617

src/runtime/platform/Types.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ public enum MachineType
66
x86_64,
77
armv7l,
88
armv8,
9+
aarch64,
910
Other
1011
};
1112

src/runtime/runtime.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ public class Runtime
143143
["em64t"] = MachineType.x86_64,
144144
["armv7l"] = MachineType.armv7l,
145145
["armv8"] = MachineType.armv8,
146+
["aarch64"] = MachineType.aarch64,
146147
};
147148

148149
/// <summary>

0 commit comments

Comments
 (0)