File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
} :
14
14
let
15
15
16
- configureFlags = lib . optional hostPlatform . isWindows "--disable-split-sections" ;
16
+ configureFlags = [ "--disable-split-sections" ] ;
17
17
18
18
wineIservWrapperScript = enableProfiling :
19
19
let
73
73
################################################################################
74
74
# Build logic (TH support via remote iserv via wine)
75
75
#
76
- ghcOptions = lib . optionals hostPlatform . isWindows ( [
76
+ ghcOptions = [
77
77
"-fexternal-interpreter"
78
78
"-pgmi" "${ wineIservWrapper } /bin/iserv-wrapper"
79
79
# TODO: this should be automatically injected based on the extraLibrary.
80
80
"-L${ mingw_w64_pthreads } /lib"
81
81
"-L${ mingw_w64_pthreads } /bin"
82
82
"-L${ gmp } /lib"
83
- ] ) ;
83
+ ] ;
84
84
85
85
################################################################################
86
86
# Test logic via wine
103
103
export Path
104
104
${ wine } /bin/wine64 $@
105
105
'' ;
106
- testWrapper = lib . optional hostPlatform . isWindows "${ wineTestWrapper } /bin/test-wrapper" ;
106
+ testWrapper = [ "${ wineTestWrapper } /bin/test-wrapper" ] ;
107
107
108
108
in { inherit testWrapper ghcOptions configureFlags ; }
You can’t perform that action at this time.
0 commit comments