diff --git a/compiler/GHC/Driver/Session.hs b/compiler/GHC/Driver/Session.hs index b640fa4a50c374f9709b5b25d4aaa02d1f66efab..4d37cd1d9dbdbc95f3c0d19bba612d227ee3fdf7 100644 --- a/compiler/GHC/Driver/Session.hs +++ b/compiler/GHC/Driver/Session.hs @@ -3834,6 +3834,9 @@ needSourceNotes dflags = debugLevel dflags > 0 -- | Should we use `-XLinker -rpath` when linking or not? -- See Note [-fno-use-rpaths] useXLinkerRPath :: DynFlags -> OS -> Bool +-- wasm shared libs don't have RPATH at all and wasm-ld doesn't accept +-- any RPATH-related flags +useXLinkerRPath dflags _ | ArchWasm32 <- platformArch $ targetPlatform dflags = False useXLinkerRPath _ OSDarwin = False -- See Note [Dynamic linking on macOS] useXLinkerRPath dflags _ = gopt Opt_RPath dflags