-
Notifications
You must be signed in to change notification settings - Fork 37
refactor: update usgsprograms.txt #236
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
refactor: update usgsprograms.txt #236
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #236 +/- ##
=============================================
- Coverage 84.858% 83.936% -0.923%
=============================================
Files 20 20
Lines 3507 3511 +4
=============================================
- Hits 2976 2947 -29
- Misses 531 564 +33
🚀 New features to boost your workflow:
|
@@ -900,7 +900,7 @@ def _set_cflags(target, cc="gcc", argv=True, osname=None, verbose=False): | |||
elif target == "gridgen": | |||
if osname in ("linux", "darwin"): | |||
if cc.startswith("i"): | |||
cflags += ["-GR"] | |||
cflags += ["-frtti"] |
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.
this leaves the compile command like -fno-rtti ... -frtti
but it works. need to figure out why -fno-rtti
is getting in in the first place.
No description provided.