12/08/2019 14:40, Jananee Parthasarathy: > From: Hari Kumar Vemula <hari.kumarx.vem...@intel.com> > > Add a programmer's guide section for meson ut > > Signed-off-by: Hari Kumar Vemula <hari.kumarx.vem...@intel.com> > Acked-by: Bruce Richardson <bruce.richard...@intel.com> > Acked-by: Michael Santana <msant...@redhat.com>
The last part about enabling some skipped test case is not correct. Because this patch is very old, I apply it without this last part: > +To help find missing libraries, the user can specify additional search paths > +for those libraries as below: > + > +* Single path:: > + > + $ export LIBRARY_PATH=path > + > +* Multiple paths:: > + > + $ export LIBRARY_PATH=path1:path2:path3 > + > +Some functionality may be disabled due to library headers being missed as > part > +of the build. To specify an additional search path for headers at > +configuration time, use one of the commands below: > + > +* Single path:: > + > + $ CFLAGS=-I/path meson build > + > +* Multiple paths:: > + > + $ CFLAGS=`-I/path1 -I/path2 meson build` > + > +Below are some examples that show how to export libraries and their header > +paths. > + > +To specify a single library at a time:: > + > + $ export LIBRARY_PATH=/root/wireless_libs/zuc/ > + $ CFLAGS=-I/root/wireless_libs/zuc/include meson build > + > +To specify multiple libraries at a time:: > + > + $ export LIBRARY_PATH=/path/zuc/:/path/libsso_kasumi/build/ > + $ CFLAGS=-I/path/zuc/include \ > + -I/path/libsso_kasumi/include \ > + meson build