Dear Bill,

There you go:

CC = gcc

#CFLAGS= -I/usr/include -Wall -Wno-missing-braces -O3 -ffast-math
CFLAGS = -I/usr/include -Wall -Wno-missing-braces -O3 -march=armv7-a 
-mcpu=cortex-a9 -mtune=cortex-a9 -mfpu=neon -mfloat-abi=softfp -ffast-math
LDFLAGS = -L/usr/lib
LIBS = -lfftw3 -lm

# Default rules
%.o: %.c $(DEPS)
        ${CC} ${CFLAGS} -c $<

all:    wsprd wsprsim wsprd_exp

DEPS =  wsprsim_utils.h wsprd_utils.h fano.h jelinek.h nhash.h
OBJS1 = wsprd.o wsprsim_utils.o wsprd_utils.o tab.o fano.o jelinek.o nhash.o 
init_random_seed.o
wsprd: $(OBJS1)
        $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LIBS)

OBJS2 = wsprsim.o wsprsim_utils.o wsprd_utils.o tab.o fano.o nhash.o
wsprsim: $(OBJS2)
        $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LIBS)

OBJS3 = wsprd_exp.o wsprsim_utils.o wsprd_utils.o tab.o fano.o jelinek.o nhash.o
wsprd_exp: $(OBJS3)
        $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LIBS)
clean:
        rm -f *.o wsprd wsprsim wsprd_exp
        rm -f *.dat *.out *.txt *.TXT


Regards,

Clemens
Am 15.03.2016 um 16:43 schrieb Bill Somerville <[email protected]>:

> On 15/03/2016 14:18, Clemens Heese wrote:
>> In case I do it with a version compiled with the Makefile in the wsprd 
>> folder (modified with the compiler flags - got this one form Pavel) and now 
>> it is MUCH faster (everything still decodes ...):
> Hi Clemens,
> 
> please send me the modified Makefile so I can work out why the options 
> set up by CMake are not giving a fast executable.
> 
> 73
> Bill
> G4WJS.
> 
> ------------------------------------------------------------------------------
> Transform Data into Opportunity.
> Accelerate data analysis in your applications with
> Intel Data Analytics Acceleration Library.
> Click to learn more.
> http://pubads.g.doubleclick.net/gampad/clk?id=278785231&iu=/4140
> _______________________________________________
> wsjt-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/wsjt-devel


------------------------------------------------------------------------------
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785231&iu=/4140
_______________________________________________
wsjt-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to