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

[RTCB]Windows用cpackテンプレートのアーキテクチャ名取得変数変更 #530

Open
n-kawauchi opened this issue Feb 14, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@n-kawauchi
Copy link

Is your feature request related to a problem? Please describe.

  • 生成するmsiファイル名に含めているアーキテクチャはCPACK_SYSTEM_NAMEの値を利用している
  • 現状、CPACK_SYSTEM_NAMEの値は「win64」or「win32」のみサポートされている
  • OpenRTMは64bit環境のみ対応のためmsiファイル名は次のようになる
    testInPort100_rtm202_win64.msi
  • 今後OpenRTMのインストーラがarm64のWindows環境にも対応した場合、Intel , AMD環境用のmsiと区別できない

Describe the solution you'd like

  • CMAKE_SYSTEM_PROCESSORの値は、システム環境変数のPROCESSOR_ARCHITECTURE値が設定されるとのこと
  • Intel , AMD環境ではPROCESSOR_ARCHITECTUREの値が amd64 となっている
  • これまでIntel , AMD環境用のアーキテクチャ名は、x86_64 を利用してきたので、下記の処理で実現できそう
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "AMD64")
  set(CPACK_ARCH "x86_64")
else()
  set(CPACK_ARCH "arm64")
endif()

Additional context

  • arm64のWindows環境での動作確認後に、上記コードを挿入する具体的な修正箇所を追記する
@n-kawauchi n-kawauchi added the enhancement New feature or request label Feb 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants