Skip to content
Snippets Groups Projects
Commit 2b6c376d authored by Gershom Bazerman's avatar Gershom Bazerman
Browse files

Revert "ordNub for extra stanzas"

This reverts commit a94b3f54.
parent a94b3f54
No related branches found
No related tags found
No related merge requests found
...@@ -89,6 +89,7 @@ import Distribution.Version (thisVersion) ...@@ -89,6 +89,7 @@ import Distribution.Version (thisVersion)
import Distribution.Compat.Graph (IsNode(..)) import Distribution.Compat.Graph (IsNode(..))
import Control.Monad import Control.Monad
import qualified Data.Set as Set
import qualified Data.ByteString.Lazy as LBS import qualified Data.ByteString.Lazy as LBS
import System.FilePath ( (</>), (<.>), takeDirectory ) import System.FilePath ( (</>), (<.>), takeDirectory )
import System.Directory ( getCurrentDirectory, removeFile, doesFileExist ) import System.Directory ( getCurrentDirectory, removeFile, doesFileExist )
...@@ -433,36 +434,52 @@ generateCode codeGens nm pdesc bi lbi clbi verbosity = do ...@@ -433,36 +434,52 @@ generateCode codeGens nm pdesc bi lbi clbi verbosity = do
-- information. -- information.
addExtraCSources :: BuildInfo -> [FilePath] -> BuildInfo addExtraCSources :: BuildInfo -> [FilePath] -> BuildInfo
addExtraCSources bi extras = bi { cSources = new } addExtraCSources bi extras = bi { cSources = new }
where new = ordNub (extras ++ cSources bi) where new = Set.toList $ old `Set.union` exs
old = Set.fromList $ cSources bi
exs = Set.fromList extras
-- | Add extra C++ sources generated by preprocessing to build -- | Add extra C++ sources generated by preprocessing to build
-- information. -- information.
addExtraCxxSources :: BuildInfo -> [FilePath] -> BuildInfo addExtraCxxSources :: BuildInfo -> [FilePath] -> BuildInfo
addExtraCxxSources bi extras = bi { cxxSources = new } addExtraCxxSources bi extras = bi { cxxSources = new }
where new = ordNub (extras ++ cxxSources bi) where new = Set.toList $ old `Set.union` exs
old = Set.fromList $ cxxSources bi
exs = Set.fromList extras
-- | Add extra C-- sources generated by preprocessing to build -- | Add extra C-- sources generated by preprocessing to build
-- information. -- information.
addExtraCmmSources :: BuildInfo -> [FilePath] -> BuildInfo addExtraCmmSources :: BuildInfo -> [FilePath] -> BuildInfo
addExtraCmmSources bi extras = bi { cmmSources = new } addExtraCmmSources bi extras = bi { cmmSources = new }
where new = ordNub (extras ++ cmmSources bi) where new = Set.toList $ old `Set.union` exs
old = Set.fromList $ cmmSources bi
exs = Set.fromList extras
-- | Add extra ASM sources generated by preprocessing to build -- | Add extra ASM sources generated by preprocessing to build
-- information. -- information.
addExtraAsmSources :: BuildInfo -> [FilePath] -> BuildInfo addExtraAsmSources :: BuildInfo -> [FilePath] -> BuildInfo
addExtraAsmSources bi extras = bi { asmSources = new } addExtraAsmSources bi extras = bi { asmSources = new }
where new = ordNub (extras ++ asmSources bi) where new = Set.toList $ old `Set.union` exs
old = Set.fromList $ asmSources bi
exs = Set.fromList extras
-- | Add extra HS modules generated by preprocessing to build -- | Add extra HS modules generated by preprocessing to build
-- information. -- information.
addExtraOtherModules :: BuildInfo -> [ModuleName.ModuleName] -> BuildInfo addExtraOtherModules :: BuildInfo -> [ModuleName.ModuleName] -> BuildInfo
addExtraOtherModules bi extras = bi { otherModules = new } addExtraOtherModules bi extras = bi { otherModules = new }
where new = ordNub (extras ++ otherModules bi) where new = Set.toList $ old `Set.union` exs
old = Set.fromList $ otherModules bi
exs = Set.fromList extras
-- | Add extra source dir for generated modules. -- | Add extra source dir for generated modules.
addSrcDir :: BuildInfo -> FilePath -> BuildInfo addSrcDir :: BuildInfo -> FilePath -> BuildInfo
addSrcDir bi extra = bi { hsSourceDirs = new } addSrcDir bi extra = bi { hsSourceDirs = new }
where new = ordNub (unsafeMakeSymbolicPath extra : hsSourceDirs bi) where new = Set.toList $ old `Set.union` ex
old = Set.fromList $ hsSourceDirs bi
ex = Set.fromList [unsafeMakeSymbolicPath extra] -- TODO
replComponent :: ReplOptions replComponent :: ReplOptions
-> Verbosity -> Verbosity
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment