We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0278910 + 47d24df commit b8efb93Copy full SHA for b8efb93
Cabal/src/Distribution/Simple/Configure.hs
@@ -2809,7 +2809,7 @@ checkRelocatable verbosity pkg lbi =
2809
-- and RPATH, make sure you add your OS to RPATH-support list of:
2810
-- Distribution.Simple.GHC.getRPaths
2811
checkOS =
2812
- unless (os `elem` [OSX, Linux]) $
+ unless (os `elem` [OSX, Linux, FreeBSD]) $
2813
dieWithException verbosity $
2814
NoOSSupport os "relocatable builds"
2815
where
changelog.d/pr-11042
@@ -0,0 +1,8 @@
1
+---
2
+synopsis: 'Allow relocatable builds on FreeBSD'
3
+packages: [Cabal, cabal-install]
4
+prs: 11042
5
6
+
7
+Properly enables relocatable builds on FreeBSD, just like on
8
+OSX and Linux.
0 commit comments