Closed uihsnv closed 1 year ago
I am attempting to install from source, and when I run autoreconf -i, this is what I get: [...] It seems to be unable to find "globus-version.inc" and "gct-current-tag.inc". It also seems to this is a git directory. I am not sure why. I attempted this using the ".tar.gz" sources of the two latest releases.
Running autoreconf -i
requires information from the git repository. When using the tar.gz or zip downloads, this is missing. Unfortunately these downloads are always "attached" to releases although they are not useful.
You have two options if you want to build it from source:
Use the source installer available on https://repo.gridcf.org/gct6/sources/ and named e.g. gct-6.2.1653033972.tar.gz
for the latest version corresponding to the latest release of the GCT. It is already autoreconf
ed and you can directly start with ./configure
.
Clone the whole repo (e.g. git clone https://github.com/gridcf/gct.git
) and work from there, starting with autoreconf -i
. You can follow the process we are using for our CI builds and outlined in https://github.com/gridcf/gct/blob/master/travis-ci/build_and_test.sh.
I am attempting to install from source, and when I run
autoreconf -i
, this is what I get:It seems to be unable to find "globus-version.inc" and "gct-current-tag.inc". It also seems to this is a git directory. I am not sure why. I attempted this using the ".tar.gz" sources of the two latest releases.
Am I doing something wrong?