mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-11-22 23:32:15 +03:00
765d2e43cb
- Use an explicit package-level build step for each architecture, which will build utility binaries and not just the tests/libraries - Enable builds/tests for the PowerPC backend - Build macaw-aarch32-symbolic
28 lines
728 B
Plaintext
28 lines
728 B
Plaintext
-- This adds -Wall and -Werror for runs where we want to catch warnings.
|
|
|
|
package macaw-base
|
|
ghc-options: -Wall -Werror
|
|
-- Macaw-semmc has warnings
|
|
package macaw-semmc
|
|
ghc-options: -Wall
|
|
package macaw-symbolic
|
|
ghc-options: -Wall -Werror
|
|
-- Macaw-ppc has warnings.
|
|
package macaw-ppc
|
|
ghc-options: -Wall -Werror
|
|
package macaw-aarch32
|
|
ghc-options: -Wall -Werror
|
|
-- Macaw-aarch32-symbolic has warnings.
|
|
package macaw-aarch32-symbolic
|
|
ghc-options: -Wall
|
|
package macaw-ppc-symbolic
|
|
ghc-options: -Wall -Werror
|
|
package macaw-x86
|
|
ghc-options: -Wall -Werror
|
|
package macaw-x86-symbolic
|
|
ghc-options: -Wall -Werror
|
|
package macaw-refinement
|
|
ghc-options: -Wall -Werror
|
|
package compare-dwarfdump
|
|
ghc-options: -Wall -Werror
|