Hi, in the log of a build a warning showing "option 'subdir-objects' is disabled" is most frequent.
https://buildd.debian.org/status/fetch.php?pkg=boinc&arch=i386&ver=7.4.14%2Bdfsg-1&stamp=1407967523 automake: warning: possible forward-incompatibility. automake: At least a source file is in a subdirectory, but the 'subdir-objects' automake: automake option hasn't been enabled. For now, the corresponding output automake: object file(s) will be placed in the top-level directory. However, automake: this behaviour will change in future Automake versions: they will automake: unconditionally cause object files to be placed in the same subdirectory automake: of the corresponding sources. automake: You are advised to start using 'subdir-objects' option throughout your automake: project, to avoid future incompatibilities. As per documentation: https://www.gnu.org/software/automake/manual/html_node/Program-and-Library-Variables.html By default the output file (on Unix systems, the .o file) will be put into the current build directory. However, if the option subdir-objects is in effect in the current directory then the .o file will be put into the subdirectory named after the source file. For instance, with subdir-objects enabled, sub/dir/file.c will be compiled to sub/dir/file.o. Some people prefer this mode of operation. You can specify subdir-objects in AUTOMAKE_OPTIONS (see Options). and: https://www.gnu.org/software/automake/manual/html_node/List-of-Automake-options.html#List-of-Automake-options subdir-objects If this option is specified, then objects are placed into the subdirectory of the build directory corresponding to the subdirectory of the source file. For instance, if the source file is subdir/file.cxx, then the output file would be subdir/file.o. Please add subdir-objects in AUTOMAKE_OPTIONS of Makefile.am https://boinc.berkeley.edu/gitweb/?p=boinc-v2.git;a=blob;f=Makefile.am;hb=HEAD Thanks for considering. _______________________________________________ boinc_dev mailing list [email protected] http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev To unsubscribe, visit the above URL and (near bottom of page) enter your email address.
