Undefined symbols base_DataziTuple_ZxxxT_con_info

Hello everyone, I am trying to compile my program, but during the linking phase I see errors like: (.text+0x66dd7):fake: undefined reference to `base_DataziTuple_Z110T_con_info Library libHSbase.a contains symbols base_DataziTuple_ZxxxT_con_info for xxx <=62. It look like I hit some compiler limit (I used GHC 6.8.3 for compilation). Any thoughts are appreciated. Thank you, Dmitry

Hello dmitry, Wednesday, November 5, 2008, 10:46:20 PM, you wrote:
(.text+0x66dd7):fake: undefined reference to `base_DataziTuple_Z110T_con_info
looks like you omitted --make on cmdline. without this switch, ghc don't automaticaly links in packages used in you program. alternatively you may try to use "--package base" (for this case) but --make is more generic way - it automatically links in all packages used -- Best regards, Bulat mailto:Bulat.Ziganshin@gmail.com

Hello Bulat,
Thanks for suggestion. The problem is not reproducible w/ GHC 6.10.1.
Regards,
Dmitry
On Thu, Nov 6, 2008 at 2:01 AM, Bulat Ziganshin
Hello dmitry,
Wednesday, November 5, 2008, 10:46:20 PM, you wrote:
(.text+0x66dd7):fake: undefined reference to `base_DataziTuple_Z110T_con_info
looks like you omitted --make on cmdline. without this switch, ghc don't automaticaly links in packages used in you program. alternatively you may try to use "--package base" (for this case) but --make is more generic way - it automatically links in all packages used
-- Best regards, Bulat mailto:Bulat.Ziganshin@gmail.com
participants (2)
-
Bulat Ziganshin
-
dmitry shkurko