We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ホスト環境はWSL Ubuntu 22.04使用しています。 mobc, subobcをcargo build でビルドすると、32bitバイナリが生成されました。 64bitバイナリで作成する方法はありますか?
~/c2a-core/examples/subobc$ file ~c2a-core/target/i686-unknown-linux-gnu/debug/c2a-example-subobc ~c2a-core/target/i686-unknown-linux-gnu/debug/c2a-example-subobc: ELF 32-bit LSB pie executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, BuildID[sha1]=941b4605b030619d55409b2720b5675e607dfb05, for GNU/Linux 3.2.0, with debug_info, not stripped
Changelogにある情報から CMakeLists.txtやbuild.rsのC2A_BUILD_FOR_32BITをOFF、-m32 オプションを外すなどを行なってみましたが、変わりませんでした。
C2A_BUILD_FOR_32BIT
-m32
64bit バイナリの作成方法。もしくは未サポートの回答があれば。
The text was updated successfully, but these errors were encountered:
@mitsut すみません。別途ローカルで会話していたこともありこちらで回答できていませんでした。 これは C2A の設定というよりは Cargo の設定の問題です。デフォルトのビルドターゲットは .cargo/config.toml で設定されています。examples/mobc の場合は
.cargo/config.toml
examples/mobc
c2a-core/examples/mobc/.cargo/config.toml
Line 2 in 6b955c7
ただし、この設定はリポジトリ全体でも行っているため、この設定を x86_64 に変える場合は、コメントアウトするのではなく、明示的に examples/mobc/.cargo/config.toml で x86_64-unknown-linux-gnu などを指定するとよいです。
examples/mobc/.cargo/config.toml
x86_64-unknown-linux-gnu
Sorry, something went wrong.
No branches or pull requests
詳細
ホスト環境はWSL Ubuntu 22.04使用しています。
mobc, subobcをcargo build でビルドすると、32bitバイナリが生成されました。
64bitバイナリで作成する方法はありますか?
Changelogにある情報から CMakeLists.txtやbuild.rsの
C2A_BUILD_FOR_32BIT
をOFF、-m32
オプションを外すなどを行なってみましたが、変わりませんでした。close条件
64bit バイナリの作成方法。もしくは未サポートの回答があれば。
備考
The text was updated successfully, but these errors were encountered: