Has anyone tried running PyroNoise on OS X 10.6? Specifically, what should the flags be set to in the following provided makefile?:
CC = mpicc
CFLAGS = -O3 -m64 -fexceptions
EFLAGS =
EFILE = FDist
LIBS = -lm
OBJS = FDist.o
$(EFILE) : $(OBJS)
@echo "linking..."
$(CC) $(EFLAGS) -o $(EFILE) $(OBJS) $(LIBS)
$(OBJS) : FDist.h
$(CC) $(CFLAGS) -c $*.c
All of the executable seem to compile, however when I run the example I get the following error:
--------------------------------------------------------------------------
Failed to find the following executable:
Host: XXXXX-XXXXXs-MacBook-Pro.local
Executable: FDist
Cannot continue.
--------------------------------------------------------------------------
Any thoughts? Thanks!
CC = mpicc
CFLAGS = -O3 -m64 -fexceptions
EFLAGS =
EFILE = FDist
LIBS = -lm
OBJS = FDist.o
$(EFILE) : $(OBJS)
@echo "linking..."
$(CC) $(EFLAGS) -o $(EFILE) $(OBJS) $(LIBS)
$(OBJS) : FDist.h
$(CC) $(CFLAGS) -c $*.c
All of the executable seem to compile, however when I run the example I get the following error:
--------------------------------------------------------------------------
Failed to find the following executable:
Host: XXXXX-XXXXXs-MacBook-Pro.local
Executable: FDist
Cannot continue.
--------------------------------------------------------------------------
Any thoughts? Thanks!