Skip to content

Commit

Permalink
Merge pull request #422 from jkrimmer/jkrimmer-patch-1
Browse files Browse the repository at this point in the history
Fix examples on Mac OSX with Apple Silicon
  • Loading branch information
ahbarnett authored Feb 16, 2024
2 parents a0afe04 + 0cfd947 commit 45deb9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ endif
@echo "Done running: $(EXAMPLES)"
# fun fact: gnu make patterns match those with shortest "stem", so this works:
examples/%: examples/%.o $(DYNLIB)
$(CXX) $(CXXFLAGS) ${LDFLAGS} $< $(ABSDYNLIB) -o $@
$(CXX) $(CXXFLAGS) ${LDFLAGS} $< $(ABSDYNLIB) $(LIBSFFT) -o $@
examples/%c: examples/%c.o $(DYNLIB)
$(CC) $(CFLAGS) ${LDFLAGS} $< $(ABSDYNLIB) $(LIBSFFT) $(CLINK) -o $@
examples/%cf: examples/%cf.o $(DYNLIB)
Expand Down

0 comments on commit 45deb9f

Please sign in to comment.