I have this makefile that works on a ubuntu dist with an older compiler 2011..., but i need it to work on mac yosemite now with a new compiler. But i get this warning message when i want to compile my makefile
ipo: warning #11016: Warning unknown option --start-group
ipo: warning #11016: Warning unknown option --end-group
ld: unknown option: --start-group
make: *** [run_tl_J2iso_Jakob.x] Error 1
here is my makefile code
LLIBS = -L/Applications/MATLAB_R2015b.app/bin/maci64 -leng -lmat -lmx -lut -Wl,--start-group ${MKLROOT}/libmkl_intel_lp64.a ${MKLROOT}/libmkl_core.a ${MKLROOT}/libmkl_intel_thread.a -Wl,--end-group -lpthread -lm
Does anyone know whats wrong?