Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • ihelbig
    Junior Member
    • Dec 2012
    • 3

    samtools installation error "cannot find -lcurses"

    Dear all,
    I am trying to install samtools on OpenSuse and I have already added quite a few development packages that were required. However, it still gives me an error message because of "cannot find -lcurses"

    Does anyone know what that means?

    This is the entire error message

    ih@kkkad007:~/samtools-0.1.18> make
    make[1]: Entering directory `/home/ih/samtools-0.1.18'
    make[2]: Entering directory `/home/ih/samtools-0.1.18'
    make[2]: Nothing to be done for `lib'.
    make[2]: Leaving directory `/home/ih/samtools-0.1.18'
    make[2]: Entering directory `/home/ih/samtools-0.1.18/bcftools'
    make[2]: Nothing to be done for `lib'.
    make[2]: Leaving directory `/home/ih/samtools-0.1.18/bcftools'
    make[2]: Entering directory `/home/ih/samtools-0.1.18/misc'
    make[2]: Nothing to be done for `lib'.
    make[2]: Leaving directory `/home/ih/samtools-0.1.18/misc'
    gcc -g -Wall -O2 -o samtools bam_tview.o bam_plcmd.o sam_view.o bam_rmdup.o bam_rmdupse.o bam_mate.o bam_stat.o bam_color.o bamtk.o kaln.o bam2bcf.o bam2bcf_indel.o errmod.o sample.o cut_target.o phase.o bam2depth.o -Lbcftools libbam.a -lbcf -lcurses -lm -lz
    /usr/lib64/gcc/x86_64-suse-linux/4.7/../../../../x86_64-suse-linux/bin/ld: cannot find -lcurses
    collect2: error: ld returned 1 exit status
    make[1]: *** [samtools] Error 1
    make[1]: Leaving directory `/home/ih/samtools-0.1.18'
    make: *** [all-recur] Error 1
  • GenoMax
    Senior Member
    • Feb 2008
    • 7142

    #2
    You are missing the "ncurses" (and perhaps ncurses-devel) library. You can install it using your package manager.

    Comment

    • maubp
      Peter (Biopython etc)
      • Jul 2009
      • 1544

      #3
      In general, the compiler message missing -lxxx means the library xxx is missing. In this case, ncurses.

      In most Linux distributions libraries like this are split in two, the run time and development packages. This is done for space efficiency - if you're just using pre-compiled code, you don't need all the development files as well. The packages are normally called something like xxx and either xxx-dev or xxx-devel depending on the Linux distribution. (The naming can be more complicated, perhaps libxxx and either libxxx-dev or libxxx-devel in some cases, or with a version number in the name as well).

      As GenoMax wrote, for OpenSuse you'll want "ncurses" and "ncurses-devel".

      Comment

      • swbarnes2
        Senior Member
        • May 2008
        • 910

        #4
        Yeah, on my system I had the same problem. Someone suggested I change that line in the Makefile to 'use lncurses' or something like that, and now it works.

        Comment

        • ihelbig
          Junior Member
          • Dec 2012
          • 3

          #5
          Thank you for the answer. Through some other help page, I had received a similar idea. I just added a "n" in the Makefile to change lcurses to lncurses and then the installation worked.

          Ingo

          Comment

          • ECO
            --Site Admin--
            • Oct 2007
            • 1360

            #6
            On Ubuntu 11.10, this is from installing the package "libncurses5" with apt-get:

            sudo apt-get install libncurses5

            ...getting there.

            Comment

            Latest Articles

            Collapse

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, 06-09-2026, 11:58 AM
            0 responses
            31 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-05-2026, 10:09 AM
            0 responses
            38 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-04-2026, 08:59 AM
            0 responses
            43 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-02-2026, 12:03 PM
            0 responses
            64 views
            0 reactions
            Last Post SEQadmin2  
            Working...