Real World Haskell, 第五章, SimpleJSON 编译错误
Real World Haskell, Chapter 5, SimpleJSON compile error
根据 another question,现实世界 Haskell 的部分内容现已过时。我只读了第 5 章,但在将简单示例编译为可执行二进制文件时遇到问题。
给出了两个模块:
module SimpleJSON
(
JValue(..)
, getString
, getInt
, getDouble
, getBool
, getObject
, getArray
, isNull
) where
data JValue = JString String
| JNumber Double
| JBool Bool
| JNull
| JObject [ (String, JValue) ]
| JArray [ JValue ]
deriving (Eq, Ord, Show)
getString :: JValue -> Maybe String
getString (JString s) = Just s
getString _ = Nothing
getInt (JNumber n) = Just (truncate n)
getInt _ = Nothing
getDouble (JNumber n) = Just n
getDouble _ = Nothing
getBool (JBool b) = Just b
getBool _ = Nothing
getObject (JObject o) = Just o
getObject _ = Nothing
getArray (JArray a) = Just a
getArray _ = Nothing
isNull v = v == JNull
和
module Main () where
import SimpleJSON
main = print (JObject [ ("foo", JNumber 1), ("bar", JBool False ) ])
先编译 SimpleJSON 对象文件的说明:
$ ghc -c SimpleJSON.hs
然后链接可执行文件:
$ ghc -o simple Main.hs SimpleJSON.o
导致错误指出 'main' 未导出:
[2 of 2] Compiling Main ( Main.hs, Main.o )
Main.hs:1:1:
The main function `main' is not exported by module `Main'
但是,如果我将 main
添加到导出列表或省略空导出列表,我会在链接阶段看到很多多重定义错误:
Linking simple ...
SimpleJSON.o:(.data+0x0): multiple definition of `__stginit_SimpleJSON'
./SimpleJSON.o:(.data+0x0): first defined here
SimpleJSON.o:(.data+0x0): multiple definition of `SimpleJSON_getArray_closure'
./SimpleJSON.o:(.data+0x0): first defined here
....
(.text+0x2d40): multiple definition of `SimpleJSON_JObject_static_info'
./SimpleJSON.o:(.text+0x2d40): first defined here
SimpleJSON.o: In function `SimpleJSON_JArray_info':
(.text+0x2d80): multiple definition of `SimpleJSON_JArray_static_info'
./SimpleJSON.o:(.text+0x2d80): first defined here
collect2: error: ld returned 1 exit status
假设这个错误是过时的代码或过时的 ghc 接口的结果,那么编译这个 SimpleJSON 示例的正确方法是什么?
这应该有效:
ghc -o simple Main.hs SimpleJSON.hs
或者甚至像这样的东西也应该起作用:
ghc -c SimpleJSON.hs
ghc -c Main.hs
ghc -o simple Main.o SimpleJSON.o
或者正如@chi 指出的,你可以使用这个:
ghc --make SimpleJSON.hs Main.hs
根据 another question,现实世界 Haskell 的部分内容现已过时。我只读了第 5 章,但在将简单示例编译为可执行二进制文件时遇到问题。
给出了两个模块:
module SimpleJSON
(
JValue(..)
, getString
, getInt
, getDouble
, getBool
, getObject
, getArray
, isNull
) where
data JValue = JString String
| JNumber Double
| JBool Bool
| JNull
| JObject [ (String, JValue) ]
| JArray [ JValue ]
deriving (Eq, Ord, Show)
getString :: JValue -> Maybe String
getString (JString s) = Just s
getString _ = Nothing
getInt (JNumber n) = Just (truncate n)
getInt _ = Nothing
getDouble (JNumber n) = Just n
getDouble _ = Nothing
getBool (JBool b) = Just b
getBool _ = Nothing
getObject (JObject o) = Just o
getObject _ = Nothing
getArray (JArray a) = Just a
getArray _ = Nothing
isNull v = v == JNull
和
module Main () where
import SimpleJSON
main = print (JObject [ ("foo", JNumber 1), ("bar", JBool False ) ])
先编译 SimpleJSON 对象文件的说明:
$ ghc -c SimpleJSON.hs
然后链接可执行文件:
$ ghc -o simple Main.hs SimpleJSON.o
导致错误指出 'main' 未导出:
[2 of 2] Compiling Main ( Main.hs, Main.o )
Main.hs:1:1:
The main function `main' is not exported by module `Main'
但是,如果我将 main
添加到导出列表或省略空导出列表,我会在链接阶段看到很多多重定义错误:
Linking simple ...
SimpleJSON.o:(.data+0x0): multiple definition of `__stginit_SimpleJSON'
./SimpleJSON.o:(.data+0x0): first defined here
SimpleJSON.o:(.data+0x0): multiple definition of `SimpleJSON_getArray_closure'
./SimpleJSON.o:(.data+0x0): first defined here
....
(.text+0x2d40): multiple definition of `SimpleJSON_JObject_static_info'
./SimpleJSON.o:(.text+0x2d40): first defined here
SimpleJSON.o: In function `SimpleJSON_JArray_info':
(.text+0x2d80): multiple definition of `SimpleJSON_JArray_static_info'
./SimpleJSON.o:(.text+0x2d80): first defined here
collect2: error: ld returned 1 exit status
假设这个错误是过时的代码或过时的 ghc 接口的结果,那么编译这个 SimpleJSON 示例的正确方法是什么?
这应该有效:
ghc -o simple Main.hs SimpleJSON.hs
或者甚至像这样的东西也应该起作用:
ghc -c SimpleJSON.hs
ghc -c Main.hs
ghc -o simple Main.o SimpleJSON.o
或者正如@chi 指出的,你可以使用这个:
ghc --make SimpleJSON.hs Main.hs