Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

liblsf.so: undefined symbol: shm_open #12

Open
samfux84 opened this issue Jun 26, 2018 · 14 comments
Open

liblsf.so: undefined symbol: shm_open #12

samfux84 opened this issue Jun 26, 2018 · 14 comments

Comments

@samfux84
Copy link

I have installed the python-drmaa bindings for LSF DRMAA 1.1.1 and when I try to import the package, it fails with the following error message:

[sfux@eu-login-01 ~]$ module load new gcc/4.8.2 python/2.7.12 lsf_drmaa/1.1.1
Autoloading openblas/0.2.13_seq
[sfux@eu-login-01 ~]$ python
Python 2.7.12 (default, Nov  2 2016, 13:46:00) 
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import drmaa
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/cluster/apps/python/2.7.12/x86_64/lib64/python2.7/site-packages/drmaa/__init__.py", line 65, in <module>
    from .session import JobInfo, JobTemplate, Session
  File "/cluster/apps/python/2.7.12/x86_64/lib64/python2.7/site-packages/drmaa/session.py", line 39, in <module>
    from drmaa.helpers import (adapt_rusage, Attribute, attribute_names_iterator,
  File "/cluster/apps/python/2.7.12/x86_64/lib64/python2.7/site-packages/drmaa/helpers.py", line 36, in <module>
    from drmaa.wrappers import (drmaa_attr_names_t, drmaa_attr_values_t,
  File "/cluster/apps/python/2.7.12/x86_64/lib64/python2.7/site-packages/drmaa/wrappers.py", line 56, in <module>
    _lib = CDLL(libpath, mode=RTLD_GLOBAL)
  File "/cluster/apps/python/2.7.12/x86_64/lib64/python2.7/ctypes/__init__.py", line 362, in __init__
    self._handle = _dlopen(self._name, mode)
OSError: /cluster/apps/lsf/10.1/linux2.6-glibc2.3-x86_64/lib/liblsf.so: undefined symbol: shm_open
>>>

Is this a known problem ? And can you provide any help with this issue ?

@adamsla
Copy link
Contributor

adamsla commented Jun 26, 2018

What version of LSF?

@jakirkham
Copy link

shm_open should be in GLIBC. So not sure why it wouldn't be available. Maybe if -lrt was missed in LDFLAGS, but am pretty sure lsf-drmaa already includes this.

@adamsla
Copy link
Contributor

adamsla commented Jun 26, 2018

@samfux84
Copy link
Author

@adamsla We are using LSF 10.1. Is LSF DRMAA supporting LSF 10.1 ? If not, then it would be cool if IBM could make a new DRMAA release that supports version 10.1 as I would like to recommend to our cluster users to use DRMAA to interface with the LSF batch scheduler instead of using any third-party software.

I tried to recompile LSF DRMAA 1.1.1 with LSF 10.1 but already the configure script is failing. Please find below an excerpt from the config.log:

configure:12401: checking for usable LSF libraries/headers
configure:12435: /cluster/apps/gcc/4.8.2/bin/gcc -o conftest -pedantic -ansi -g -O2 -O0 -pthread -D_REENTRANT -D_THREAD_SAFE  -D_GNU_SOURCE -I/cluster/apps/lsf/10.1/include  -L/cluster/apps/lsf/10.1/linux2.6-glibc2.3-x86_64/lib -Wl,-R/cluster/apps/lsf/10.1/linux2.6-glibc2.3-x86_64/lib conftest.c -pthread  -lbat -llsf -lnsl -lm >&5
In file included from /cluster/apps/lsf/10.1/include/lsf/lsbatch.h:24:0,
                 from conftest.c:25:
/cluster/apps/lsf/10.1/include/lsf/lsf.h:104:14: warning: ISO C90 does not support 'long long' [-Wlong-long]
 typedef long long int LS_LONG_INT;
              ^
/cluster/apps/lsf/10.1/include/lsf/lsf.h:105:23: warning: ISO C90 does not support 'long long' [-Wlong-long]
 typedef unsigned long long LS_UNS_LONG_INT;
                       ^
In file included from conftest.c:25:0:
/cluster/apps/lsf/10.1/include/lsf/lsbatch.h:3487:41: error: expected identifier before '/' token
     COMPUTEMODE_DEFAULT           = 0,  //!< Default compute mode -- multiple contexts per device
                                         ^
/cluster/apps/lsf/10.1/include/lsf/lsbatch.h:5970:10: warning: ISO C90 does not support 'long long' [-Wlong-long]
     long long jobInfoMemCacheSize;
          ^
configure:12439: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "FedStage DRMAA for LSF"
| #define PACKAGE_TARNAME "lsf_drmaa"
| #define PACKAGE_VERSION "1.1.1"
| #define PACKAGE_STRING "FedStage DRMAA for LSF 1.1.1"
| #define PACKAGE_BUGREPORT "drmaa-lsf-users@lists.fedstage.com"
| #define PACKAGE "lsf_drmaa"
| #define VERSION "1.1.1"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define DEBUGGING 1
| #define DEVELOPMENT 1
| /* end confdefs.h.  */
|
|       #include <lsf/lsbatch.h>
|       #include <stdio.h>
| int
| main ()
| {
|    if (lsb_init("test") < 0) {
|               lsb_perror("lsb_init");
|               return 1;
|               }
|   ;
|   return 0;
| }
configure:12469: result: no
configure:12477: error:
LSF libraries/headers not found;
add --with-lsf-inc and --with-lsf-lib with appropriate locations.

@adamsla
Copy link
Contributor

adamsla commented Jun 27, 2018

Samual,

These are compile time options. I encountered the same issue while playing with this on the latest version of LSF too. We need to change the compatibility level in the configure scripts. Though I did see this, I did not ever get to the point of updating the configure.ac to incorporate the required compatibility level. It's a simple thing. If you google for this, you should be able to find the specific flags to change/remove.

The way we are doing support on this and the other packages housed here at this site, is to be primarily community driven. So, if you find the options, simply create a pull request with the required Sign Off section, and we will merge the update strait away.

If you don't feel comfortable with that, let us know. I can ask a Dev to take some time to perform that change, though it'll take a few days. Simply let us know.

Larry

@samfux84
Copy link
Author

samfux84 commented Jun 28, 2018

@adamsla: I would not feel comfortable doing a PR myself and would be happy if you could ask a dev to fix this problem.

I did some investigation on this problem a found a few things that I would like to share with you.

In LSF 9.1.2, the header file lsbatch.h did not have any C++ style single line comments. Single line comments were done like

/* this is a comment */

instead of

// this is a comment

When looking at lsbatch.h in LSF 10.1, around line 3486, there were four lines with C++ single line comments added (//)

This is not compatible with the -ansi compiler option of gcc and therefore breaks LSF DRMAA (at line 11546 in configure and at line 70 in configure.ac, you set the -ansi option).

The GCC manpage states:

-ansi

In C mode, support all ISO C90 programs. In C++ mode, remove GNU
extensions that conflict with ISO C++.

This turns off certain features of GCC that are incompatible with
ISO C90 (when compiling C code), or of standard C++ (when compiling
C++ code), such as the "asm" and "typeof" keywords, and predefined
macros such as "unix" and "vax" that identify the type of system
you are using. It also enables the undesirable and rarely used ISO
trigraph feature. For the C compiler, it disables recognition of
C++ style // comments as well as the "inline" keyword.

Therefore the configure script of LSF DRMAA fails.

@adamsla
Copy link
Contributor

adamsla commented Jun 29, 2018

Yea, if memory serves me well, we should be removing the -ansi flag for sure.

@adamsla
Copy link
Contributor

adamsla commented Jun 29, 2018

@samfux84, what is your build environment? What OS and version?

@jakirkham
Copy link

We solved this by adding -std=c99 to CFLAGS. Though agree it would be better if the comment were fixed. Since that is coming from LSF, sounds like that is outside lsf-drmaa.

As a workaround to the shm_open issue, would suggest adding export LDFLAGS="${LDFLAGS} -lrt" to your build scripts. That should ensure librt.so is picked up during linkage, which hopefully avoids this ordering issue.

@adamsla
Copy link
Contributor

adamsla commented Jun 29, 2018

Both good suggestions. I'll do a commit to correct as soon as I have a few cycles.

@samfux84
Copy link
Author

samfux84 commented Jul 2, 2018

@adamsla Please find below information about my build environment:

OS: CentOS Linux release 7.4.1708 (Core)
Compiler: GCC 4.8.2
LSF version: 10.1

@jakirkham Thank you for providing these hints. I will try to build LSF DRMAA 1.1.1 with these hints.

@samfux84
Copy link
Author

I tried again to compile LSF DRMAA, this time of our second cluster (CentOS Linux release 7.5, GCC 4.8.5, LSF verison 10.1). Even when following all hints from this issue, it is still not compiling. Can you please provide a release that is not broken ?

I have a request from a user of our cluster that requires this library for his workflow to run on the cluster, as the software that he would like to use depends on LSF DRMAA to submit jobs to the cluster.

Any help is appreciated.

Please find below the entire logs:

[sfux@lo-a2-017 3418715.tmpdir]$ tar -xzvf v1.11.tar.gz 
lsf-drmaa-1.11/
lsf-drmaa-1.11/COPYING
lsf-drmaa-1.11/IBMDCO.md
lsf-drmaa-1.11/Makefile.am
lsf-drmaa-1.11/Makefile.in
lsf-drmaa-1.11/NEWS
lsf-drmaa-1.11/README.md
lsf-drmaa-1.11/TODO
lsf-drmaa-1.11/_config.yml
lsf-drmaa-1.11/aclocal.m4
lsf-drmaa-1.11/autoclean.sh
lsf-drmaa-1.11/autogen.sh
lsf-drmaa-1.11/config.h.in
lsf-drmaa-1.11/configure
lsf-drmaa-1.11/configure.ac
lsf-drmaa-1.11/doc/
lsf-drmaa-1.11/doc/Makefile.am
lsf-drmaa-1.11/doc/Makefile.in
lsf-drmaa-1.11/doc/readme.html
lsf-drmaa-1.11/doc/readme.pdf
lsf-drmaa-1.11/doc/readme.tex
lsf-drmaa-1.11/drmaa_utils/
lsf-drmaa-1.11/drmaa_utils/COPYING
lsf-drmaa-1.11/drmaa_utils/Doxyfile.in
lsf-drmaa-1.11/drmaa_utils/INSTALL
lsf-drmaa-1.11/drmaa_utils/Makefile.am
lsf-drmaa-1.11/drmaa_utils/Makefile.in
lsf-drmaa-1.11/drmaa_utils/README
lsf-drmaa-1.11/drmaa_utils/aclocal.m4
lsf-drmaa-1.11/drmaa_utils/autoclean.sh
lsf-drmaa-1.11/drmaa_utils/autogen.sh
lsf-drmaa-1.11/drmaa_utils/config.h.in
lsf-drmaa-1.11/drmaa_utils/configure
lsf-drmaa-1.11/drmaa_utils/configure.ac
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/Makefile.am
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/Makefile.in
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/common.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/compat.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/compat.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/conf.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/conf.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/conf_impl.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/conf_tab.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/conf_tab.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/conf_tab.y
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/datetime.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/datetime.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/datetime_impl.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/datetime_tab.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/datetime_tab.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/datetime_tab.y
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/drmaa.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/drmaa_attrib.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/drmaa_attrib.gperf
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/drmaa_attrib.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/drmaa_base.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/drmaa_base.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/drmaa_util.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/drmaa_util.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/environ.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/environ.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/exception.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/exception.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/fsd_job.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/fsd_session.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/fsd_util.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/iter.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/iter.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/job.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/logging.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/logging.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/lookup3.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/lookup3.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/session.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/template.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/template.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/thread.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/thread.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/timedelta.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/timedelta.rl
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/util.h
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/xmalloc.c
lsf-drmaa-1.11/drmaa_utils/drmaa_utils/xmalloc.h
lsf-drmaa-1.11/drmaa_utils/m4/
lsf-drmaa-1.11/drmaa_utils/m4/ac_c_bigendian_cross.m4
lsf-drmaa-1.11/drmaa_utils/m4/acx_pthread.m4
lsf-drmaa-1.11/drmaa_utils/m4/ax_docutils.m4
lsf-drmaa-1.11/drmaa_utils/m4/ax_func_gettid.m4
lsf-drmaa-1.11/drmaa_utils/m4/ax_func_va_copy.m4
lsf-drmaa-1.11/drmaa_utils/m4/ax_gcc_warnings.m4
lsf-drmaa-1.11/drmaa_utils/m4/ax_gperf.m4
lsf-drmaa-1.11/drmaa_utils/m4/bison_ylwrap.sh
lsf-drmaa-1.11/drmaa_utils/m4/missing-dev-prog.sh
lsf-drmaa-1.11/drmaa_utils/scripts/
lsf-drmaa-1.11/drmaa_utils/scripts/config.guess
lsf-drmaa-1.11/drmaa_utils/scripts/config.sub
lsf-drmaa-1.11/drmaa_utils/scripts/depcomp
lsf-drmaa-1.11/drmaa_utils/scripts/install-sh
lsf-drmaa-1.11/drmaa_utils/scripts/ltmain.sh
lsf-drmaa-1.11/drmaa_utils/scripts/missing
lsf-drmaa-1.11/drmaa_utils/scripts/ylwrap
lsf-drmaa-1.11/drmaa_utils/test/
lsf-drmaa-1.11/drmaa_utils/test/Makefile.am
lsf-drmaa-1.11/drmaa_utils/test/Makefile.in
lsf-drmaa-1.11/drmaa_utils/test/exception_test.c
lsf-drmaa-1.11/lsf_drmaa/
lsf-drmaa-1.11/lsf_drmaa/Makefile.am
lsf-drmaa-1.11/lsf_drmaa/Makefile.in
lsf-drmaa-1.11/lsf_drmaa/drmaa.c
lsf-drmaa-1.11/lsf_drmaa/job.c
lsf-drmaa-1.11/lsf_drmaa/job.h
lsf-drmaa-1.11/lsf_drmaa/lsf_drmaa.conf.example
lsf-drmaa-1.11/lsf_drmaa/m4/
lsf-drmaa-1.11/lsf_drmaa/m4/acx_pthread.m4
lsf-drmaa-1.11/lsf_drmaa/m4/ax_docutils.m4
lsf-drmaa-1.11/lsf_drmaa/m4/ax_gcc_warnings.m4
lsf-drmaa-1.11/lsf_drmaa/m4/ax_lsf.m4
lsf-drmaa-1.11/lsf_drmaa/m4/missing-dev-prog.sh
lsf-drmaa-1.11/lsf_drmaa/native.c
lsf-drmaa-1.11/lsf_drmaa/native.h
lsf-drmaa-1.11/lsf_drmaa/native.rl
lsf-drmaa-1.11/lsf_drmaa/session.c
lsf-drmaa-1.11/lsf_drmaa/session.h
lsf-drmaa-1.11/lsf_drmaa/util.c
lsf-drmaa-1.11/lsf_drmaa/util.h
lsf-drmaa-1.11/m4/
lsf-drmaa-1.11/m4/acx_pthread.m4
lsf-drmaa-1.11/m4/ax_docutils.m4
lsf-drmaa-1.11/m4/ax_gcc_warnings.m4
lsf-drmaa-1.11/m4/ax_lsf.m4
lsf-drmaa-1.11/m4/missing-dev-prog.sh
lsf-drmaa-1.11/sample/
lsf-drmaa-1.11/sample/Makefile.am
lsf-drmaa-1.11/sample/Makefile.in
lsf-drmaa-1.11/sample/sub.c
lsf-drmaa-1.11/scripts/
lsf-drmaa-1.11/scripts/config.guess
lsf-drmaa-1.11/scripts/config.sub
lsf-drmaa-1.11/scripts/depcomp
lsf-drmaa-1.11/scripts/install-sh
lsf-drmaa-1.11/scripts/ltmain.sh
lsf-drmaa-1.11/scripts/missing
[sfux@lo-a2-017 3418715.tmpdir]$ cd lsf-drmaa-1.11/
[sfux@lo-a2-017 lsf-drmaa-1.11]$ ls
aclocal.m4    autogen.sh   configure     _config.yml  doc          IBMDCO.md  m4           Makefile.in  README.md  scripts
autoclean.sh  config.h.in  configure.ac  COPYING      drmaa_utils  lsf_drmaa  Makefile.am  NEWS         sample     TODO
[sfux@lo-a2-017 lsf-drmaa-1.11]$ module list

Currently Loaded Modules:
  1) StdEnv   2) gcc/4.8.5   3) eth_proxy   4) autoconf/2.69   5) ragel/6.10   6) libtool/2.4.6   7) automake/1.15

 

[sfux@lo-a2-017 lsf-drmaa-1.11]$ cp README.md README
[sfux@lo-a2-017 lsf-drmaa-1.11]$ CFLAGS="${CFLAGS} -std=c99" LDFLAGS="${LDFLAGS} -lrt" ./configure --prefix=/cluster/apps/lsf_drmaa/1.1.1/x86_64 --with-lsf-inc=/cluster/apps/lsf/10.1/include --with-lsf-lib=/cluster/apps/lsf/10.1/linux3.10-glibc2.17-x86_64/lib
checking for a BSD-compatible install... /cluster/apps/sfos/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /cluster/apps/sfos/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... /usr/bin/gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /usr/bin/gcc accepts -g... yes
checking for /usr/bin/gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of /usr/bin/gcc... gcc3
checking how to run the C preprocessor... /usr/bin/cpp
checking for ranlib... ranlib
checking for a BSD-compatible install... /cluster/apps/sfos/bin/install -c
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /cluster/apps/sfos/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by /usr/bin/gcc... /cluster/apps/sfos/bin/ld
checking if the linker (/cluster/apps/sfos/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /cluster/apps/sfos/bin/nm -B
checking the name lister (/cluster/apps/sfos/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /cluster/apps/sfos/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for ar... ar
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /cluster/apps/sfos/bin/nm -B output from /usr/bin/gcc object... ok
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /usr/bin/gcc supports -fno-rtti -fno-exceptions... no
checking for /usr/bin/gcc option to produce PIC... -fPIC -DPIC
checking if /usr/bin/gcc PIC flag -fPIC -DPIC works... yes
checking if /usr/bin/gcc static flag -static works... no
checking if /usr/bin/gcc supports -c -o file.o... yes
checking if /usr/bin/gcc supports -c -o file.o... (cached) yes
checking whether the /usr/bin/gcc linker (/cluster/apps/sfos/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for ragel... ragel
checking for rst2html... no
checking for rst2html.py... no
checking for rst2latex... no
checking for rst2latex.py... no
checking whether gcc accepts -Wno-missing-field-initializers... yes
checking whether gcc accepts -Wno-format-zero-length... yes
checking host system type... (cached) x86_64-unknown-linux-gnu
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
configure: checking for LSF
checking for LSF compile flags... -I/cluster/apps/lsf/10.1/include
checking for LSF library dir... /cluster/apps/lsf/10.1/linux3.10-glibc2.17-x86_64/lib
checking for main in -lnsl... yes
checking for main in -lm... yes
checking for usable LSF libraries/headers... yes
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for working volatile... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for strftime... yes
checking for vprintf... yes
checking for _doprnt... no
checking for asprintf... yes
checking for fstat... yes
checking for getcwd... yes
checking for gettimeofday... yes
checking for localtime_r... yes
checking for memset... yes
checking for setenv... yes
checking for strcasecmp... yes
checking for strchr... yes
checking for strdup... yes
checking for strerror... yes
checking for strlcpy... no
checking for strndup... yes
checking for strstr... yes
checking for strtol... yes
checking for vasprintf... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating lsf_drmaa/Makefile
config.status: creating sample/Makefile
config.status: creating doc/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
=== configuring in drmaa_utils (/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils)
configure: running /bin/sh ./configure --disable-option-checking '--prefix=/cluster/apps/lsf_drmaa/1.1.1/x86_64'  '--with-lsf-inc=/cluster/apps/lsf/10.1/include' '--with-lsf-lib=/cluster/apps/lsf/10.1/linux3.10-glibc2.17-x86_64/lib' 'CC=/usr/bin/gcc' 'CFLAGS= -std=c99' 'LDFLAGS= -lrt' 'CPP=/usr/bin/cpp' --cache-file=/dev/null --srcdir=.
checking for a BSD-compatible install... /cluster/apps/sfos/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /cluster/apps/sfos/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... /usr/bin/gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /usr/bin/gcc accepts -g... yes
checking for /usr/bin/gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of /usr/bin/gcc... gcc3
checking how to run the C preprocessor... /usr/bin/cpp
checking for ranlib... ranlib
checking for a BSD-compatible install... /cluster/apps/sfos/bin/install -c
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /cluster/apps/sfos/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by /usr/bin/gcc... /cluster/apps/sfos/bin/ld
checking if the linker (/cluster/apps/sfos/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /cluster/apps/sfos/bin/nm -B
checking the name lister (/cluster/apps/sfos/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /cluster/apps/sfos/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for ar... ar
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /cluster/apps/sfos/bin/nm -B output from /usr/bin/gcc object... ok
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /usr/bin/gcc supports -fno-rtti -fno-exceptions... no
checking for /usr/bin/gcc option to produce PIC... -fPIC -DPIC
checking if /usr/bin/gcc PIC flag -fPIC -DPIC works... yes
checking if /usr/bin/gcc static flag -static works... no
checking if /usr/bin/gcc supports -c -o file.o... yes
checking if /usr/bin/gcc supports -c -o file.o... (cached) yes
checking whether the /usr/bin/gcc linker (/cluster/apps/sfos/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for bison... bison -y
checking for gperf... yes
checking for ragel... ragel
checking for rst2html... no
checking for rst2html.py... no
checking for rst2latex... no
checking for rst2latex.py... no
checking for dot... no
checking whether gcc accepts -Wno-missing-field-initializers... yes
checking whether gcc accepts -Wno-format-zero-length... yes
checking host system type... (cached) x86_64-unknown-linux-gnu
checking whether byte ordering is bigendian... no
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for inttypes.h... (cached) yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking whether time.h and sys/time.h may both be included... yes
checking for pid_t... yes
checking for size_t... yes
checking for mode_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_gmtoff... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for working volatile... yes
checking for working alloca.h... yes
checking for alloca... yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking for strftime... yes
checking for asprintf... yes
checking for fstat... yes
checking for getcwd... yes
checking for gettimeofday... yes
checking for localtime_r... yes
checking for memset... yes
checking for strchr... yes
checking for strdup... yes
checking for strerror... yes
checking for strlcpy... no
checking for strndup... yes
checking for strstr... yes
checking for vasprintf... yes
checking for gettid... yes
checking for va_copy... yes
checking for __va_copy... yes
checking for library containing backtrace... none required
configure: creating ./config.status
config.status: creating Makefile
config.status: creating drmaa_utils/Makefile
config.status: creating test/Makefile
config.status: creating Doxyfile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands

Run 'make' now.

Run 'make' now.
[sfux@lo-a2-017 lsf-drmaa-1.11]$ make
make  all-recursive
make[1]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11'
Making all in drmaa_utils
make[2]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils'
make  all-recursive
make[3]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils'
Making all in drmaa_utils
make[4]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils/drmaa_utils'
make  all-am
make[5]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils/drmaa_utils'
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-compat.lo -MD -MP -MF .deps/libdrmaa_utils_la-compat.Tpo -c -o libdrmaa_utils_la-compat.lo `test -f 'compat.c' || echo './'`compat.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-compat.lo -MD -MP -MF .deps/libdrmaa_utils_la-compat.Tpo -c compat.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-compat.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-compat.lo -MD -MP -MF .deps/libdrmaa_utils_la-compat.Tpo -c compat.c -o libdrmaa_utils_la-compat.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-compat.Tpo .deps/libdrmaa_utils_la-compat.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-conf.lo -MD -MP -MF .deps/libdrmaa_utils_la-conf.Tpo -c -o libdrmaa_utils_la-conf.lo `test -f 'conf.c' || echo './'`conf.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-conf.lo -MD -MP -MF .deps/libdrmaa_utils_la-conf.Tpo -c conf.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-conf.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-conf.lo -MD -MP -MF .deps/libdrmaa_utils_la-conf.Tpo -c conf.c -o libdrmaa_utils_la-conf.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-conf.Tpo .deps/libdrmaa_utils_la-conf.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-conf_tab.lo -MD -MP -MF .deps/libdrmaa_utils_la-conf_tab.Tpo -c -o libdrmaa_utils_la-conf_tab.lo `test -f 'conf_tab.c' || echo './'`conf_tab.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-conf_tab.lo -MD -MP -MF .deps/libdrmaa_utils_la-conf_tab.Tpo -c conf_tab.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-conf_tab.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-conf_tab.lo -MD -MP -MF .deps/libdrmaa_utils_la-conf_tab.Tpo -c conf_tab.c -o libdrmaa_utils_la-conf_tab.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-conf_tab.Tpo .deps/libdrmaa_utils_la-conf_tab.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-datetime.lo -MD -MP -MF .deps/libdrmaa_utils_la-datetime.Tpo -c -o libdrmaa_utils_la-datetime.lo `test -f 'datetime.c' || echo './'`datetime.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-datetime.lo -MD -MP -MF .deps/libdrmaa_utils_la-datetime.Tpo -c datetime.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-datetime.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-datetime.lo -MD -MP -MF .deps/libdrmaa_utils_la-datetime.Tpo -c datetime.c -o libdrmaa_utils_la-datetime.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-datetime.Tpo .deps/libdrmaa_utils_la-datetime.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-datetime_tab.lo -MD -MP -MF .deps/libdrmaa_utils_la-datetime_tab.Tpo -c -o libdrmaa_utils_la-datetime_tab.lo `test -f 'datetime_tab.c' || echo './'`datetime_tab.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-datetime_tab.lo -MD -MP -MF .deps/libdrmaa_utils_la-datetime_tab.Tpo -c datetime_tab.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-datetime_tab.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-datetime_tab.lo -MD -MP -MF .deps/libdrmaa_utils_la-datetime_tab.Tpo -c datetime_tab.c -o libdrmaa_utils_la-datetime_tab.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-datetime_tab.Tpo .deps/libdrmaa_utils_la-datetime_tab.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_attrib.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_attrib.Tpo -c -o libdrmaa_utils_la-drmaa_attrib.lo `test -f 'drmaa_attrib.c' || echo './'`drmaa_attrib.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_attrib.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_attrib.Tpo -c drmaa_attrib.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-drmaa_attrib.o
drmaa_attrib.gperf: In function ‘drmaa_attrib_lookup’:
drmaa_attrib.gperf:179:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:179:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:179:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:179:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:179:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:179:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:179:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:179:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:56:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_job_category, t(DRMAA_ATTR_JOB_CATEGORY)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:56:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_job_category, t(DRMAA_ATTR_JOB_CATEGORY)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:54:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_v_env, t(DRMAA_ATTR_JOB_ENVIRONMENT)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:60:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_start_time, t(DRMAA_ATTR_START_TIME)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:63:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_output_path, t(DRMAA_ATTR_OUTPUT_PATH)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:63:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_output_path, t(DRMAA_ATTR_OUTPUT_PATH)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:69:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_wct_slimit, t(DRMAA_ATTR_SOFT_WALL_CLOCK_TIME_LIMIT)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:71:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_duration_slimit, t(DRMAA_ATTR_SOFT_RUN_DURATION_LIMIT)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:71:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_duration_slimit, t(DRMAA_ATTR_SOFT_RUN_DURATION_LIMIT)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:66:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_transfer_files, t(DRMAA_ATTR_TRANSFER_FILES)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:61:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_job_name, t(DRMAA_ATTR_JOB_NAME)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:61:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_job_name, t(DRMAA_ATTR_JOB_NAME)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:61:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_job_name, t(DRMAA_ATTR_JOB_NAME)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:61:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_job_name, t(DRMAA_ATTR_JOB_NAME)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:65:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_join_files, t(DRMAA_ATTR_JOIN_FILES)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:65:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_join_files, t(DRMAA_ATTR_JOIN_FILES)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:65:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_join_files, t(DRMAA_ATTR_JOIN_FILES)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
drmaa_attrib.gperf:65:7: warning: missing initializer for field ‘attr’ of ‘const struct drmaa_attrib’ [-Wmissing-field-initializers]
 drmaa_join_files, t(DRMAA_ATTR_JOIN_FILES)
       ^
drmaa_attrib.gperf:48:56: note: ‘attr’ declared here
 struct drmaa_attrib { int name; const fsd_attribute_t *attr; }
                                                        ^
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_attrib.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_attrib.Tpo -c drmaa_attrib.c -o libdrmaa_utils_la-drmaa_attrib.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-drmaa_attrib.Tpo .deps/libdrmaa_utils_la-drmaa_attrib.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-environ.lo -MD -MP -MF .deps/libdrmaa_utils_la-environ.Tpo -c -o libdrmaa_utils_la-environ.lo `test -f 'environ.c' || echo './'`environ.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-environ.lo -MD -MP -MF .deps/libdrmaa_utils_la-environ.Tpo -c environ.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-environ.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-environ.lo -MD -MP -MF .deps/libdrmaa_utils_la-environ.Tpo -c environ.c -o libdrmaa_utils_la-environ.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-environ.Tpo .deps/libdrmaa_utils_la-environ.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-exception.lo -MD -MP -MF .deps/libdrmaa_utils_la-exception.Tpo -c -o libdrmaa_utils_la-exception.lo `test -f 'exception.c' || echo './'`exception.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-exception.lo -MD -MP -MF .deps/libdrmaa_utils_la-exception.Tpo -c exception.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-exception.o
exception.c: In function ‘fsd_exc_init’:
exception.c:86:3: warning: ISO C does not support the ‘%m’ gnu_printf format [-Wformat=]
   fsd_log_fatal(( "pthread_key_create: %m" ));
   ^
exception.c: In function ‘fsd_exc_get_stack’:
exception.c:102:3: warning: ISO C does not support the ‘%m’ gnu_printf format [-Wformat=]
   fsd_log_fatal(( "pthread_once: %m" ));
   ^
exception.c:115:4: warning: ISO C does not support the ‘%m’ gnu_printf format [-Wformat=]
    fsd_log_fatal(( "pthread_setspecific: %m" ));
    ^
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-exception.lo -MD -MP -MF .deps/libdrmaa_utils_la-exception.Tpo -c exception.c -o libdrmaa_utils_la-exception.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-exception.Tpo .deps/libdrmaa_utils_la-exception.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-iter.lo -MD -MP -MF .deps/libdrmaa_utils_la-iter.Tpo -c -o libdrmaa_utils_la-iter.lo `test -f 'iter.c' || echo './'`iter.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-iter.lo -MD -MP -MF .deps/libdrmaa_utils_la-iter.Tpo -c iter.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-iter.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-iter.lo -MD -MP -MF .deps/libdrmaa_utils_la-iter.Tpo -c iter.c -o libdrmaa_utils_la-iter.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-iter.Tpo .deps/libdrmaa_utils_la-iter.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-fsd_job.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_job.Tpo -c -o libdrmaa_utils_la-fsd_job.lo `test -f 'fsd_job.c' || echo './'`fsd_job.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-fsd_job.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_job.Tpo -c fsd_job.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-fsd_job.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-fsd_job.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_job.Tpo -c fsd_job.c -o libdrmaa_utils_la-fsd_job.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-fsd_job.Tpo .deps/libdrmaa_utils_la-fsd_job.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-logging.lo -MD -MP -MF .deps/libdrmaa_utils_la-logging.Tpo -c -o libdrmaa_utils_la-logging.lo `test -f 'logging.c' || echo './'`logging.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-logging.lo -MD -MP -MF .deps/libdrmaa_utils_la-logging.Tpo -c logging.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-logging.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-logging.lo -MD -MP -MF .deps/libdrmaa_utils_la-logging.Tpo -c logging.c -o libdrmaa_utils_la-logging.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-logging.Tpo .deps/libdrmaa_utils_la-logging.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-lookup3.lo -MD -MP -MF .deps/libdrmaa_utils_la-lookup3.Tpo -c -o libdrmaa_utils_la-lookup3.lo `test -f 'lookup3.c' || echo './'`lookup3.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-lookup3.lo -MD -MP -MF .deps/libdrmaa_utils_la-lookup3.Tpo -c lookup3.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-lookup3.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-lookup3.lo -MD -MP -MF .deps/libdrmaa_utils_la-lookup3.Tpo -c lookup3.c -o libdrmaa_utils_la-lookup3.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-lookup3.Tpo .deps/libdrmaa_utils_la-lookup3.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-fsd_session.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_session.Tpo -c -o libdrmaa_utils_la-fsd_session.lo `test -f 'fsd_session.c' || echo './'`fsd_session.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-fsd_session.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_session.Tpo -c fsd_session.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-fsd_session.o
fsd_session.c: In function ‘fsd_drmaa_session_new’:
fsd_session.c:237:2: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long unsigned int’ [-Wformat=]
  fsd_log_debug(("sizeof(fsd_drmaa_session_t)=%d", sizeof(fsd_drmaa_session_t)));
  ^
fsd_session.c: In function ‘fsd_drmaa_session_destroy_nowait’:
fsd_session.c:318:2: warning: implicit declaration of function ‘fsd_get_logging_fd’ [-Wimplicit-function-declaration]
  fsd_log_fd = fsd_get_logging_fd();
  ^
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-fsd_session.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_session.Tpo -c fsd_session.c -o libdrmaa_utils_la-fsd_session.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-fsd_session.Tpo .deps/libdrmaa_utils_la-fsd_session.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-template.lo -MD -MP -MF .deps/libdrmaa_utils_la-template.Tpo -c -o libdrmaa_utils_la-template.lo `test -f 'template.c' || echo './'`template.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-template.lo -MD -MP -MF .deps/libdrmaa_utils_la-template.Tpo -c template.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-template.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-template.lo -MD -MP -MF .deps/libdrmaa_utils_la-template.Tpo -c template.c -o libdrmaa_utils_la-template.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-template.Tpo .deps/libdrmaa_utils_la-template.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-timedelta.lo -MD -MP -MF .deps/libdrmaa_utils_la-timedelta.Tpo -c -o libdrmaa_utils_la-timedelta.lo `test -f 'timedelta.c' || echo './'`timedelta.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-timedelta.lo -MD -MP -MF .deps/libdrmaa_utils_la-timedelta.Tpo -c timedelta.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-timedelta.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-timedelta.lo -MD -MP -MF .deps/libdrmaa_utils_la-timedelta.Tpo -c timedelta.c -o libdrmaa_utils_la-timedelta.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-timedelta.Tpo .deps/libdrmaa_utils_la-timedelta.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-thread.lo -MD -MP -MF .deps/libdrmaa_utils_la-thread.Tpo -c -o libdrmaa_utils_la-thread.lo `test -f 'thread.c' || echo './'`thread.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-thread.lo -MD -MP -MF .deps/libdrmaa_utils_la-thread.Tpo -c thread.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-thread.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-thread.lo -MD -MP -MF .deps/libdrmaa_utils_la-thread.Tpo -c thread.c -o libdrmaa_utils_la-thread.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-thread.Tpo .deps/libdrmaa_utils_la-thread.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-fsd_util.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_util.Tpo -c -o libdrmaa_utils_la-fsd_util.lo `test -f 'fsd_util.c' || echo './'`fsd_util.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-fsd_util.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_util.Tpo -c fsd_util.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-fsd_util.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-fsd_util.lo -MD -MP -MF .deps/libdrmaa_utils_la-fsd_util.Tpo -c fsd_util.c -o libdrmaa_utils_la-fsd_util.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-fsd_util.Tpo .deps/libdrmaa_utils_la-fsd_util.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_util.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_util.Tpo -c -o libdrmaa_utils_la-drmaa_util.lo `test -f 'drmaa_util.c' || echo './'`drmaa_util.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_util.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_util.Tpo -c drmaa_util.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-drmaa_util.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_util.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_util.Tpo -c drmaa_util.c -o libdrmaa_utils_la-drmaa_util.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-drmaa_util.Tpo .deps/libdrmaa_utils_la-drmaa_util.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-xmalloc.lo -MD -MP -MF .deps/libdrmaa_utils_la-xmalloc.Tpo -c -o libdrmaa_utils_la-xmalloc.lo `test -f 'xmalloc.c' || echo './'`xmalloc.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-xmalloc.lo -MD -MP -MF .deps/libdrmaa_utils_la-xmalloc.Tpo -c xmalloc.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-xmalloc.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-xmalloc.lo -MD -MP -MF .deps/libdrmaa_utils_la-xmalloc.Tpo -c xmalloc.c -o libdrmaa_utils_la-xmalloc.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-xmalloc.Tpo .deps/libdrmaa_utils_la-xmalloc.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_base.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_base.Tpo -c -o libdrmaa_utils_la-drmaa_base.lo `test -f 'drmaa_base.c' || echo './'`drmaa_base.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_base.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_base.Tpo -c drmaa_base.c  -fPIC -DPIC -o .libs/libdrmaa_utils_la-drmaa_base.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -fPIC -Wno-unused -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_utils_la-drmaa_base.lo -MD -MP -MF .deps/libdrmaa_utils_la-drmaa_base.Tpo -c drmaa_base.c -o libdrmaa_utils_la-drmaa_base.o >/dev/null 2>&1
mv -f .deps/libdrmaa_utils_la-drmaa_base.Tpo .deps/libdrmaa_utils_la-drmaa_base.Plo
/bin/sh ../libtool --tag=CC   --mode=link /usr/bin/gcc  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -static -lrt -o libdrmaa_utils.la  libdrmaa_utils_la-compat.lo libdrmaa_utils_la-conf.lo libdrmaa_utils_la-conf_tab.lo libdrmaa_utils_la-datetime.lo libdrmaa_utils_la-datetime_tab.lo libdrmaa_utils_la-drmaa_attrib.lo libdrmaa_utils_la-environ.lo libdrmaa_utils_la-exception.lo libdrmaa_utils_la-iter.lo libdrmaa_utils_la-fsd_job.lo libdrmaa_utils_la-logging.lo libdrmaa_utils_la-lookup3.lo libdrmaa_utils_la-fsd_session.lo libdrmaa_utils_la-template.lo libdrmaa_utils_la-timedelta.lo libdrmaa_utils_la-thread.lo libdrmaa_utils_la-fsd_util.lo libdrmaa_utils_la-drmaa_util.lo libdrmaa_utils_la-xmalloc.lo libdrmaa_utils_la-drmaa_base.lo  -pthread 
libtool: link: ar cru .libs/libdrmaa_utils.a  libdrmaa_utils_la-compat.o libdrmaa_utils_la-conf.o libdrmaa_utils_la-conf_tab.o libdrmaa_utils_la-datetime.o libdrmaa_utils_la-datetime_tab.o libdrmaa_utils_la-drmaa_attrib.o libdrmaa_utils_la-environ.o libdrmaa_utils_la-exception.o libdrmaa_utils_la-iter.o libdrmaa_utils_la-fsd_job.o libdrmaa_utils_la-logging.o libdrmaa_utils_la-lookup3.o libdrmaa_utils_la-fsd_session.o libdrmaa_utils_la-template.o libdrmaa_utils_la-timedelta.o libdrmaa_utils_la-thread.o libdrmaa_utils_la-fsd_util.o libdrmaa_utils_la-drmaa_util.o libdrmaa_utils_la-xmalloc.o libdrmaa_utils_la-drmaa_base.o
libtool: link: ranlib .libs/libdrmaa_utils.a
libtool: link: ( cd ".libs" && rm -f "libdrmaa_utils.la" && ln -s "../libdrmaa_utils.la" "libdrmaa_utils.la" )
make[5]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils/drmaa_utils'
make[4]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils/drmaa_utils'
Making all in test
make[4]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils/test'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils/test'
make[4]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils'
make[4]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils'
make[3]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils'
make[2]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/drmaa_utils'
Making all in lsf_drmaa
make[2]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/lsf_drmaa'
make  all-am
make[3]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/lsf_drmaa'
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_la-drmaa.lo -MD -MP -MF .deps/libdrmaa_la-drmaa.Tpo -c -o libdrmaa_la-drmaa.lo `test -f 'drmaa.c' || echo './'`drmaa.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-drmaa.lo -MD -MP -MF .deps/libdrmaa_la-drmaa.Tpo -c drmaa.c  -fPIC -DPIC -o .libs/libdrmaa_la-drmaa.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-drmaa.lo -MD -MP -MF .deps/libdrmaa_la-drmaa.Tpo -c drmaa.c -o libdrmaa_la-drmaa.o >/dev/null 2>&1
mv -f .deps/libdrmaa_la-drmaa.Tpo .deps/libdrmaa_la-drmaa.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_la-job.lo -MD -MP -MF .deps/libdrmaa_la-job.Tpo -c -o libdrmaa_la-job.lo `test -f 'job.c' || echo './'`job.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-job.lo -MD -MP -MF .deps/libdrmaa_la-job.Tpo -c job.c  -fPIC -DPIC -o .libs/libdrmaa_la-job.o
job.c: In function ‘lsfdrmaa_job_control’:
job.c:102:14: warning: variable ‘job_id’ set but not used [-Wunused-but-set-variable]
  LS_LONG_INT job_id;
              ^
job.c: In function ‘lsfdrmaa_job_update_status’:
job.c:195:2: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘time_t’ [-Wformat=]
  fsd_log_enter(( "({job_id=%s, time_delta=%d})", self->job_id, time(NULL) - self->submit_time ));
  ^
job.c: In function ‘lsfdrmaa_job_read_job_info’:
job.c:273:3: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long int’ [-Wformat=]
   fsd_log_debug(( "\n  runRusage.utime: %d", job_info->runRusage.utime ));
   ^
job.c:274:3: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long int’ [-Wformat=]
   fsd_log_debug(( "\n  runRusage.stime: %d", job_info->runRusage.stime ));
   ^
job.c: In function ‘lsfdrmaa_job_set_req’:
job.c:482:7: warning: variable ‘transfer_error’ set but not used [-Wunused-but-set-variable]
  bool transfer_error = false;
       ^
job.c:481:7: warning: variable ‘transfer_output’ set but not used [-Wunused-but-set-variable]
  bool transfer_output = false;
       ^
job.c:480:7: warning: variable ‘transfer_input’ set but not used [-Wunused-but-set-variable]
  bool transfer_input = false;
       ^
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-job.lo -MD -MP -MF .deps/libdrmaa_la-job.Tpo -c job.c -o libdrmaa_la-job.o >/dev/null 2>&1
mv -f .deps/libdrmaa_la-job.Tpo .deps/libdrmaa_la-job.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_la-native.lo -MD -MP -MF .deps/libdrmaa_la-native.Tpo -c -o libdrmaa_la-native.lo `test -f 'native.c' || echo './'`native.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-native.lo -MD -MP -MF .deps/libdrmaa_la-native.Tpo -c native.c  -fPIC -DPIC -o .libs/libdrmaa_la-native.o
native.rl: In function ‘lsfdrmaa_native_parse’:
native.c:191:18: warning: unused variable ‘lsf_native_specification_en_main’ [-Wunused-variable]
 static const int lsf_native_specification_en_main = 39;
                  ^
native.c:189:18: warning: unused variable ‘lsf_native_specification_error’ [-Wunused-variable]
 static const int lsf_native_specification_error = 0;
                  ^
native.c:188:18: warning: unused variable ‘lsf_native_specification_first_final’ [-Wunused-variable]
 static const int lsf_native_specification_first_final = 39;
                  ^
native.rl: In function ‘lsfdrmaa_parse_datetime’:
native.rl:611:14: warning: unused variable ‘i’ [-Wunused-variable]
  const char *i;
              ^
native.c:915:18: warning: unused variable ‘lsfdrmaa_datetime_en_main’ [-Wunused-variable]
 static const int lsfdrmaa_datetime_en_main = 1;
                  ^
native.c:913:18: warning: unused variable ‘lsfdrmaa_datetime_error’ [-Wunused-variable]
 static const int lsfdrmaa_datetime_error = 0;
                  ^
native.c:912:18: warning: unused variable ‘lsfdrmaa_datetime_first_final’ [-Wunused-variable]
 static const int lsfdrmaa_datetime_first_final = 6;
                  ^
native.rl: In function ‘lsfdrmaa_parse_timedelta’:
native.c:1151:18: warning: unused variable ‘lsfdrmaa_timedelta_en_main’ [-Wunused-variable]
 static const int lsfdrmaa_timedelta_en_main = 1;
                  ^
native.c:1149:18: warning: unused variable ‘lsfdrmaa_timedelta_error’ [-Wunused-variable]
 static const int lsfdrmaa_timedelta_error = 0;
                  ^
native.c:1148:18: warning: unused variable ‘lsfdrmaa_timedelta_first_final’ [-Wunused-variable]
 static const int lsfdrmaa_timedelta_first_final = 4;
                  ^
native.rl: In function ‘lsfdrmaa_parse_asked_hosts’:
native.c:1366:18: warning: unused variable ‘lsfdrmaa_asked_hosts_en_main’ [-Wunused-variable]
 static const int lsfdrmaa_asked_hosts_en_main = 0;
                  ^
native.c:1364:18: warning: unused variable ‘lsfdrmaa_asked_hosts_error’ [-Wunused-variable]
 static const int lsfdrmaa_asked_hosts_error = -1;
                  ^
native.c:1363:18: warning: unused variable ‘lsfdrmaa_asked_hosts_first_final’ [-Wunused-variable]
 static const int lsfdrmaa_asked_hosts_first_final = 1;
                  ^
native.rl: In function ‘lsfdrmaa_parse_file_transfer’:
native.c:1598:18: warning: unused variable ‘lsfdrmaa_transfer_files_en_main’ [-Wunused-variable]
 static const int lsfdrmaa_transfer_files_en_main = 1;
                  ^
native.c:1596:18: warning: unused variable ‘lsfdrmaa_transfer_files_error’ [-Wunused-variable]
 static const int lsfdrmaa_transfer_files_error = 0;
                  ^
native.c:1595:18: warning: unused variable ‘lsfdrmaa_transfer_files_first_final’ [-Wunused-variable]
 static const int lsfdrmaa_transfer_files_first_final = 4;
                  ^
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-native.lo -MD -MP -MF .deps/libdrmaa_la-native.Tpo -c native.c -o libdrmaa_la-native.o >/dev/null 2>&1
mv -f .deps/libdrmaa_la-native.Tpo .deps/libdrmaa_la-native.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_la-session.lo -MD -MP -MF .deps/libdrmaa_la-session.Tpo -c -o libdrmaa_la-session.lo `test -f 'session.c' || echo './'`session.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-session.lo -MD -MP -MF .deps/libdrmaa_la-session.Tpo -c session.c  -fPIC -DPIC -o .libs/libdrmaa_la-session.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-session.lo -MD -MP -MF .deps/libdrmaa_la-session.Tpo -c session.c -o libdrmaa_la-session.o >/dev/null 2>&1
mv -f .deps/libdrmaa_la-session.Tpo .deps/libdrmaa_la-session.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile /usr/bin/gcc -DHAVE_CONFIG_H -I. -I..  -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG  -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -MT libdrmaa_la-util.lo -MD -MP -MF .deps/libdrmaa_la-util.Tpo -c -o libdrmaa_la-util.lo `test -f 'util.c' || echo './'`util.c
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-util.lo -MD -MP -MF .deps/libdrmaa_la-util.Tpo -c util.c  -fPIC -DPIC -o .libs/libdrmaa_la-util.o
libtool: compile:  /usr/bin/gcc -DHAVE_CONFIG_H -I. -I.. -I../drmaa_utils/ -I../lsd_drmaa -I/cluster/apps/lsf/10.1/include -Wno-long-long -D_REENTRANT -D_THREAD_SAFE -DNDEBUG -D_GNU_SOURCE -DCONFDIR=/cluster/apps/lsf_drmaa/1.1.1/x86_64/etc -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi -std=c99 -pthread -MT libdrmaa_la-util.lo -MD -MP -MF .deps/libdrmaa_la-util.Tpo -c util.c -o libdrmaa_la-util.o >/dev/null 2>&1
mv -f .deps/libdrmaa_la-util.Tpo .deps/libdrmaa_la-util.Plo
/bin/sh ../libtool --tag=CC   --mode=link /usr/bin/gcc  -Wall -W -Wno-unused-parameter -Wno-format-zero-length -pedantic -ansi  -std=c99 -pthread -L/cluster/apps/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -Wl,-R/cluster/apps/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -version-info 1:1:1 -lrt -o libdrmaa.la -rpath /cluster/apps/lsf_drmaa/1.1.1/x86_64/lib libdrmaa_la-drmaa.lo libdrmaa_la-job.lo libdrmaa_la-native.lo libdrmaa_la-session.lo libdrmaa_la-util.lo ../drmaa_utils/drmaa_utils/libdrmaa_utils.la -lbat -llsf -lnsl -lm -pthread 
libtool: link: /usr/bin/gcc -shared  .libs/libdrmaa_la-drmaa.o .libs/libdrmaa_la-job.o .libs/libdrmaa_la-native.o .libs/libdrmaa_la-session.o .libs/libdrmaa_la-util.o  -Wl,--whole-archive ../drmaa_utils/drmaa_utils/.libs/libdrmaa_utils.a -Wl,--no-whole-archive  -L/cluster/apps/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -lrt -lbat -llsf -lnsl -lm  -pthread -Wl,-R/cluster/apps/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -pthread   -pthread -Wl,-soname -Wl,libdrmaa.so.0 -o .libs/libdrmaa.so.0.1.1
libtool: link: (cd ".libs" && rm -f "libdrmaa.so.0" && ln -s "libdrmaa.so.0.1.1" "libdrmaa.so.0")
libtool: link: (cd ".libs" && rm -f "libdrmaa.so" && ln -s "libdrmaa.so.0.1.1" "libdrmaa.so")
libtool: link: (cd .libs/libdrmaa.lax/libdrmaa_utils.a && ar x "/scratch/3418715.tmpdir/lsf-drmaa-1.11/lsf_drmaa/../drmaa_utils/drmaa_utils/.libs/libdrmaa_utils.a")
libtool: link: ar cru .libs/libdrmaa.a  libdrmaa_la-drmaa.o libdrmaa_la-job.o libdrmaa_la-native.o libdrmaa_la-session.o libdrmaa_la-util.o  .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-compat.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-conf.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-conf_tab.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-datetime.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-datetime_tab.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-drmaa_attrib.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-environ.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-exception.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-iter.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-fsd_job.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-logging.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-lookup3.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-fsd_session.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-template.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-timedelta.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-thread.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-fsd_util.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-drmaa_util.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-xmalloc.o .libs/libdrmaa.lax/libdrmaa_utils.a/libdrmaa_utils_la-drmaa_base.o 
libtool: link: ranlib .libs/libdrmaa.a
libtool: link: rm -fr .libs/libdrmaa.lax
libtool: link: ( cd ".libs" && rm -f "libdrmaa.la" && ln -s "../libdrmaa.la" "libdrmaa.la" )
make[3]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/lsf_drmaa'
make[2]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/lsf_drmaa'
Making all in doc
make[2]: Entering directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/doc'
sh m4/missing-dev-prog.sh docutils -i utf-8 -o utf-8 --language=en --file-insertion-enabled --no-generator --tab-width=4 --stylesheet=stylesheet.css --link-stylesheet ../README readme.html
sh: m4/missing-dev-prog.sh: No such file or directory
Makefile:413: recipe for target 'readme.html' failed
make[2]: *** [readme.html] Error 127
make[2]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11/doc'
Makefile:332: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/scratch/3418715.tmpdir/lsf-drmaa-1.11'
Makefile:261: recipe for target 'all' failed
make: *** [all] Error 2
[sfux@lo-a2-017 lsf-drmaa-1.11]$

@samfux84
Copy link
Author

First thing that I tried was to run

autoreconf -i --force

to get the missing scripts. This then cause even more errors:

[sfux@lo-a2-017 lsf-drmaa-1.11]$ autoreconf -i --force
configure.ac:74: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:74: the top level
configure.ac:74: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:74: the top level
configure.ac:74: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:74: the top level
configure.ac:86: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:86: the top level
configure.ac:179: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_func_gettid.m4:27: AX_FUNC_GETTID is expanded from...
configure.ac:179: the top level
configure.ac:86: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:86: the top level
configure.ac:179: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_func_gettid.m4:27: AX_FUNC_GETTID is expanded from...
configure.ac:179: the top level
configure.ac:86: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:86: the top level
configure.ac:179: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_func_gettid.m4:27: AX_FUNC_GETTID is expanded from...
configure.ac:179: the top level
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'scripts'.
libtoolize: copying file 'scripts/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
libtoolize: 'AC_PROG_RANLIB' is rendered obsolete by 'LT_INIT'
configure.ac:86: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:86: the top level
configure.ac:179: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_func_gettid.m4:27: AX_FUNC_GETTID is expanded from...
configure.ac:179: the top level
configure.ac:86: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:86: the top level
configure.ac:179: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_func_gettid.m4:27: AX_FUNC_GETTID is expanded from...
configure.ac:179: the top level
configure.ac:86: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:86: the top level
configure.ac:179: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_func_gettid.m4:27: AX_FUNC_GETTID is expanded from...
configure.ac:179: the top level
configure.ac:86: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:86: the top level
configure.ac:179: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_func_gettid.m4:27: AX_FUNC_GETTID is expanded from...
configure.ac:179: the top level
Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /cluster/apps/gcc-4.8.5/automake-1.15-edghwpzxjvbsx6komxj2ek5iiheidlbr/bin/automake line 3936.
configure.ac:86: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_gcc_warnings.m4:25: AX_GCC_WARNINGS is expanded from...
configure.ac:86: the top level
configure.ac:179: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from...
/cluster/apps/spack/var/spack/stage/autoconf-2.69-rmashofb64gpres5aqiqls24gyvsb5c7/autoconf-2.69/lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from...
m4/ax_func_gettid.m4:27: AX_FUNC_GETTID is expanded from...
configure.ac:179: the top level
configure.ac:51: installing 'scripts/compile'
configure.ac:35: installing 'scripts/missing'
Makefile.am: error: required file './NEWS' not found
Makefile.am: error: required file './AUTHORS' not found
Makefile.am: error: required file './ChangeLog' not found
drmaa_utils/Makefile.am: installing 'scripts/depcomp'
parallel-tests: installing 'scripts/test-driver'
autoreconf: automake failed with exit status: 1
[sfux@lo-a2-017 lsf-drmaa-1.11]$

@samfux84
Copy link
Author

Release 1.1.1 seems to be fundamentally broken. But when switching to the master branch, it compiles using the hints proposed in this ticket.

Can you please make a new release using the current master branch ?

Best regards

Sam

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants