-
Notifications
You must be signed in to change notification settings - Fork 88
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
CMakeLists.txt : remove -O2 from OPENHRP_DEFINITIONS #1177
Conversation
@fkanehiro OPENHRP_DEFNITIONSに '-O2' が入っているのですが、なにか理由があるでしょうか?これでCMKE_BUILD_TYPE=Releaseとしても |
OpenHRPはOpenRTMのcflagsを継承していて、OpenRTMのcflagsにO2が入っている、ということではないでしょうか。 |
なるほど、ありがとうございます.
…--
◉ Kei Okada
2017-07-04 22:46 GMT+09:00 Fumio KANEHIRO <[email protected]>:
OpenHRPはOpenRTMのcflagsを継承していて、OpenRTMのcflagsにO2が入っている、ということではないでしょうか。
http://redmine.openrtm.org/issues/3714
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1177 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAeG3Nh5jx-q5Lnzz_jKS6AVwEvaLUZXks5sKkI7gaJpZM4ONWnm>
.
|
@fkanehiro テストとおりました.どうでしょうか. |
マージしてしまいましたが、OPENHRP_DEFINITIONSが空の環境では、REGEXの引数が足りない、といってエラーになるようです。 |
更に今更なんですが、元々OPENHRP_DEFINITIONSはOPENHRP_CXX_FLAGSから-Dxxを抜き出したものなので、-O2は入っていないのでは。 |
失礼しました.
```
string(REGEX REPLACE "[ ]+-O[0-9][ ]+" " " OPENHRP_DEFINITIONS
"${OPENHRP_DEFINITIONS}")
```
で大丈夫でしょうか?
…--
◉ Kei Okada
2017-07-05 11:46 GMT+09:00 Fumio KANEHIRO <[email protected]>:
マージしてしまいましたが、OPENHRP_DEFINITIONSが空の環境では、REGEXの引数が足りない、といってエラーになるようです。
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1177 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAeG3FSQjHL-z1oYMYbGo--OeV1lwfvAks5sKvkKgaJpZM4ONWnm>
.
|
|
正規表現の読み方がよくわからないのですが、-DNDEBUGから始まっていることによって、まるごとOPENHRP_DEFINITIONSに入っている、ということはないでしょうか。 |
はい |
https://stackoverflow.com/questions/5557261/gcc-multiple-optimization-flags
Before
After