Could a gatekeeper review the following small patch to configure.ac? (I will also update "configure" by running autoconf.)
The patch removes libelf from the list of target libraries since it is not used. There is an internal libelf which is linked into cg.so (see osprey/be/cg/Makefile.gbase), but that is built in a separate directory and unaffected by this change. -David Coakley / AMD Open Source Compiler Engineering Index: configure.ac =================================================================== --- configure.ac (revision 3411) +++ configure.ac (working copy) @@ -367,19 +367,16 @@ # LIBLIST. if test "${BUILD_TARGET}" = "SL"; then -LIBLIST="include libelf" + LIBLIST="include" +elif test "${BUILD_TARGET}" = "IA64"; then + LIBLIST="include libopenmp libfortran libmv libu" else - if test "${BUILD_TARGET}" = "IA64"; then - LIBLIST="include libelf libopenmp libfortran libmv libu" - else - LIBLIST="include libelf libopenmp libfortran libhugetlbfs libmv libu" - fi + LIBLIST="include libopenmp libfortran libhugetlbfs libmv libu" fi AC_CONFIG_FILES([ osprey/targdir_lib/Makefile osprey/targdir_lib/include/Makefile - osprey/targdir_lib/libelf/Makefile osprey/targdir_lib/libopenmp/Makefile osprey/targdir_lib/libfortran/Makefile osprey/targdir_lib/libhugetlbfs/Makefile @@ -400,7 +397,6 @@ AC_CONFIG_FILES([ osprey/targdir_lib2/Makefile:osprey/targdir_lib/Makefile.in osprey/targdir_lib2/include/Makefile:osprey/targdir_lib/include/Makefile.in - osprey/targdir_lib2/libelf/Makefile:osprey/targdir_lib/libelf/Makefile.in osprey/targdir_lib2/libopenmp/Makefile:osprey/targdir_lib/libopenmp/Makefile.in osprey/targdir_lib2/libfortran/Makefile:osprey/targdir_lib/libfortran/Makefile.in osprey/targdir_lib2/libhugetlbfs/Makefile:osprey/targdir_lib/libhugetlbfs/Makefile.in ------------------------------------------------------------------------------ Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! Tap into the largest installed PC base & get more eyes on your game by optimizing for Intel(R) Graphics Technology. Get started today with the Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs. http://p.sf.net/sfu/intelisp-dev2dev _______________________________________________ Open64-devel mailing list Open64-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/open64-devel