jeremysalwen / TalentedHack

LV2 port of Autotalent pitch correction plugin
GNU General Public License v3.0
119 stars 18 forks source link

File won't make #11

Open FlameUser706 opened 1 year ago

FlameUser706 commented 1 year ago

I keep on getting this error, and I don't have a clue what's happening

cc -MMD -MP -c --std=c99 -Wall -fPIC `pkg-config --cflags fftw3f` -O3 -g circular_buffer.c -o circular_buffer.o; \
mkdir -p dependencies
/bin/sh: 1: cc: not found
mv circular_buffer.d dependencies/
mv: cannot stat 'circular_buffer.d': No such file or directory
make: *** [Makefile:21: circular_buffer.o] Error 1
smj-edison commented 1 year ago

Double-check line 3: /bin/sh: 1: cc: not found. It looks like you don't have a C compiler, or you haven't specified a default C compiler :) Do you have GCC or clang installed? If so, you can probably add an alias in your ~/.bashrc.

hbarnard commented 11 months ago

If this helps anyone, on Ubuntu 22.04.3 LTS:

sudo apt install fftw-dev
sudo apt install libfftw3-3 libfftw3-bin
sudo apt install lv2-dev
sudo apt install libsndfile1-dev
sudo ap install  libfftw3-dev

Gave me a clean usable compile from make. The process was iterative, hence the bunch of commands. Thanks for code, it'll help my music.