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
計算物理春の学校2023において、会場の回線が想定より細かったため、事前に仮想環境あるいはWSLを準備してこなかった人たちがnative Windowsによるsampleの実行を余儀なくされた。 その結果、以下のような不具合が発生した。
make
-Wall -Wextra
cmake --build .
The text was updated successfully, but these errors were encountered:
Native WindowsってC++コンパイラって入ってるんでしたっけ?
Sorry, something went wrong.
Visual C++というのがあるのでそれが動いていたようです...が、CMakeがよしなにしてくれすぎたのでよくわかりませんでした。
No branches or pull requests
問題点
計算物理春の学校2023において、会場の回線が想定より細かったため、事前に仮想環境あるいはWSLを準備してこなかった人たちがnative Windowsによるsampleの実行を余儀なくされた。
その結果、以下のような不具合が発生した。
make
が動かない。-Wall -Wextra
を足す親切設計がerrorの原因になる。改善案
make
ではなくcmake --build .
を推奨commandとする。The text was updated successfully, but these errors were encountered: