diff --git a/README.md b/README.md
index e31ebf72ba99e49263e9ff91331cf8454f532f6d..28e547d72dfdaf18fde68e4d9074d73b5cd58c96 100644
--- a/README.md
+++ b/README.md
@@ -180,6 +180,17 @@ Other make commands which can be useful:
 make clean : removes all object files, but leaves libraries and executables
 make realclean: removes also object files, libraries and executables.
 
+COMPILATION PROBLEMS
+--------------------
+If you encounter missing trigometric / mathematical functions during compilation, for example;
+
+defineSource.c:(.text+0x2356): undefined reference to sin getParameters.o: In function getParameters:
+
+add  '-lm -lc' around line 109 in Make_include:
+
+LIBS= -L$L -lgenfft $(BLAS) -lm -lc
+
+
 
 UPDATES AND LATEST VERSION
 --------------------------