mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-16 16:29:32 -06:00
23 lines
429 B
Haskell
23 lines
429 B
Haskell
{-# LANGUAGE CPP #-}
|
|
module GF.Infra.BuildInfo where
|
|
import System.Info
|
|
import Data.Version(showVersion)
|
|
|
|
{-# NOINLINE buildInfo #-}
|
|
buildInfo =
|
|
"Built on "++os++"/"++arch
|
|
++" with "++compilerName++"-"++showVersion compilerVersion
|
|
++", flags:"
|
|
#ifdef USE_INTERRUPT
|
|
++" interrupt"
|
|
#endif
|
|
#ifdef SERVER_MODE
|
|
++" server"
|
|
#endif
|
|
#ifdef NEW_COMP
|
|
++" new-comp"
|
|
#endif
|
|
#ifdef C_RUNTIME
|
|
++" c-runtime"
|
|
#endif
|