Hi! > PFB the steps I followed to compile open_posix_testsuite under LTP.I had > placed ltp-full-20130109 directory under the following path in my work space > in development host./nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109I have a > main Makefile in /nb/devraj/realtime/nv/ct/ltp path which will trigger > ltp-full-20130109's configuration, make all and make install and build will > go successful all the time and I am able to run LTP on my device with these > binaries created.since open_posix_testsuite is FILTER_OUT from default build > through /nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109/testcases/Makefile, > so I have enabled the build by the following changes at this Makefile and > given for the build. > #ifneq ($(WITH_OPEN_POSIX_TESTSUITE),yes)#FILTER_OUT_DIRS > += open_posix_testsuite#endif > I got the following issues *** No rule to make target > `/nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109/scripts/generate-makefiles.sh', > needed by `conformance/interfaces/timer_settime/Makefile'. Stop.so I > copied the > /nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109/testcases/open_posix_testsuite/scripts/generate-makefiles.sh > script to nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109/scripts path and > this issue got resolved. > Again I got the following issues*** No rule to make target > `/nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109/CFLAGS', needed by > `conformance/interfaces/timer_settime/Makefile'. Stop.So I copied the > /nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109/testcases/open_posix_testsuite/CFLAGS > file to nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109/ path and this issue > got resolved. > Same issues repeated for LDFLAGS and LDLIBS and those are resolved by copying > these files to /nb/devraj/realtime/nv/ct/ltp/ltp-full-20130109 path.
You should not touch the Makefiles nor copy any files to the tree. You can either enable Open Posix Testsuite build by: ./configure --with-open-posix-testsuite make or compile it directly by cd testcases/open_posix_testsuite/ make -- Cyril Hrubis [email protected] ------------------------------------------------------------------------------ Introducing Performance Central, a new site from SourceForge and AppDynamics. Performance Central is your source for news, insights, analysis and resources for efficient Application Performance Management. Visit us today! http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
