-
Notifications
You must be signed in to change notification settings - Fork 10
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
WallオプションででるWarningを消す #59
Conversation
-Werror オプションをつけると, https://github.com/ut-issl/c2a-core/runs/4341988868?check_suite_focus=true のように確かに落ちたが,Warningが出た時点でコンパイルが止まった. できれば最後までコンパイルし,Warning一覧を見たいところ. |
コンパイル結果をファイルに出力し,grepするのがいいのかしら? |
82aae1e
to
8f1e1ee
Compare
8905379
to
c5c4920
Compare
CIは落とさない WextraのビルドCIをいれた |
Wextraはともかく(多少減らしたけど),Wallは一旦全て消えたのでは? |
else() | ||
target_compile_options(${PROJECT_NAME} PUBLIC "${CMAKE_CXX_FLAGS}-Wall") | ||
set(CMAKE_CXX_FLAGS "-finput-charset=cp932 -m32 -rdynamic -Wall -g -Wno-unknown-pragma") # SJIS, 32bit | ||
set(CMAKE_C_FLAGS "-finput-charset=cp932 -m32 -rdynamic -Wall -g -Wno-unknown-pragmas") # SJIS, 32bit | ||
if(ADD_WERROR_FLAGS) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これはtarget_compile_options()
でやるべきですが,どうせ後で直すので一旦スルー
Cmakeまわりは #35 でお願いするとして,マージします. |
概要
WallオプションででるWarningを消す
Issue
詳細
Warningを消すことにともなう重要な変更
検証結果
影響範囲
今後,WarningがあるPRは通らなくなる
補足
NA