errors in "make"

2017-03-07 Thread thutt
ts the following errors: > > "pregraph_sparse_63mer.v1.0.3 objects generated. > SOAPdenovo-63mer objects generated. > /usr/bin/ld: ./sparsePregraph/inc/libbam.a(bam_aux.o): relocation > R_X86_64_32S > against `.rodata' can not be used when making a shared objec

Re: errors in "make"

2017-03-07 Thread Edward Welbourne
C (replacing -fpic, if present). If the missing symbol errors persist (after make clean && make), check which source files are meant to provide them and check those have actually been built, Eddy. ___ Bug-make mailing list Bug-make@gnu

errors in "make"

2017-03-07 Thread wu
Dear gnu group, I work on Ubuntu. I tried to install a program, but there are some errors when I do "make". my make version is as follows: /"GNU Make 4.1// //Built for x86_64-pc-linux-gnu// //Copyright (C) 1988-2014 Free Software Foundation, Inc.// //License GPLv3+: GNU GPL version 3 or later

2 errors on make

2011-11-07 Thread andrec
On win32 systems : # Thanks Blackthorne, for corrections on the *.c rule SRC = *.c CFLAGS = -Wall -shared -g GLUT_DIR = src/glut/glx $(GLUT_DIR)/$(SRC) : $(GLUT_DIR)/*.h glut32.dll : gcc $(CFLAGS) $(GLUT_DIR)/$(SRC) -o glut32.dll C:\source\Mesa-7.11 07-11-2011 9:56:19,54 make make:

Re: 2 errors on make

2011-11-07 Thread Sebastian Pipping
On 11/07/2011 11:11 AM, andrec wrote: On win32 systems : # Thanks Blackthorne, for corrections on the *.c rule SRC = *.c CFLAGS = -Wall -shared -g GLUT_DIR = src/glut/glx $(GLUT_DIR)/$(SRC) : $(GLUT_DIR)/*.h glut32.dll : gcc $(CFLAGS) $(GLUT_DIR)/$(SRC) -o glut32.dll