You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.5 KiB

  1. From f78ba209b14908bf2b6197293e1f9e3458ddba8e Mon Sep 17 00:00:00 2001
  2. From: Hauke Mehrtens <hauke@hauke-m.de>
  3. Date: Mon, 22 Jun 2015 19:59:47 +0200
  4. Subject: [PATCH 4/5] add some more architectures
  5. This does not scale and this check should be removed.
  6. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
  7. ---
  8. build_common/SConscript | 2 +-
  9. resource/csdk/connectivity/build/SConscript | 2 +-
  10. 2 files changed, 2 insertions(+), 2 deletions(-)
  11. --- a/build_common/SConscript
  12. +++ b/build_common/SConscript
  13. @@ -14,7 +14,7 @@ host_target_map = {
  14. # Map of os and allowed archs (os: allowed archs)
  15. os_arch_map = {
  16. - 'linux': ['x86', 'x86_64', 'arm', 'arm64'],
  17. + 'linux': ['x86', 'x86_64', 'arm', 'arm64', 'mips', 'mipsel', 'mips64', 'mips64el', 'i386', 'powerpc', 'sparc', 'aarch64'],
  18. 'tizen': ['x86', 'x86_64', 'arm', 'arm64', 'armeabi-v7a'],
  19. 'android': ['x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'armeabi-v7a-hard', 'arm64-v8a'],
  20. 'windows': ['x86', 'amd64', 'arm'],
  21. --- a/resource/csdk/connectivity/build/SConscript
  22. +++ b/resource/csdk/connectivity/build/SConscript
  23. @@ -14,7 +14,7 @@ host_target_map = {
  24. # Map of os and allowed archs (os: allowed archs)
  25. os_arch_map = {
  26. - 'linux': ['x86', 'x86_64', 'arm', 'arm64'],
  27. + 'linux': ['x86', 'x86_64', 'arm', 'arm64', 'mips', 'mipsel', 'mips64', 'mips64el', 'i386', 'powerpc', 'sparc', 'aarch64'],
  28. 'tizen': ['x86', 'x86_64', 'arm', 'arm64'],
  29. 'android': ['x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'armeabi-v7a-hard', 'arm64-v8a'],
  30. 'windows': ['x86', 'amd64', 'arm'],