You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Github seems to be using two different sets of autoconf macros in different instances. The one on this git repo is "sane" and seems to be the same as what I've got on my development machine. The one on linas/link-grammar seems to be insane. As a result, circleci fails on linas/link-grammar but works here.
Working configure output:
72 checking for suffix of object files... o
73 checking whether we are using the GNU C compiler... yes
74 ...
75 checking for /home/runner/work/link-grammar/link-grammar/bindings/js/emsdk/fastcomp/emscripten/emcc option to accept ISO C89... none needed
Failing configure output:
72 checking for suffix of object files... o
73 checking whether the compiler supports GNU C... yes
74 ...
75 checking for /home/runner/work/link-grammar/link-grammar/bindings/js/emsdk/fastcomp/emscripten/emcc option to enable C11 features... none needed
First diff is at line 73: my configure has the message "checking whether we are using the GNU C compiler" at line 4193 of the configure script. It has "option to accept ISO C89" at line 4308
My configure script does not have the message "checking whether the compiler supports GNU C" anywhere. It also doesn't have "option to enable C11 features" anywhere.
That means .. autogen.sh is producing two different configures on these two instances. WTF.
The text was updated successfully, but these errors were encountered:
Github seems to be using two different sets of autoconf macros in different instances. The one on this git repo is "sane" and seems to be the same as what I've got on my development machine. The one on
linas/link-grammar
seems to be insane. As a result, circleci fails on linas/link-grammar but works here.Working configure output:
Failing configure output:
First diff is at line 73: my configure has the message
"checking whether we are using the GNU C compiler"
at line 4193 of the configure script. It has"option to accept ISO C89"
at line 4308My configure script does not have the message
"checking whether the compiler supports GNU C"
anywhere. It also doesn't have"option to enable C11 features"
anywhere.That means ..
autogen.sh
is producing two different configures on these two instances. WTF.The text was updated successfully, but these errors were encountered: