Skip to content

Commit 59fbd9e

Browse files
committed
Make sure it doesn't try to build for darwin if leading-underscore is off.
1 parent 35187a3 commit 59fbd9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rts/rts.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ flag static-libzstd
287287
manual: True
288288
flag leading-underscore
289289
default: False
290-
manual: False
290+
manual: True
291291
flag unregisterised
292292
default: False
293293
manual: True
@@ -352,8 +352,8 @@ library
352352
DerivedConstants.h
353353
stg/MachRegsForHost.h
354354

355-
if !flag(leading-underscore)
356-
if os(darwin)
355+
if os(darwin)
356+
if !flag(leading-underscore)
357357
buildable: False
358358

359359
if arch(javascript)

0 commit comments

Comments
 (0)