On 15/03/2016 20:54, Clemens Heese wrote: > Is there a possibility to use cmake to install just wsprd? the whole qt stuff > is a bit heavy on this small system. Hi Clemens,
Qt should not add much CPU load as it is event driven. The CMake install target for WSJT-X is a single target, it is meant to install a complete package. We could split the project into separate builds with separate CMakeLists.txt scripts for each but that would also imply separate installers for each component as well. IMO a single CMake script is easier to maintain and safer to use, as you have seen any part of the package can be built very quickly for testing. BTW I have not mentioned that you need to tune the Fortran compiler for the target machine as well. Try building the whole WSJT-X application with the following small addition to the CMake configuration: FFLAGS="$CFLAGS" which will pass the same tuning flags to the Fortran compiler as passed to the C and C++ compilers. Once you have done a full build re-builds after updates should normally only take a short time as the re-builds are optimal and minimal. This relies on you not cleaning or reconfiguring the build tree. With respect to you having to use the 'softfp' FP ABI and Pavel using the 'hard' FP ABI, I assume this is due to the prerequisites being built with either the software emulation or the 'softfp' FP ABI. You need to build all of Qt, FFTW3 and Hamlib with the same FP ABI. You may be restricted by the options chosen for your distribution by the package maintainers but you always have the option to build them from source as you should be already doing with Hamlib. 73 Bill G4WJS. ------------------------------------------------------------------------------ Transform Data into Opportunity. Accelerate data analysis in your applications with Intel Data Analytics Acceleration Library. Click to learn more. http://pubads.g.doubleclick.net/gampad/clk?id=278785231&iu=/4140 _______________________________________________ wsjt-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wsjt-devel
