[LLVMbugs] [Bug 9822] New: MC produces Undefined symbol while gnu as produces nothing

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Sun May 1 05:36:46 PDT 2011


http://llvm.org/bugs/show_bug.cgi?id=9822

           Summary: MC produces Undefined symbol while gnu as produces
                    nothing
           Product: libraries
           Version: trunk
          Platform: PC
        OS/Version: FreeBSD
            Status: NEW
          Severity: normal
          Priority: P
         Component: Core LLVM classes
        AssignedTo: unassignedbugs at nondot.org
        ReportedBy: rdivacky at freebsd.org
                CC: llvmbugs at cs.uiuc.edu


witten webcamd-0.1.26# clang -c linux.clang.s -o l.o && nm l.o
00000090 T linux_exit
         U linux_exit_mod
00000020 T linux_init
         U linux_init_mod
00000010 t linux_module_exit_start
00000000 d linux_module_exit_start_p
00000000 t linux_module_init_start
00000000 d linux_module_init_start_p
         U thread_init

witten webcamd-0.1.26# as linux.clang.s -o l.o && nm l.o
00000080 T linux_exit
00000020 T linux_init
00000010 t linux_module_exit_start
00000000 d linux_module_exit_start_p
00000000 t linux_module_init_start
00000000 d linux_module_init_start_p
         U thread_init

note the linux_{exit|init}_mod undefined symbol produced by MC.

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the llvm-bugs mailing list