File tree 2 files changed +0
-11
lines changed
Cabal/src/Distribution/PackageDescription/Check 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -802,9 +802,6 @@ checkGHCOptions title t opts = do
802
802
checkFlags
803
803
[" -fasm" ]
804
804
(PackageDistInexcusable $ OptFasm title)
805
- checkFlags
806
- [" -fvia-C" ]
807
- (PackageDistSuspicious $ OptViaC title)
808
805
checkFlags
809
806
[" -fhpc" ]
810
807
(PackageDistInexcusable $ OptHpc title)
Original file line number Diff line number Diff line change @@ -164,7 +164,6 @@ data CheckExplanation
164
164
| SubdirRelPath
165
165
| SubdirGoodRelPath String
166
166
| OptFasm String
167
- | OptViaC String
168
167
| OptHpc String
169
168
| OptProf String
170
169
| OptO String
@@ -520,13 +519,6 @@ ppExplanation (OptFasm fieldName) =
520
519
++ fieldName
521
520
++ " : -fasm' is unnecessary and will not work on CPU "
522
521
++ " architectures other than x86, x86-64, ppc or sparc."
523
- ppExplanation (OptViaC fieldName) =
524
- " '"
525
- ++ fieldName
526
- ++ " : -fvia-C' is usually unnecessary. If your package "
527
- ++ " needs -via-C for correctness rather than performance then it "
528
- ++ " is using the FFI incorrectly and will probably not work with GHC "
529
- ++ " 6.10 or later."
530
522
ppExplanation (OptHpc fieldName) =
531
523
" '"
532
524
++ fieldName
You can’t perform that action at this time.
0 commit comments