File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
example_packages/features_per_compiler/app Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ program main
25
25
print ' (a)' , ' '
26
26
27
27
! Check for feature flags
28
- debug_active = index (options_str, ' -g ' ) > 0
28
+ debug_active = index (options_str, ' -g ' ) > 0
29
29
release_active = index (options_str, ' -O3' ) > 0
30
30
verbose_active = index (options_str, ' -v' ) > 0 .or. index (options_str, ' -v ' ) > 0
31
- fast_active = index (options_str, ' fast' ) > 0
31
+ fast_active = index (options_str, ' fast' ) > 0
32
32
strict_active = index (options_str, ' -std=f2018' ) > 0 .or. index (options_str, ' -stand f18' ) > 0
33
33
34
34
! Display active features
35
35
print ' (a)' , ' Active features detected:'
36
- if (debug_active) print ' (a)' , ' ✓ DEBUG: -g flag found'
36
+ if (debug_active) print ' (a)' , ' ✓ DEBUG: debug flags found'
37
37
if (release_active) print ' (a)' , ' ✓ RELEASE: -O flags found'
38
38
if (verbose_active) print ' (a)' , ' ✓ VERBOSE: -v flag found'
39
39
if (fast_active) print ' (a)' , ' ✓ FAST: fast optimization flags found'
You can’t perform that action at this time.
0 commit comments