Abort trap 6 when executing a compiled c program -
i downloaded command line program , fighting installation hours now!
it written in c, , make proceeds without error message! when try run program, telling me "abort trap 6"
the makefile looks this:
cc = gcc cflags = -c -o -i$ -dcons libs = -lm objs = method.o func.o para.o \ input.o nesto.o \ display_it.o impo.o method2-2: $(objs) $(cc) $(objs) $(libs) -o method2-2 $(cc) -g $(objs) $(libs) -o method2-2_db method.o: method.c $(cc) $(cflags) method.c func.o: func.c $(cc) $(cflags) func.c input.o: input.c $(cc) $(cflags) input.c nesto.o: nesto.c $(cc) $(cflags) nesto.c para.o: para.c
is maybe wrong @ place?? put lot of println in code see breaks, , before method input called error message occurs. maybe c problem or should contact authors?
Comments
Post a Comment