I am new to Linux and trying to install cuDNN on my Ubuntu computer. The installation instructions contain the following:
"Add (installpath) to your build and link process by adding -I(installpath) to your compile line and -L(installpath) -lcudnn to your link line."
How do I add paths to my compile and link lines? I'm guessing there are other terms for these because my search results haven't turned up anything that addressed both paths.
CPPFLAGS='-I/home/foo/sw/include' LDFLAGS='-L/home/foo/sw/lib/' LIBS='-lcudnn' ./configure
– andrew.46 Apr 17 '16 at 05:12