Compare commits
6 Commits
cafe-1.18.
...
0.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
| a1c964f771 | |||
| df07cf1a29 | |||
| 7b517f2fa6 | |||
| b00167016e | |||
| 33bbcde48a | |||
| 7b052a21fc |
5
.gitignore
vendored
5
.gitignore
vendored
@@ -9,6 +9,8 @@
|
|||||||
# Temporary (build) files #
|
# Temporary (build) files #
|
||||||
###########################
|
###########################
|
||||||
*.bak
|
*.bak
|
||||||
|
*.*-*
|
||||||
|
*.*+*
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
autom4te.cache
|
autom4te.cache
|
||||||
config.in
|
config.in
|
||||||
@@ -32,7 +34,8 @@ src/*.o
|
|||||||
src/*.lo
|
src/*.lo
|
||||||
src/*.la
|
src/*.la
|
||||||
src/.deps/*
|
src/.deps/*
|
||||||
|
src/bitshuffle/.deps/*
|
||||||
src/.libs/*
|
src/.libs/*
|
||||||
examples/cafeTest/*.*-
|
examples/cafeTest/*.*-
|
||||||
doc
|
doc
|
||||||
|
compile
|
||||||
|
|||||||
318
INSTALL
318
INSTALL
@@ -1,8 +1,8 @@
|
|||||||
Installation Instructions
|
Installation Instructions
|
||||||
*************************
|
*************************
|
||||||
|
|
||||||
Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
|
Copyright (C) 1994-1996, 1999-2002, 2004-2016 Free Software
|
||||||
Inc.
|
Foundation, Inc.
|
||||||
|
|
||||||
Copying and distribution of this file, with or without modification,
|
Copying and distribution of this file, with or without modification,
|
||||||
are permitted in any medium without royalty provided the copyright
|
are permitted in any medium without royalty provided the copyright
|
||||||
@@ -12,97 +12,96 @@ without warranty of any kind.
|
|||||||
Basic Installation
|
Basic Installation
|
||||||
==================
|
==================
|
||||||
|
|
||||||
Briefly, the shell commands `./configure; make; make install' should
|
Briefly, the shell command './configure && make && make install'
|
||||||
configure, build, and install this package. The following
|
should configure, build, and install this package. The following
|
||||||
more-detailed instructions are generic; see the `README' file for
|
more-detailed instructions are generic; see the 'README' file for
|
||||||
instructions specific to this package. Some packages provide this
|
instructions specific to this package. Some packages provide this
|
||||||
`INSTALL' file but do not implement all of the features documented
|
'INSTALL' file but do not implement all of the features documented
|
||||||
below. The lack of an optional feature in a given package is not
|
below. The lack of an optional feature in a given package is not
|
||||||
necessarily a bug. More recommendations for GNU packages can be found
|
necessarily a bug. More recommendations for GNU packages can be found
|
||||||
in *note Makefile Conventions: (standards)Makefile Conventions.
|
in *note Makefile Conventions: (standards)Makefile Conventions.
|
||||||
|
|
||||||
The `configure' shell script attempts to guess correct values for
|
The 'configure' shell script attempts to guess correct values for
|
||||||
various system-dependent variables used during compilation. It uses
|
various system-dependent variables used during compilation. It uses
|
||||||
those values to create a `Makefile' in each directory of the package.
|
those values to create a 'Makefile' in each directory of the package.
|
||||||
It may also create one or more `.h' files containing system-dependent
|
It may also create one or more '.h' files containing system-dependent
|
||||||
definitions. Finally, it creates a shell script `config.status' that
|
definitions. Finally, it creates a shell script 'config.status' that
|
||||||
you can run in the future to recreate the current configuration, and a
|
you can run in the future to recreate the current configuration, and a
|
||||||
file `config.log' containing compiler output (useful mainly for
|
file 'config.log' containing compiler output (useful mainly for
|
||||||
debugging `configure').
|
debugging 'configure').
|
||||||
|
|
||||||
It can also use an optional file (typically called `config.cache'
|
It can also use an optional file (typically called 'config.cache' and
|
||||||
and enabled with `--cache-file=config.cache' or simply `-C') that saves
|
enabled with '--cache-file=config.cache' or simply '-C') that saves the
|
||||||
the results of its tests to speed up reconfiguring. Caching is
|
results of its tests to speed up reconfiguring. Caching is disabled by
|
||||||
disabled by default to prevent problems with accidental use of stale
|
default to prevent problems with accidental use of stale cache files.
|
||||||
cache files.
|
|
||||||
|
|
||||||
If you need to do unusual things to compile the package, please try
|
If you need to do unusual things to compile the package, please try
|
||||||
to figure out how `configure' could check whether to do them, and mail
|
to figure out how 'configure' could check whether to do them, and mail
|
||||||
diffs or instructions to the address given in the `README' so they can
|
diffs or instructions to the address given in the 'README' so they can
|
||||||
be considered for the next release. If you are using the cache, and at
|
be considered for the next release. If you are using the cache, and at
|
||||||
some point `config.cache' contains results you don't want to keep, you
|
some point 'config.cache' contains results you don't want to keep, you
|
||||||
may remove or edit it.
|
may remove or edit it.
|
||||||
|
|
||||||
The file `configure.ac' (or `configure.in') is used to create
|
The file 'configure.ac' (or 'configure.in') is used to create
|
||||||
`configure' by a program called `autoconf'. You need `configure.ac' if
|
'configure' by a program called 'autoconf'. You need 'configure.ac' if
|
||||||
you want to change it or regenerate `configure' using a newer version
|
you want to change it or regenerate 'configure' using a newer version of
|
||||||
of `autoconf'.
|
'autoconf'.
|
||||||
|
|
||||||
The simplest way to compile this package is:
|
The simplest way to compile this package is:
|
||||||
|
|
||||||
1. `cd' to the directory containing the package's source code and type
|
1. 'cd' to the directory containing the package's source code and type
|
||||||
`./configure' to configure the package for your system.
|
'./configure' to configure the package for your system.
|
||||||
|
|
||||||
Running `configure' might take a while. While running, it prints
|
Running 'configure' might take a while. While running, it prints
|
||||||
some messages telling which features it is checking for.
|
some messages telling which features it is checking for.
|
||||||
|
|
||||||
2. Type `make' to compile the package.
|
2. Type 'make' to compile the package.
|
||||||
|
|
||||||
3. Optionally, type `make check' to run any self-tests that come with
|
3. Optionally, type 'make check' to run any self-tests that come with
|
||||||
the package, generally using the just-built uninstalled binaries.
|
the package, generally using the just-built uninstalled binaries.
|
||||||
|
|
||||||
4. Type `make install' to install the programs and any data files and
|
4. Type 'make install' to install the programs and any data files and
|
||||||
documentation. When installing into a prefix owned by root, it is
|
documentation. When installing into a prefix owned by root, it is
|
||||||
recommended that the package be configured and built as a regular
|
recommended that the package be configured and built as a regular
|
||||||
user, and only the `make install' phase executed with root
|
user, and only the 'make install' phase executed with root
|
||||||
privileges.
|
privileges.
|
||||||
|
|
||||||
5. Optionally, type `make installcheck' to repeat any self-tests, but
|
5. Optionally, type 'make installcheck' to repeat any self-tests, but
|
||||||
this time using the binaries in their final installed location.
|
this time using the binaries in their final installed location.
|
||||||
This target does not install anything. Running this target as a
|
This target does not install anything. Running this target as a
|
||||||
regular user, particularly if the prior `make install' required
|
regular user, particularly if the prior 'make install' required
|
||||||
root privileges, verifies that the installation completed
|
root privileges, verifies that the installation completed
|
||||||
correctly.
|
correctly.
|
||||||
|
|
||||||
6. You can remove the program binaries and object files from the
|
6. You can remove the program binaries and object files from the
|
||||||
source code directory by typing `make clean'. To also remove the
|
source code directory by typing 'make clean'. To also remove the
|
||||||
files that `configure' created (so you can compile the package for
|
files that 'configure' created (so you can compile the package for
|
||||||
a different kind of computer), type `make distclean'. There is
|
a different kind of computer), type 'make distclean'. There is
|
||||||
also a `make maintainer-clean' target, but that is intended mainly
|
also a 'make maintainer-clean' target, but that is intended mainly
|
||||||
for the package's developers. If you use it, you may have to get
|
for the package's developers. If you use it, you may have to get
|
||||||
all sorts of other programs in order to regenerate files that came
|
all sorts of other programs in order to regenerate files that came
|
||||||
with the distribution.
|
with the distribution.
|
||||||
|
|
||||||
7. Often, you can also type `make uninstall' to remove the installed
|
7. Often, you can also type 'make uninstall' to remove the installed
|
||||||
files again. In practice, not all packages have tested that
|
files again. In practice, not all packages have tested that
|
||||||
uninstallation works correctly, even though it is required by the
|
uninstallation works correctly, even though it is required by the
|
||||||
GNU Coding Standards.
|
GNU Coding Standards.
|
||||||
|
|
||||||
8. Some packages, particularly those that use Automake, provide `make
|
8. Some packages, particularly those that use Automake, provide 'make
|
||||||
distcheck', which can by used by developers to test that all other
|
distcheck', which can by used by developers to test that all other
|
||||||
targets like `make install' and `make uninstall' work correctly.
|
targets like 'make install' and 'make uninstall' work correctly.
|
||||||
This target is generally not run by end users.
|
This target is generally not run by end users.
|
||||||
|
|
||||||
Compilers and Options
|
Compilers and Options
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
Some systems require unusual options for compilation or linking that
|
Some systems require unusual options for compilation or linking that
|
||||||
the `configure' script does not know about. Run `./configure --help'
|
the 'configure' script does not know about. Run './configure --help'
|
||||||
for details on some of the pertinent environment variables.
|
for details on some of the pertinent environment variables.
|
||||||
|
|
||||||
You can give `configure' initial values for configuration parameters
|
You can give 'configure' initial values for configuration parameters
|
||||||
by setting variables in the command line or in the environment. Here
|
by setting variables in the command line or in the environment. Here is
|
||||||
is an example:
|
an example:
|
||||||
|
|
||||||
./configure CC=c99 CFLAGS=-g LIBS=-lposix
|
./configure CC=c99 CFLAGS=-g LIBS=-lposix
|
||||||
|
|
||||||
@@ -113,21 +112,21 @@ Compiling For Multiple Architectures
|
|||||||
|
|
||||||
You can compile the package for more than one kind of computer at the
|
You can compile the package for more than one kind of computer at the
|
||||||
same time, by placing the object files for each architecture in their
|
same time, by placing the object files for each architecture in their
|
||||||
own directory. To do this, you can use GNU `make'. `cd' to the
|
own directory. To do this, you can use GNU 'make'. 'cd' to the
|
||||||
directory where you want the object files and executables to go and run
|
directory where you want the object files and executables to go and run
|
||||||
the `configure' script. `configure' automatically checks for the
|
the 'configure' script. 'configure' automatically checks for the source
|
||||||
source code in the directory that `configure' is in and in `..'. This
|
code in the directory that 'configure' is in and in '..'. This is known
|
||||||
is known as a "VPATH" build.
|
as a "VPATH" build.
|
||||||
|
|
||||||
With a non-GNU `make', it is safer to compile the package for one
|
With a non-GNU 'make', it is safer to compile the package for one
|
||||||
architecture at a time in the source code directory. After you have
|
architecture at a time in the source code directory. After you have
|
||||||
installed the package for one architecture, use `make distclean' before
|
installed the package for one architecture, use 'make distclean' before
|
||||||
reconfiguring for another architecture.
|
reconfiguring for another architecture.
|
||||||
|
|
||||||
On MacOS X 10.5 and later systems, you can create libraries and
|
On MacOS X 10.5 and later systems, you can create libraries and
|
||||||
executables that work on multiple system types--known as "fat" or
|
executables that work on multiple system types--known as "fat" or
|
||||||
"universal" binaries--by specifying multiple `-arch' options to the
|
"universal" binaries--by specifying multiple '-arch' options to the
|
||||||
compiler but only a single `-arch' option to the preprocessor. Like
|
compiler but only a single '-arch' option to the preprocessor. Like
|
||||||
this:
|
this:
|
||||||
|
|
||||||
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
||||||
@@ -136,105 +135,104 @@ this:
|
|||||||
|
|
||||||
This is not guaranteed to produce working output in all cases, you
|
This is not guaranteed to produce working output in all cases, you
|
||||||
may have to build one architecture at a time and combine the results
|
may have to build one architecture at a time and combine the results
|
||||||
using the `lipo' tool if you have problems.
|
using the 'lipo' tool if you have problems.
|
||||||
|
|
||||||
Installation Names
|
Installation Names
|
||||||
==================
|
==================
|
||||||
|
|
||||||
By default, `make install' installs the package's commands under
|
By default, 'make install' installs the package's commands under
|
||||||
`/usr/local/bin', include files under `/usr/local/include', etc. You
|
'/usr/local/bin', include files under '/usr/local/include', etc. You
|
||||||
can specify an installation prefix other than `/usr/local' by giving
|
can specify an installation prefix other than '/usr/local' by giving
|
||||||
`configure' the option `--prefix=PREFIX', where PREFIX must be an
|
'configure' the option '--prefix=PREFIX', where PREFIX must be an
|
||||||
absolute file name.
|
absolute file name.
|
||||||
|
|
||||||
You can specify separate installation prefixes for
|
You can specify separate installation prefixes for
|
||||||
architecture-specific files and architecture-independent files. If you
|
architecture-specific files and architecture-independent files. If you
|
||||||
pass the option `--exec-prefix=PREFIX' to `configure', the package uses
|
pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
|
||||||
PREFIX as the prefix for installing programs and libraries.
|
PREFIX as the prefix for installing programs and libraries.
|
||||||
Documentation and other data files still use the regular prefix.
|
Documentation and other data files still use the regular prefix.
|
||||||
|
|
||||||
In addition, if you use an unusual directory layout you can give
|
In addition, if you use an unusual directory layout you can give
|
||||||
options like `--bindir=DIR' to specify different values for particular
|
options like '--bindir=DIR' to specify different values for particular
|
||||||
kinds of files. Run `configure --help' for a list of the directories
|
kinds of files. Run 'configure --help' for a list of the directories
|
||||||
you can set and what kinds of files go in them. In general, the
|
you can set and what kinds of files go in them. In general, the default
|
||||||
default for these options is expressed in terms of `${prefix}', so that
|
for these options is expressed in terms of '${prefix}', so that
|
||||||
specifying just `--prefix' will affect all of the other directory
|
specifying just '--prefix' will affect all of the other directory
|
||||||
specifications that were not explicitly provided.
|
specifications that were not explicitly provided.
|
||||||
|
|
||||||
The most portable way to affect installation locations is to pass the
|
The most portable way to affect installation locations is to pass the
|
||||||
correct locations to `configure'; however, many packages provide one or
|
correct locations to 'configure'; however, many packages provide one or
|
||||||
both of the following shortcuts of passing variable assignments to the
|
both of the following shortcuts of passing variable assignments to the
|
||||||
`make install' command line to change installation locations without
|
'make install' command line to change installation locations without
|
||||||
having to reconfigure or recompile.
|
having to reconfigure or recompile.
|
||||||
|
|
||||||
The first method involves providing an override variable for each
|
The first method involves providing an override variable for each
|
||||||
affected directory. For example, `make install
|
affected directory. For example, 'make install
|
||||||
prefix=/alternate/directory' will choose an alternate location for all
|
prefix=/alternate/directory' will choose an alternate location for all
|
||||||
directory configuration variables that were expressed in terms of
|
directory configuration variables that were expressed in terms of
|
||||||
`${prefix}'. Any directories that were specified during `configure',
|
'${prefix}'. Any directories that were specified during 'configure',
|
||||||
but not in terms of `${prefix}', must each be overridden at install
|
but not in terms of '${prefix}', must each be overridden at install time
|
||||||
time for the entire installation to be relocated. The approach of
|
for the entire installation to be relocated. The approach of makefile
|
||||||
makefile variable overrides for each directory variable is required by
|
variable overrides for each directory variable is required by the GNU
|
||||||
the GNU Coding Standards, and ideally causes no recompilation.
|
Coding Standards, and ideally causes no recompilation. However, some
|
||||||
However, some platforms have known limitations with the semantics of
|
platforms have known limitations with the semantics of shared libraries
|
||||||
shared libraries that end up requiring recompilation when using this
|
that end up requiring recompilation when using this method, particularly
|
||||||
method, particularly noticeable in packages that use GNU Libtool.
|
noticeable in packages that use GNU Libtool.
|
||||||
|
|
||||||
The second method involves providing the `DESTDIR' variable. For
|
The second method involves providing the 'DESTDIR' variable. For
|
||||||
example, `make install DESTDIR=/alternate/directory' will prepend
|
example, 'make install DESTDIR=/alternate/directory' will prepend
|
||||||
`/alternate/directory' before all installation names. The approach of
|
'/alternate/directory' before all installation names. The approach of
|
||||||
`DESTDIR' overrides is not required by the GNU Coding Standards, and
|
'DESTDIR' overrides is not required by the GNU Coding Standards, and
|
||||||
does not work on platforms that have drive letters. On the other hand,
|
does not work on platforms that have drive letters. On the other hand,
|
||||||
it does better at avoiding recompilation issues, and works well even
|
it does better at avoiding recompilation issues, and works well even
|
||||||
when some directory options were not specified in terms of `${prefix}'
|
when some directory options were not specified in terms of '${prefix}'
|
||||||
at `configure' time.
|
at 'configure' time.
|
||||||
|
|
||||||
Optional Features
|
Optional Features
|
||||||
=================
|
=================
|
||||||
|
|
||||||
If the package supports it, you can cause programs to be installed
|
If the package supports it, you can cause programs to be installed
|
||||||
with an extra prefix or suffix on their names by giving `configure' the
|
with an extra prefix or suffix on their names by giving 'configure' the
|
||||||
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
|
||||||
|
|
||||||
Some packages pay attention to `--enable-FEATURE' options to
|
Some packages pay attention to '--enable-FEATURE' options to
|
||||||
`configure', where FEATURE indicates an optional part of the package.
|
'configure', where FEATURE indicates an optional part of the package.
|
||||||
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
They may also pay attention to '--with-PACKAGE' options, where PACKAGE
|
||||||
is something like `gnu-as' or `x' (for the X Window System). The
|
is something like 'gnu-as' or 'x' (for the X Window System). The
|
||||||
`README' should mention any `--enable-' and `--with-' options that the
|
'README' should mention any '--enable-' and '--with-' options that the
|
||||||
package recognizes.
|
package recognizes.
|
||||||
|
|
||||||
For packages that use the X Window System, `configure' can usually
|
For packages that use the X Window System, 'configure' can usually
|
||||||
find the X include and library files automatically, but if it doesn't,
|
find the X include and library files automatically, but if it doesn't,
|
||||||
you can use the `configure' options `--x-includes=DIR' and
|
you can use the 'configure' options '--x-includes=DIR' and
|
||||||
`--x-libraries=DIR' to specify their locations.
|
'--x-libraries=DIR' to specify their locations.
|
||||||
|
|
||||||
Some packages offer the ability to configure how verbose the
|
Some packages offer the ability to configure how verbose the
|
||||||
execution of `make' will be. For these packages, running `./configure
|
execution of 'make' will be. For these packages, running './configure
|
||||||
--enable-silent-rules' sets the default to minimal output, which can be
|
--enable-silent-rules' sets the default to minimal output, which can be
|
||||||
overridden with `make V=1'; while running `./configure
|
overridden with 'make V=1'; while running './configure
|
||||||
--disable-silent-rules' sets the default to verbose, which can be
|
--disable-silent-rules' sets the default to verbose, which can be
|
||||||
overridden with `make V=0'.
|
overridden with 'make V=0'.
|
||||||
|
|
||||||
Particular systems
|
Particular systems
|
||||||
==================
|
==================
|
||||||
|
|
||||||
On HP-UX, the default C compiler is not ANSI C compatible. If GNU
|
On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
|
||||||
CC is not installed, it is recommended to use the following options in
|
is not installed, it is recommended to use the following options in
|
||||||
order to use an ANSI C compiler:
|
order to use an ANSI C compiler:
|
||||||
|
|
||||||
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
|
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
|
||||||
|
|
||||||
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
|
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
|
||||||
|
|
||||||
HP-UX `make' updates targets which have the same time stamps as
|
HP-UX 'make' updates targets which have the same time stamps as their
|
||||||
their prerequisites, which makes it generally unusable when shipped
|
prerequisites, which makes it generally unusable when shipped generated
|
||||||
generated files such as `configure' are involved. Use GNU `make'
|
files such as 'configure' are involved. Use GNU 'make' instead.
|
||||||
instead.
|
|
||||||
|
|
||||||
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
|
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
|
||||||
parse its `<wchar.h>' header file. The option `-nodtk' can be used as
|
parse its '<wchar.h>' header file. The option '-nodtk' can be used as a
|
||||||
a workaround. If GNU CC is not installed, it is therefore recommended
|
workaround. If GNU CC is not installed, it is therefore recommended to
|
||||||
to try
|
try
|
||||||
|
|
||||||
./configure CC="cc"
|
./configure CC="cc"
|
||||||
|
|
||||||
@@ -242,26 +240,26 @@ and if that doesn't work, try
|
|||||||
|
|
||||||
./configure CC="cc -nodtk"
|
./configure CC="cc -nodtk"
|
||||||
|
|
||||||
On Solaris, don't put `/usr/ucb' early in your `PATH'. This
|
On Solaris, don't put '/usr/ucb' early in your 'PATH'. This
|
||||||
directory contains several dysfunctional programs; working variants of
|
directory contains several dysfunctional programs; working variants of
|
||||||
these programs are available in `/usr/bin'. So, if you need `/usr/ucb'
|
these programs are available in '/usr/bin'. So, if you need '/usr/ucb'
|
||||||
in your `PATH', put it _after_ `/usr/bin'.
|
in your 'PATH', put it _after_ '/usr/bin'.
|
||||||
|
|
||||||
On Haiku, software installed for all users goes in `/boot/common',
|
On Haiku, software installed for all users goes in '/boot/common',
|
||||||
not `/usr/local'. It is recommended to use the following options:
|
not '/usr/local'. It is recommended to use the following options:
|
||||||
|
|
||||||
./configure --prefix=/boot/common
|
./configure --prefix=/boot/common
|
||||||
|
|
||||||
Specifying the System Type
|
Specifying the System Type
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
There may be some features `configure' cannot figure out
|
There may be some features 'configure' cannot figure out
|
||||||
automatically, but needs to determine by the type of machine the package
|
automatically, but needs to determine by the type of machine the package
|
||||||
will run on. Usually, assuming the package is built to be run on the
|
will run on. Usually, assuming the package is built to be run on the
|
||||||
_same_ architectures, `configure' can figure that out, but if it prints
|
_same_ architectures, 'configure' can figure that out, but if it prints
|
||||||
a message saying it cannot guess the machine type, give it the
|
a message saying it cannot guess the machine type, give it the
|
||||||
`--build=TYPE' option. TYPE can either be a short name for the system
|
'--build=TYPE' option. TYPE can either be a short name for the system
|
||||||
type, such as `sun4', or a canonical name which has the form:
|
type, such as 'sun4', or a canonical name which has the form:
|
||||||
|
|
||||||
CPU-COMPANY-SYSTEM
|
CPU-COMPANY-SYSTEM
|
||||||
|
|
||||||
@@ -270,101 +268,101 @@ where SYSTEM can have one of these forms:
|
|||||||
OS
|
OS
|
||||||
KERNEL-OS
|
KERNEL-OS
|
||||||
|
|
||||||
See the file `config.sub' for the possible values of each field. If
|
See the file 'config.sub' for the possible values of each field. If
|
||||||
`config.sub' isn't included in this package, then this package doesn't
|
'config.sub' isn't included in this package, then this package doesn't
|
||||||
need to know the machine type.
|
need to know the machine type.
|
||||||
|
|
||||||
If you are _building_ compiler tools for cross-compiling, you should
|
If you are _building_ compiler tools for cross-compiling, you should
|
||||||
use the option `--target=TYPE' to select the type of system they will
|
use the option '--target=TYPE' to select the type of system they will
|
||||||
produce code for.
|
produce code for.
|
||||||
|
|
||||||
If you want to _use_ a cross compiler, that generates code for a
|
If you want to _use_ a cross compiler, that generates code for a
|
||||||
platform different from the build platform, you should specify the
|
platform different from the build platform, you should specify the
|
||||||
"host" platform (i.e., that on which the generated programs will
|
"host" platform (i.e., that on which the generated programs will
|
||||||
eventually be run) with `--host=TYPE'.
|
eventually be run) with '--host=TYPE'.
|
||||||
|
|
||||||
Sharing Defaults
|
Sharing Defaults
|
||||||
================
|
================
|
||||||
|
|
||||||
If you want to set default values for `configure' scripts to share,
|
If you want to set default values for 'configure' scripts to share,
|
||||||
you can create a site shell script called `config.site' that gives
|
you can create a site shell script called 'config.site' that gives
|
||||||
default values for variables like `CC', `cache_file', and `prefix'.
|
default values for variables like 'CC', 'cache_file', and 'prefix'.
|
||||||
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
'configure' looks for 'PREFIX/share/config.site' if it exists, then
|
||||||
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
'PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||||
`CONFIG_SITE' environment variable to the location of the site script.
|
'CONFIG_SITE' environment variable to the location of the site script.
|
||||||
A warning: not all `configure' scripts look for a site script.
|
A warning: not all 'configure' scripts look for a site script.
|
||||||
|
|
||||||
Defining Variables
|
Defining Variables
|
||||||
==================
|
==================
|
||||||
|
|
||||||
Variables not defined in a site shell script can be set in the
|
Variables not defined in a site shell script can be set in the
|
||||||
environment passed to `configure'. However, some packages may run
|
environment passed to 'configure'. However, some packages may run
|
||||||
configure again during the build, and the customized values of these
|
configure again during the build, and the customized values of these
|
||||||
variables may be lost. In order to avoid this problem, you should set
|
variables may be lost. In order to avoid this problem, you should set
|
||||||
them in the `configure' command line, using `VAR=value'. For example:
|
them in the 'configure' command line, using 'VAR=value'. For example:
|
||||||
|
|
||||||
./configure CC=/usr/local2/bin/gcc
|
./configure CC=/usr/local2/bin/gcc
|
||||||
|
|
||||||
causes the specified `gcc' to be used as the C compiler (unless it is
|
causes the specified 'gcc' to be used as the C compiler (unless it is
|
||||||
overridden in the site shell script).
|
overridden in the site shell script).
|
||||||
|
|
||||||
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
|
Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
|
||||||
an Autoconf limitation. Until the limitation is lifted, you can use
|
Autoconf limitation. Until the limitation is lifted, you can use this
|
||||||
this workaround:
|
workaround:
|
||||||
|
|
||||||
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
||||||
|
|
||||||
`configure' Invocation
|
'configure' Invocation
|
||||||
======================
|
======================
|
||||||
|
|
||||||
`configure' recognizes the following options to control how it
|
'configure' recognizes the following options to control how it
|
||||||
operates.
|
operates.
|
||||||
|
|
||||||
`--help'
|
'--help'
|
||||||
`-h'
|
'-h'
|
||||||
Print a summary of all of the options to `configure', and exit.
|
Print a summary of all of the options to 'configure', and exit.
|
||||||
|
|
||||||
`--help=short'
|
'--help=short'
|
||||||
`--help=recursive'
|
'--help=recursive'
|
||||||
Print a summary of the options unique to this package's
|
Print a summary of the options unique to this package's
|
||||||
`configure', and exit. The `short' variant lists options used
|
'configure', and exit. The 'short' variant lists options used only
|
||||||
only in the top level, while the `recursive' variant lists options
|
in the top level, while the 'recursive' variant lists options also
|
||||||
also present in any nested packages.
|
present in any nested packages.
|
||||||
|
|
||||||
`--version'
|
'--version'
|
||||||
`-V'
|
'-V'
|
||||||
Print the version of Autoconf used to generate the `configure'
|
Print the version of Autoconf used to generate the 'configure'
|
||||||
script, and exit.
|
script, and exit.
|
||||||
|
|
||||||
`--cache-file=FILE'
|
'--cache-file=FILE'
|
||||||
Enable the cache: use and save the results of the tests in FILE,
|
Enable the cache: use and save the results of the tests in FILE,
|
||||||
traditionally `config.cache'. FILE defaults to `/dev/null' to
|
traditionally 'config.cache'. FILE defaults to '/dev/null' to
|
||||||
disable caching.
|
disable caching.
|
||||||
|
|
||||||
`--config-cache'
|
'--config-cache'
|
||||||
`-C'
|
'-C'
|
||||||
Alias for `--cache-file=config.cache'.
|
Alias for '--cache-file=config.cache'.
|
||||||
|
|
||||||
`--quiet'
|
'--quiet'
|
||||||
`--silent'
|
'--silent'
|
||||||
`-q'
|
'-q'
|
||||||
Do not print messages saying which checks are being made. To
|
Do not print messages saying which checks are being made. To
|
||||||
suppress all normal output, redirect it to `/dev/null' (any error
|
suppress all normal output, redirect it to '/dev/null' (any error
|
||||||
messages will still be shown).
|
messages will still be shown).
|
||||||
|
|
||||||
`--srcdir=DIR'
|
'--srcdir=DIR'
|
||||||
Look for the package's source code in directory DIR. Usually
|
Look for the package's source code in directory DIR. Usually
|
||||||
`configure' can determine that directory automatically.
|
'configure' can determine that directory automatically.
|
||||||
|
|
||||||
`--prefix=DIR'
|
'--prefix=DIR'
|
||||||
Use DIR as the installation prefix. *note Installation Names::
|
Use DIR as the installation prefix. *note Installation Names:: for
|
||||||
for more details, including other options available for fine-tuning
|
more details, including other options available for fine-tuning the
|
||||||
the installation locations.
|
installation locations.
|
||||||
|
|
||||||
`--no-create'
|
'--no-create'
|
||||||
`-n'
|
'-n'
|
||||||
Run the configure checks, but stop before creating any output
|
Run the configure checks, but stop before creating any output
|
||||||
files.
|
files.
|
||||||
|
|
||||||
`configure' also accepts some other, not widely useful, options. Run
|
'configure' also accepts some other, not widely useful, options. Run
|
||||||
`configure --help' for more details.
|
'configure --help' for more details.
|
||||||
|
|||||||
@@ -1,39 +1,38 @@
|
|||||||
INCLUDES = -IC:\CAFE\cafe-1.0.0-beta-3\cpp\include -IC:\local\boost_1_63_0\boost \
|
INCLUDES = -IC:\EPICS\CAFE\cpp\include -IC:\EPICS\CAFE\cpp -IC:\EPICS\boost_1_81_0\boost \
|
||||||
-IC:\local\boost_1_63_0 -IC:\EPICS\base-3.14.12.5\include -IC:\EPICS\base-3.14.12.5\include\os\WIN32
|
-IC:\EPICS\boost_1_81_0 -IC:\epics\epics-base\include -IC:\epics\epics-base\include\os\WIN32 \
|
||||||
|
-Ic:\EPICS\epics-base\include\compiler\msvc \
|
||||||
#-IC:\Qt\qt-4.8.6-x64-msvc2010\include -Ic:\Qt\qt-4.8.6-x64-msvc2010\include -Ic:\Qt\qt-4.8.6-x64-msvc2010\include\QtCore \
|
#-IC:\Qt\qt-4.8.6-x64-msvc2010\include -Ic:\Qt\qt-4.8.6-x64-msvc2010\include -Ic:\Qt\qt-4.8.6-x64-msvc2010\include\QtCore \
|
||||||
#-IC:\Qt\qt-4.8.6-msvc2010\include\QtXml
|
#-IC:\Qt\qt-4.8.6-msvc2010\include\QtXml \
|
||||||
#-IC:\Users\chrin\AppData\Local\Continuum\Anaconda3\envs\py345\include
|
#-IC:\Users\chrin\AppData\Local\Continuum\Anaconda3\envs\py345\include
|
||||||
|
|
||||||
LIB_DEST=lib\cafe-noqt
|
|
||||||
|
|
||||||
CXX=cl
|
CXX=cl
|
||||||
CXXFLAGS = /W4 /EHsc /c /MT
|
CXXFLAGS = -DUSE_TYPED_RSET -EHsc -nologo -FC -D__STDC__=0 -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -Ox -GL -Oy- -W3 -MD -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -c
|
||||||
OUTPUT_OPTION = /o "$@"
|
|
||||||
LIB_LOCAL = C:\epics\base-3.14.12.5\lib\windows-x64\Com.lib C:\epics\base-3.14.12.5\lib\windows-x64\ca.lib \
|
#OUTPUT_OPTION = /o "$@"
|
||||||
C:\local\boost_1_63_0\lib64-msvc-10.0\libboost_thread-vc100-mt-s-1_63.lib \
|
OUTPUT_OPTION = /Fo"$@"
|
||||||
C:\local\boost_1_63_0\lib64-msvc-10.0\libboost_system-vc100-mt-s-1_63.lib
|
LIB_LOCAL = C:\epics\epics-base\lib\win32-x86\Com.lib C:\epics\epics-base\lib\win32-x86\ca.lib \
|
||||||
|
#C:\EPICS\boost_1_81_0\stage\lib\\libboost_thread-vc142-mt-x32-1_81.lib \
|
||||||
|
#C:\EPICS\boost_1_81_0\stage\lib\\libboost_system-vc142-mt-gd-x32-1_81.lib \
|
||||||
|
#C:\EPICS\boost_1_81_0\stage\lib\\libboost_date_time-vc142-mt-gd-x32-1_81.lib \
|
||||||
|
#C:\EPICS\boost_1_81_0\stage\lib\\libboost_chrono-vc142-mt-x32-1_81.lib \
|
||||||
|
#C:\EPICS\boost_1_81_0\stage\lib\\libboost_exception-vc142-mt-gd-x32-1_81.lib \
|
||||||
#C:\Qt\qt-4.8.6-x64-msvc2010\lib\QtCore4.lib C:\Qt\qt-4.8.6-x64-msvc2010\lib\QtXml4.lib \
|
#C:\Qt\qt-4.8.6-x64-msvc2010\lib\QtCore4.lib C:\Qt\qt-4.8.6-x64-msvc2010\lib\QtXml4.lib \
|
||||||
#C:\Users\chrin\AppData\Local\Continuum\Anaconda3\envs\py345\libs\python34.lib
|
#C:\Users\chrin\AppData\Local\Continuum\Anaconda3\envs\py345\libs\python34.lib \
|
||||||
|
|
||||||
|
OBJS= src\cafeCache.obj src\cafeGroup.obj src\cafe.obj src\cafeVectors.obj \
|
||||||
|
src\callbackHandlerCreate.obj src\callbackHandlerMonitor.obj src\conduitGroup.obj src\conduit.obj \
|
||||||
|
src\connectCallbacks.obj src\connectGroup.obj \
|
||||||
|
src\connect.obj src\exceptionsHelper.obj src\granules.obj src\handleHelper.obj src\helper.obj \
|
||||||
|
src\methodCallbacks.obj src\policyHelper.obj src\transpose.obj \
|
||||||
|
src\cafeXML.obj src\loadCollectionXMLParser.obj src\loadGroupXMLParser.obj \
|
||||||
|
src\restorePVGroupXMLParser.obj $(LIB_LOCAL)
|
||||||
|
|
||||||
OBJS= cafeCache.obj cafeGroup.obj cafe.obj cafeVectors.obj \
|
cafe.lib: $(OBJS)
|
||||||
callbackHandlerCreate.obj callbackHandlerMonitor.obj conduitGroup.obj conduit.obj \
|
LIB $(OBJS) /out:cafe.lib
|
||||||
connectCallbacks.obj connectGroup.obj \
|
|
||||||
connect.obj exceptionsHelper.obj granules.obj handleHelper.obj helper.obj \
|
|
||||||
methodCallbacks.obj policyHelper.obj transpose.obj \
|
|
||||||
cafeXML.obj loadCollectionXMLParser.obj loadGroupXMLParser.obj \
|
|
||||||
restorePVGroupXMLParser.obj $(LIB_LOCAL)
|
|
||||||
|
|
||||||
|
%.obj: %.cpp
|
||||||
|
|
||||||
$(LIB_DEST)\cafe.lib: $(OBJS)
|
|
||||||
LIB $(OBJS) /out:$(LIB_DEST)\cafe.lib
|
|
||||||
|
|
||||||
|
|
||||||
%.obj: src\%.cpp
|
|
||||||
$(CXX) $(CXXFLAGS) $(INCLUDES) $(OUTPUT_OPTION) $<
|
$(CXX) $(CXXFLAGS) $(INCLUDES) $(OUTPUT_OPTION) $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
del *.obj
|
del src\*.obj
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
39
MakefileWin/Makefile_noqt_windows7
Normal file
39
MakefileWin/Makefile_noqt_windows7
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
INCLUDES = -IC:\CAFE\cafe-1.0.0-beta-3\cpp\include -IC:\local\boost_1_63_0\boost \
|
||||||
|
-IC:\local\boost_1_63_0 -IC:\EPICS\base-3.14.12.5\include -IC:\EPICS\base-3.14.12.5\include\os\WIN32
|
||||||
|
#-IC:\Qt\qt-4.8.6-x64-msvc2010\include -Ic:\Qt\qt-4.8.6-x64-msvc2010\include -Ic:\Qt\qt-4.8.6-x64-msvc2010\include\QtCore \
|
||||||
|
#-IC:\Qt\qt-4.8.6-msvc2010\include\QtXml
|
||||||
|
#-IC:\Users\chrin\AppData\Local\Continuum\Anaconda3\envs\py345\include
|
||||||
|
|
||||||
|
LIB_DEST=lib\cafe-noqt
|
||||||
|
|
||||||
|
CXX=cl
|
||||||
|
CXXFLAGS = /W4 /EHsc /c /MT
|
||||||
|
OUTPUT_OPTION = /o "$@"
|
||||||
|
LIB_LOCAL = C:\epics\base-3.14.12.5\lib\windows-x64\Com.lib C:\epics\base-3.14.12.5\lib\windows-x64\ca.lib \
|
||||||
|
C:\local\boost_1_63_0\lib64-msvc-10.0\libboost_thread-vc100-mt-s-1_63.lib \
|
||||||
|
C:\local\boost_1_63_0\lib64-msvc-10.0\libboost_system-vc100-mt-s-1_63.lib
|
||||||
|
#C:\Qt\qt-4.8.6-x64-msvc2010\lib\QtCore4.lib C:\Qt\qt-4.8.6-x64-msvc2010\lib\QtXml4.lib \
|
||||||
|
#C:\Users\chrin\AppData\Local\Continuum\Anaconda3\envs\py345\libs\python34.lib
|
||||||
|
|
||||||
|
|
||||||
|
OBJS= cafeCache.obj cafeGroup.obj cafe.obj cafeVectors.obj \
|
||||||
|
callbackHandlerCreate.obj callbackHandlerMonitor.obj conduitGroup.obj conduit.obj \
|
||||||
|
connectCallbacks.obj connectGroup.obj \
|
||||||
|
connect.obj exceptionsHelper.obj granules.obj handleHelper.obj helper.obj \
|
||||||
|
methodCallbacks.obj policyHelper.obj transpose.obj \
|
||||||
|
cafeXML.obj loadCollectionXMLParser.obj loadGroupXMLParser.obj \
|
||||||
|
restorePVGroupXMLParser.obj $(LIB_LOCAL)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$(LIB_DEST)\cafe.lib: $(OBJS)
|
||||||
|
LIB $(OBJS) /out:$(LIB_DEST)\cafe.lib
|
||||||
|
|
||||||
|
|
||||||
|
%.obj: src\%.cpp
|
||||||
|
$(CXX) $(CXXFLAGS) $(INCLUDES) $(OUTPUT_OPTION) $<
|
||||||
|
|
||||||
|
clean:
|
||||||
|
del *.obj
|
||||||
|
|
||||||
|
|
||||||
@@ -1,15 +1,15 @@
|
|||||||
|
|
||||||
/* epics major release */
|
/* epics major release */
|
||||||
#define EPICS_MAJOR 3
|
#define EPICS_MAJOR 7
|
||||||
|
|
||||||
/* epics minor release */
|
/* epics minor release */
|
||||||
#define EPICS_MINOR 14
|
#define EPICS_MINOR 0
|
||||||
|
|
||||||
/* epics patch release */
|
/* epics patch release */
|
||||||
#define EPICS_PATCH 12
|
#define EPICS_PATCH 6
|
||||||
|
|
||||||
/* epics version */
|
/* epics version */
|
||||||
#define HAVE_EPICS 3.14.12
|
#define HAVE_EPICS 7.0.6
|
||||||
|
|
||||||
/* Define to 1 if you have the <epicsTypes.h> header file. */
|
/* Define to 1 if you have the <epicsTypes.h> header file. */
|
||||||
#define HAVE_EPICSTYPES_H 1
|
#define HAVE_EPICSTYPES_H 1
|
||||||
@@ -23,3 +23,6 @@
|
|||||||
/* Define to 1 if you have the <Python.h> header file. */
|
/* Define to 1 if you have the <Python.h> header file. */
|
||||||
/*#define HAVE_PYTHON_H 1 */
|
/*#define HAVE_PYTHON_H 1 */
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define _CRT_SECURE_NO_WARNINGS
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -3,7 +3,8 @@
|
|||||||
#<facility = sls sls2 sf> default is sf
|
#<facility = sls sls2 sf> default is sf
|
||||||
#<target_language = cpp matlab python>
|
#<target_language = cpp matlab python>
|
||||||
module unload gcc
|
module unload gcc
|
||||||
module load gcc/7.3.0 #7.5.0 for py38
|
#module load gcc/7.3.0 #7.5.0 for py38 py310 7.3.0 py37
|
||||||
|
module load gcc/10.4.0 ##rhel8
|
||||||
### psi specific - end
|
### psi specific - end
|
||||||
|
|
||||||
rm -f configure.ac
|
rm -f configure.ac
|
||||||
@@ -12,7 +13,7 @@ ln -s configurePSI.ac configure.ac
|
|||||||
rm -f ./aclocal.m4
|
rm -f ./aclocal.m4
|
||||||
rm -rf ./autom4te.cache
|
rm -rf ./autom4te.cache
|
||||||
aclocal --force -I m4
|
aclocal --force -I m4
|
||||||
/opt/gfa/python-3.7/latest/bin/libtoolize --force --copy #select libtools 2.4.6
|
libtoolize --force --copy #select libtools 2.4.6
|
||||||
#libtoolize --force --copy
|
#libtoolize --force --copy
|
||||||
autoconf --force #interprets configure.ac
|
autoconf --force #interprets configure.ac
|
||||||
autoheader --force
|
autoheader --force
|
||||||
@@ -23,7 +24,9 @@ automake --force --add-missing --copy
|
|||||||
#Used by ./configure
|
#Used by ./configure
|
||||||
#Assumes format ${EPICS}/base-3.14.12
|
#Assumes format ${EPICS}/base-3.14.12
|
||||||
#source cafeVersion-gcc-7.3.0
|
#source cafeVersion-gcc-7.3.0
|
||||||
CAFE_V="cafe-1.18.0"
|
CAFE_V="cafe-1.21.0"
|
||||||
|
EPICS_BASE='base-7.0.8' #
|
||||||
|
|
||||||
#For later check of existence of HOST_ARCH for $EPICS/include/os/$HOST_ARCH
|
#For later check of existence of HOST_ARCH for $EPICS/include/os/$HOST_ARCH
|
||||||
#Assume Linux but check if Darwin
|
#Assume Linux but check if Darwin
|
||||||
CAFE_HOST_FLAG_DARWIN=$(echo ${EPICS_HOST_ARCH} | grep -c "Darwin")
|
CAFE_HOST_FLAG_DARWIN=$(echo ${EPICS_HOST_ARCH} | grep -c "Darwin")
|
||||||
@@ -32,13 +35,16 @@ export CAFE_HOST_FLAG_DARWIN=$CAFE_HOST_FLAG_DARWIN
|
|||||||
RETURN_ON_WRONG_INPUT=true
|
RETURN_ON_WRONG_INPUT=true
|
||||||
RETURN_FLAG=false
|
RETURN_FLAG=false
|
||||||
|
|
||||||
EPICS_BASE=$(readlink ${EPICS}/base)
|
##EPICS_BASE=$(readlink ${EPICS_BASE}) #$(readlink ${EPICS}/base)
|
||||||
|
|
||||||
|
_EPICS_HOST_ARCH=${RHREL}-x86_64
|
||||||
|
|
||||||
#EB=$(readlink /afs/psi.ch/project/cafe/gitworkspace/CAFE/cpp/base)
|
#EB=$(readlink /afs/psi.ch/project/cafe/gitworkspace/CAFE/cpp/base)
|
||||||
echo $EPICS_BASE
|
echo $EPICS_BASE
|
||||||
if [ -z "$EPICS_BASE" ]
|
#if [ -z "$EPICS_BASE_VERSION" ]
|
||||||
then
|
#then
|
||||||
EPICS_BASE='base-7' #7.0 = 7+0 = 7 for major release
|
# EPICS_BASE='base-7.0.7' #7.0 = 7+0 = 7 for major release
|
||||||
fi
|
#fi
|
||||||
|
|
||||||
echo 'input' "$0" "$1" "$2"
|
echo 'input' "$0" "$1" "$2"
|
||||||
echo $EPICS_BASE
|
echo $EPICS_BASE
|
||||||
@@ -46,8 +52,11 @@ echo $EPICS_BASE
|
|||||||
FACILITY=$(echo "$1" | tr '[:upper:]' '[:lower:]')
|
FACILITY=$(echo "$1" | tr '[:upper:]' '[:lower:]')
|
||||||
CACLIENT=$(echo "$2" | tr '[:upper:]' '[:lower:]')
|
CACLIENT=$(echo "$2" | tr '[:upper:]' '[:lower:]')
|
||||||
|
|
||||||
FACILITY_DEFAULT="sf"
|
#FACILITY_DEFAULT="sf"
|
||||||
CACLIENT_DEFAULT="python"
|
#CACLIENT_DEFAULT="python"
|
||||||
|
|
||||||
|
FACILITY_DEFAULT="sls2"
|
||||||
|
CACLIENT_DEFAULT="py37"
|
||||||
|
|
||||||
FACILITY_TEMP=""
|
FACILITY_TEMP=""
|
||||||
CACLIENT_TEMP=""
|
CACLIENT_TEMP=""
|
||||||
@@ -57,7 +66,8 @@ echo 'input arg. facility/target' $FACILITY $CACLIENT
|
|||||||
if [ -n "$FACILITY" ]
|
if [ -n "$FACILITY" ]
|
||||||
then
|
then
|
||||||
if [ "$FACILITY" = "matlab" ] || [ "$FACILITY" = "python" ] || \
|
if [ "$FACILITY" = "matlab" ] || [ "$FACILITY" = "python" ] || \
|
||||||
[ "$FACILITY" = "py310" ] || [ "$FACILITY" = "py38" ] || \
|
[ "$FACILITY" = "py310" ] || [ "$FACILITY" = "py39" ] || \
|
||||||
|
[ "$FACILITY" = "py38" ] || \
|
||||||
[ "$FACILITY" = "py37" ] || [ "$FACILITY" = "py35" ] || \
|
[ "$FACILITY" = "py37" ] || [ "$FACILITY" = "py35" ] || \
|
||||||
[ "$FACILITY" = "julia" ] || [ "$FACILITY" = "cpp" ] || \
|
[ "$FACILITY" = "julia" ] || [ "$FACILITY" = "cpp" ] || \
|
||||||
[ "$FACILITY" = "cc" ] || [ "$FACILITY" = "py34" ]
|
[ "$FACILITY" = "cc" ] || [ "$FACILITY" = "py34" ]
|
||||||
@@ -85,7 +95,7 @@ fi
|
|||||||
|
|
||||||
if [ -z "$FACILITY" ]
|
if [ -z "$FACILITY" ]
|
||||||
then
|
then
|
||||||
FACILITY="sf"
|
FACILITY=$FACILITY_DEFAULT
|
||||||
echo "FACILITY = " $FACILITY
|
echo "FACILITY = " $FACILITY
|
||||||
if [ -z $CACLIENT ]
|
if [ -z $CACLIENT ]
|
||||||
then
|
then
|
||||||
@@ -126,7 +136,8 @@ fi
|
|||||||
if [ -n "$CACLIENT" ]
|
if [ -n "$CACLIENT" ]
|
||||||
then
|
then
|
||||||
if [ "$CACLIENT" = "matlab" ] || [ "$CACLIENT" = "python" ] || \
|
if [ "$CACLIENT" = "matlab" ] || [ "$CACLIENT" = "python" ] || \
|
||||||
[ "$CACLIENT" = "py310" ] || [ "$CACLIENT" = "py38" ] || \
|
[ "$CACLIENT" = "py310" ] || [ "$CACLIENT" = "py39" ] || \
|
||||||
|
[ "$CACLIENT" = "py38" ] || \
|
||||||
[ "$CACLIENT" = "py37" ] || [ "$CACLIENT" = "py35" ] || \
|
[ "$CACLIENT" = "py37" ] || [ "$CACLIENT" = "py35" ] || \
|
||||||
[ "$CACLIENT" = "julia" ] || [ "$CACLIENT" = "cpp" ] || \
|
[ "$CACLIENT" = "julia" ] || [ "$CACLIENT" = "cpp" ] || \
|
||||||
[ "$CACLIENT" = "cc" ] || [ "$CACLIENT" = "py34" ]
|
[ "$CACLIENT" = "cc" ] || [ "$CACLIENT" = "py34" ]
|
||||||
@@ -136,7 +147,8 @@ then
|
|||||||
if [ -n "$CACLIENT_TEMP" ]
|
if [ -n "$CACLIENT_TEMP" ]
|
||||||
then
|
then
|
||||||
if [ "$CACLIENT_TEMP" = "matlab" ] || [ "$CACLIENT_TEMP" = "python" ] || \
|
if [ "$CACLIENT_TEMP" = "matlab" ] || [ "$CACLIENT_TEMP" = "python" ] || \
|
||||||
[ "$CACLIENT_TEMP" = "py310" ] || [ "$CACLIENT_TEMP" = "py38" ] || \
|
[ "$CACLIENT_TEMP" = "py310" ] || [ "$CACLIENT_TEMP" = "py39" ] || \
|
||||||
|
[ "$CACLIENT_TEMP" = "py38" ] || \
|
||||||
[ "$CACLIENT_TEMP" = "py37" ] || [ "$CACLIENT_TEMP" = "py35" ] || \
|
[ "$CACLIENT_TEMP" = "py37" ] || [ "$CACLIENT_TEMP" = "py35" ] || \
|
||||||
[ "$CACLIENT_TEMP" = "julia" ] || [ "$CACLIENT_TEMP" = "cpp" ] || \
|
[ "$CACLIENT_TEMP" = "julia" ] || [ "$CACLIENT_TEMP" = "cpp" ] || \
|
||||||
[ "$CACLIENT_TEMP" = "cc" ] || [ "$CACLIENT_TEMP" = "py34" ]
|
[ "$CACLIENT_TEMP" = "cc" ] || [ "$CACLIENT_TEMP" = "py34" ]
|
||||||
@@ -191,7 +203,7 @@ then
|
|||||||
ENABLE_OPTIONS+=" --enable-epics7"
|
ENABLE_OPTIONS+=" --enable-epics7"
|
||||||
#CAFE_V+="-sls2"
|
#CAFE_V+="-sls2"
|
||||||
else
|
else
|
||||||
ENABLE_OPTIONS+=" --enable-epics3"
|
ENABLE_OPTIONS+=" --enable-epics7"
|
||||||
if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ]
|
if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ]
|
||||||
then
|
then
|
||||||
CAFE_V+="-sf"
|
CAFE_V+="-sf"
|
||||||
@@ -223,12 +235,18 @@ then
|
|||||||
ENABLE_OPTIONS+=" --enable-python38"
|
ENABLE_OPTIONS+=" --enable-python38"
|
||||||
ENABLE_OPTIONS+=" --enable-qt5py38"
|
ENABLE_OPTIONS+=" --enable-qt5py38"
|
||||||
CAFE_V+="-py38"
|
CAFE_V+="-py38"
|
||||||
|
elif [ "$CACLIENT" = "py39" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-python39"
|
||||||
|
ENABLE_OPTIONS+=" --enable-qt5py39"
|
||||||
|
CAFE_V+="-py39"
|
||||||
elif [ "$CACLIENT" = "py310" ]
|
elif [ "$CACLIENT" = "py310" ]
|
||||||
then
|
then
|
||||||
ENABLE_OPTIONS+=" --enable-python310"
|
ENABLE_OPTIONS+=" --enable-python310"
|
||||||
#ENABLE_OPTIONS+=" --enable-qt5py310"
|
#ENABLE_OPTIONS+=" --enable-qt5py310"
|
||||||
CAFE_V+="-py310"
|
CAFE_V+="-py310"
|
||||||
else
|
elif [ "$CACLIENT" = "cpp" ]
|
||||||
|
then
|
||||||
ENABLE_OPTIONS+=" --enable-qt5"
|
ENABLE_OPTIONS+=" --enable-qt5"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -277,18 +295,19 @@ export CAFE_EPICS_V_PATCH=$EBPAT
|
|||||||
|
|
||||||
echo 'ENABLE_OPTIONS============> '$ENABLE_OPTIONS
|
echo 'ENABLE_OPTIONS============> '$ENABLE_OPTIONS
|
||||||
|
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/opt/gfa/cafe/cpp/${CAFE_V} \
|
--prefix=/opt/gfa/cafe/cpp/${CAFE_V} \
|
||||||
--libdir=/opt/gfa/cafe/cpp/${CAFE_V}/lib/${EPICS_HOST_ARCH} \
|
--libdir=/opt/gfa/cafe/cpp/${CAFE_V}/lib/${_EPICS_HOST_ARCH} \
|
||||||
${ENABLE_OPTIONS} \
|
${ENABLE_OPTIONS} \
|
||||||
--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include \
|
--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include \
|
||||||
--with-epics3=${EPICS}/base \
|
--with-epics3=${EPICS}/base \
|
||||||
--with-python310=/ioc/python/latest \
|
--with-python310=/opt/gfa/python-3.10/latest \
|
||||||
--with-python38=/opt/gfa/python-3.8/latest \
|
--with-python38=/opt/gfa/python-3.8/latest \
|
||||||
--with-python37=/opt/gfa/python-3.7/latest \
|
--with-python37=/opt/gfa/python-3.7/latest \
|
||||||
--with-python35=/opt/gfa/python-3.5/latest \
|
--with-python35=/opt/gfa/python-3.5/latest \
|
||||||
--with-python34=/opt/psi/Programming/psi-python34/2.1.0 \
|
--with-python34=/opt/psi/Programming/psi-python34/2.1.0 \
|
||||||
--with-qt5py310=/ioc/python/latest \
|
--with-qt5py310=/opt/gfa/python-3.10/latest \
|
||||||
--with-qt5py38=/opt/gfa/python-3.8/latest \
|
--with-qt5py38=/opt/gfa/python-3.8/latest \
|
||||||
--with-qt5=/opt/gfa/python-3.7/latest \
|
--with-qt5=/opt/gfa/python-3.7/latest \
|
||||||
--with-qt4=/opt/gfa/python-3.5/latest \
|
--with-qt4=/opt/gfa/python-3.5/latest \
|
||||||
@@ -297,7 +316,7 @@ echo 'ENABLE_OPTIONS============> '$ENABLE_OPTIONS
|
|||||||
--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0 \
|
--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0 \
|
||||||
--with-curl=/sf/bd/deps/zmq/curl-7.55.1 \
|
--with-curl=/sf/bd/deps/zmq/curl-7.55.1 \
|
||||||
--with-lz4=/sf/bd/deps/zmq/lz4/lib \
|
--with-lz4=/sf/bd/deps/zmq/lz4/lib \
|
||||||
--with-epics7=${EPICS}/base-7.0.6
|
--with-epics7=/usr/local/epics/${EPICS_BASE}
|
||||||
unset CAFE_EPICS_V_PATCH
|
unset CAFE_EPICS_V_PATCH
|
||||||
unset CAFE_EPICS_V_MINOR
|
unset CAFE_EPICS_V_MINOR
|
||||||
unset CAFE_EPICS_V_MAJOR
|
unset CAFE_EPICS_V_MAJOR
|
||||||
|
|||||||
321
autogen_sfbd_RHEL7.sh
Normal file
321
autogen_sfbd_RHEL7.sh
Normal file
@@ -0,0 +1,321 @@
|
|||||||
|
### psi specific - select compiler
|
||||||
|
#source <this_autogen_file> <facility> <target_language>
|
||||||
|
#<facility = sls sls2 sf> default is sf
|
||||||
|
#<target_language = cpp matlab python>
|
||||||
|
module unload gcc
|
||||||
|
module load gcc/7.5.0 #7.5.0 for py38 AND PY310 7.3.0 py37
|
||||||
|
#module load gcc/8.5.0 #rhel8
|
||||||
|
### psi specific - end
|
||||||
|
|
||||||
|
rm -f configure.ac
|
||||||
|
ln -s configurePSI.ac configure.ac
|
||||||
|
|
||||||
|
rm -f ./aclocal.m4
|
||||||
|
rm -rf ./autom4te.cache
|
||||||
|
aclocal --force -I m4
|
||||||
|
/opt/gfa/python-3.7/latest/bin/libtoolize --force --copy #select libtools 2.4.6
|
||||||
|
#libtoolize --force --copy
|
||||||
|
autoconf --force #interprets configure.ac
|
||||||
|
autoheader --force
|
||||||
|
automake --force --add-missing --copy
|
||||||
|
#autoreconf not wanted
|
||||||
|
|
||||||
|
#Check what the EPICS RELEASE IS from ${EPICS}/base
|
||||||
|
#Used by ./configure
|
||||||
|
#Assumes format ${EPICS}/base-3.14.12
|
||||||
|
#source cafeVersion-gcc-7.3.0
|
||||||
|
CAFE_V="cafe-1.19.3"
|
||||||
|
EPICS_BASE='base-7.0.7'
|
||||||
|
#For later check of existence of HOST_ARCH for $EPICS/include/os/$HOST_ARCH
|
||||||
|
#Assume Linux but check if Darwin
|
||||||
|
CAFE_HOST_FLAG_DARWIN=$(echo ${EPICS_HOST_ARCH} | grep -c "Darwin")
|
||||||
|
export CAFE_HOST_FLAG_DARWIN=$CAFE_HOST_FLAG_DARWIN
|
||||||
|
|
||||||
|
RETURN_ON_WRONG_INPUT=true
|
||||||
|
RETURN_FLAG=false
|
||||||
|
|
||||||
|
###EPICS_BASE=$(readlink ${EPICS_BASE}) #$(readlink ${EPICS}/base)
|
||||||
|
|
||||||
|
_EPICS_HOST_ARCH=${RHREL}-x86_64
|
||||||
|
|
||||||
|
#EB=$(readlink /afs/psi.ch/project/cafe/gitworkspace/CAFE/cpp/base)
|
||||||
|
echo $EPICS_BASE
|
||||||
|
#if [ -z "$EPICS_BASE_VERSION" ]
|
||||||
|
#then
|
||||||
|
# EPICS_BASE='base-7.0.7' #7.0 = 7+0 = 7 for major release
|
||||||
|
#fi
|
||||||
|
|
||||||
|
echo 'input' "$0" "$1" "$2"
|
||||||
|
echo $EPICS_BASE
|
||||||
|
|
||||||
|
FACILITY=$(echo "$1" | tr '[:upper:]' '[:lower:]')
|
||||||
|
CACLIENT=$(echo "$2" | tr '[:upper:]' '[:lower:]')
|
||||||
|
|
||||||
|
FACILITY_DEFAULT="sls2"
|
||||||
|
CACLIENT_DEFAULT="py37"
|
||||||
|
|
||||||
|
FACILITY_TEMP=""
|
||||||
|
CACLIENT_TEMP=""
|
||||||
|
|
||||||
|
echo 'input arg. facility/target' $FACILITY $CACLIENT
|
||||||
|
|
||||||
|
if [ -n "$FACILITY" ]
|
||||||
|
then
|
||||||
|
if [ "$FACILITY" = "matlab" ] || [ "$FACILITY" = "python" ] || \
|
||||||
|
[ "$FACILITY" = "py310" ] || [ "$FACILITY" = "py39" ] || \
|
||||||
|
[ "$FACILITY" = "py38" ] || \
|
||||||
|
[ "$FACILITY" = "py37" ] || [ "$FACILITY" = "py35" ] || \
|
||||||
|
[ "$FACILITY" = "julia" ] || [ "$FACILITY" = "cpp" ] || \
|
||||||
|
[ "$FACILITY" = "cc" ] || [ "$FACILITY" = "py34" ]
|
||||||
|
then
|
||||||
|
CACLIENT_TEMP=$FACILITY
|
||||||
|
FACILITY_TEMP=$2
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$CACLIENT" ]
|
||||||
|
then
|
||||||
|
if [ "$CACLIENT" = "sls" ] || [ "$CACLIENT" = "sls2" ] || \
|
||||||
|
[ "$CACLIENT" = "sf" ] || [ "$CACLIENT" = "swissfel" ] || \
|
||||||
|
[ "$CACLIENT" = "sfel" ] || [ "$CACLIENT" = "hipa" ]
|
||||||
|
then
|
||||||
|
if [ -z $FACILITY_TEMP ]
|
||||||
|
then
|
||||||
|
FACILITY_TEMP=$CACLIENT
|
||||||
|
CACLIENT_TEMP=$1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if [ -z "$FACILITY" ]
|
||||||
|
then
|
||||||
|
FACILITY="sf"
|
||||||
|
echo "FACILITY = " $FACILITY
|
||||||
|
if [ -z $CACLIENT ]
|
||||||
|
then
|
||||||
|
CACLIENT=$CACLIENT_DEFAULT
|
||||||
|
fi
|
||||||
|
elif [ "$FACILITY" = "sls" ] || [ "$FACILITY" = "sls2" ] || \
|
||||||
|
[ "$FACILITY" = "sf" ] || [ "$FACILITY" = "swissfel" ] || \
|
||||||
|
[ "$FACILITY" = "sfel" ] || [ "$FACILITY" = "hipa" ]
|
||||||
|
then
|
||||||
|
echo "FACILITY = " $FACILITY
|
||||||
|
elif [ -n "$FACILITY_TEMP" ]
|
||||||
|
then
|
||||||
|
if [ "$FACILITY_TEMP" = "sls" ] || [ "$FACILITY_TEMP" = "sls2" ] || \
|
||||||
|
[ "$FACILITY_TEMP" = "sf" ] || [ "$FACILITY_TEMP" = "swissfel" ] || \
|
||||||
|
[ "$FACILITY_TEMP" = "sfel" ] || [ "$FACILITY_TEMP" = "hipa" ]
|
||||||
|
then
|
||||||
|
|
||||||
|
|
||||||
|
FACILITY=$FACILITY_TEMP
|
||||||
|
else
|
||||||
|
if [ -n "$2" ]
|
||||||
|
then
|
||||||
|
echo "***UNRECOGNIZED INPUT FACILITY***" $FACILITY
|
||||||
|
echo "***VALID VALUES ARE: sls sls2 sf hipa"
|
||||||
|
RETURN_FLAG=true
|
||||||
|
fi
|
||||||
|
echo "***OTHERWISE THE DEFAULT FACILITY IS:" $FACILITY_DEFAULT
|
||||||
|
FACILITY=$FACILITY_DEFAULT
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "***UNRECOGNIZED INPUT FACILITY***" $FACILITY
|
||||||
|
echo "***VALID VALUES ARE: sls sls2 sf hipa"
|
||||||
|
RETURN_FLAG=true
|
||||||
|
echo "***OTHERWISE THE DEFAULT FACILITY IS: " $FACILITY_DEFAULT
|
||||||
|
FACILITY=$FACILITY_DEFAULT
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$CACLIENT" ]
|
||||||
|
then
|
||||||
|
if [ "$CACLIENT" = "matlab" ] || [ "$CACLIENT" = "python" ] || \
|
||||||
|
[ "$CACLIENT" = "py310" ] || [ "$CACLIENT" = "py39" ] || \
|
||||||
|
[ "$CACLIENT" = "py38" ] || \
|
||||||
|
[ "$CACLIENT" = "py37" ] || [ "$CACLIENT" = "py35" ] || \
|
||||||
|
[ "$CACLIENT" = "julia" ] || [ "$CACLIENT" = "cpp" ] || \
|
||||||
|
[ "$CACLIENT" = "cc" ] || [ "$CACLIENT" = "py34" ]
|
||||||
|
then
|
||||||
|
echo "CA TARGET = " $CACLIENT
|
||||||
|
else
|
||||||
|
if [ -n "$CACLIENT_TEMP" ]
|
||||||
|
then
|
||||||
|
if [ "$CACLIENT_TEMP" = "matlab" ] || [ "$CACLIENT_TEMP" = "python" ] || \
|
||||||
|
[ "$CACLIENT_TEMP" = "py310" ] || [ "$CACLIENT_TEMP" = "py39" ] || \
|
||||||
|
[ "$CACLIENT_TEMP" = "py38" ] || \
|
||||||
|
[ "$CACLIENT_TEMP" = "py37" ] || [ "$CACLIENT_TEMP" = "py35" ] || \
|
||||||
|
[ "$CACLIENT_TEMP" = "julia" ] || [ "$CACLIENT_TEMP" = "cpp" ] || \
|
||||||
|
[ "$CACLIENT_TEMP" = "cc" ] || [ "$CACLIENT_TEMP" = "py34" ]
|
||||||
|
then
|
||||||
|
CACLIENT=$CACLIENT_TEMP
|
||||||
|
else
|
||||||
|
echo "***UNRECOGNIZED INPUT CA TARGET***" $CACLIENT
|
||||||
|
echo "***VALID VALUES ARE: cpp matlab python"
|
||||||
|
RETURN_FLAG=true
|
||||||
|
echo "***OTHERWISE THE DEFAULT CA TARGET IS:" $CACLIENT_DEFAULT
|
||||||
|
CACLIENT=$CACLIENT_DEFAULT
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "***UNRECOGNIZED INPUT CA TARGET***" $CACLIENT
|
||||||
|
echo "***VALID VALUES ARE: cpp matlab python"
|
||||||
|
RETURN_FLAG=true
|
||||||
|
echo "***OTHERWISE THE DEFAULT CA TARGET IS:" $CACLIENT_DEFAULT
|
||||||
|
CACLIENT=$CACLIENT_DEFAULT
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
CACLIENT=$CACLIENT_DEFAULT
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if [ $RETURN_ON_WRONG_INPUT = true ] ; then
|
||||||
|
if [ $RETURN_FLAG = true ] ; then
|
||||||
|
return 1 2>/dev/null
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "FACILITY SELECTED = " $FACILITY
|
||||||
|
echo "CA TARGET SELECTED = " $CACLIENT
|
||||||
|
|
||||||
|
ENABLE_OPTIONS="--enable-boost-inc"
|
||||||
|
|
||||||
|
if [ "$FACILITY" = "sfel" ] || [ "$FACILITY" = "swissfel" ]
|
||||||
|
then
|
||||||
|
FACILITY="sf"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$CACLIENT" = "python" ] || [ "$CACLIENT" = "julia" ]
|
||||||
|
then
|
||||||
|
CACLIENT="py37"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if [ "$FACILITY" = "sls2" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-epics7"
|
||||||
|
#CAFE_V+="-sls2"
|
||||||
|
else
|
||||||
|
ENABLE_OPTIONS+=" --enable-epics7"
|
||||||
|
if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ]
|
||||||
|
then
|
||||||
|
CAFE_V+="-sf"
|
||||||
|
elif [ "$FACILITY" = "sls" ] && [ "$CACLIENT" != "matlab" ]
|
||||||
|
then
|
||||||
|
CAFE_V+="-epics3"
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if [ "$CACLIENT" = "py34" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-python34"
|
||||||
|
ENABLE_OPTIONS+=" --enable-qt4py34"
|
||||||
|
CAFE_V+="-py34"
|
||||||
|
elif [ "$CACLIENT" = "py35" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-python35"
|
||||||
|
ENABLE_OPTIONS+=" --enable-qt4"
|
||||||
|
CAFE_V+="-py35"
|
||||||
|
elif [ "$CACLIENT" = "py37" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-python37"
|
||||||
|
ENABLE_OPTIONS+=" --enable-qt5"
|
||||||
|
CAFE_V+="-py37"
|
||||||
|
elif [ "$CACLIENT" = "py38" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-python38"
|
||||||
|
ENABLE_OPTIONS+=" --enable-qt5py38"
|
||||||
|
CAFE_V+="-py38"
|
||||||
|
elif [ "$CACLIENT" = "py39" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-python39"
|
||||||
|
ENABLE_OPTIONS+=" --enable-qt5py39"
|
||||||
|
CAFE_V+="-py39"
|
||||||
|
elif [ "$CACLIENT" = "py310" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-python310"
|
||||||
|
#ENABLE_OPTIONS+=" --enable-qt5py310"
|
||||||
|
CAFE_V+="-py310"
|
||||||
|
elif [ "$CACLIENT" = "cpp" ]
|
||||||
|
then
|
||||||
|
ENABLE_OPTIONS+=" --enable-qt5"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ]
|
||||||
|
then
|
||||||
|
#rm -f src/PyCafe.cpp
|
||||||
|
#ln -s PyCafe3.cpp src/PyCafe.cpp
|
||||||
|
ENABLE_OPTIONS+=" --enable-json"
|
||||||
|
ENABLE_OPTIONS+=" --enable-zeromq"
|
||||||
|
ENABLE_OPTIONS+=" --enable-curl"
|
||||||
|
ENABLE_OPTIONS+=" --enable-lz4"
|
||||||
|
#else
|
||||||
|
#rm -f src/PyCafe.cpp
|
||||||
|
#ln -s PyCafe_sls.cpp src/PyCafe.cpp
|
||||||
|
fi
|
||||||
|
|
||||||
|
CAFE_V+="-gcc-"$GCC_VERSION
|
||||||
|
|
||||||
|
echo "$CAFE_V"
|
||||||
|
|
||||||
|
echo 'EPICS BASE IS='$EPICS_BASE
|
||||||
|
#echo 'EPICS BASE DIR='${EPICS}/base-7.0.4.1
|
||||||
|
|
||||||
|
EB1=$(echo $EPICS_BASE | sed -e "s/[a-zA-Z]*-//g")
|
||||||
|
EBMAJ=$(echo $EB1 | sed -e "s/[[:punct:]].*//g")
|
||||||
|
EBMIN1=$(echo $EB1 | sed -e "s/^[[:digit:]]*[[:punct:]]//g")
|
||||||
|
EBMIN=$(echo $EBMIN1 | sed -e "s/[[:punct:]][[:digit:]]*//g")
|
||||||
|
EBPAT=$(echo $EB1 | sed -e "s/[[:digit:]]*[[:punct:]]//g")
|
||||||
|
echo EPICS_MAJOR=$EBMAJ
|
||||||
|
echo EPICS_MINOR=$EBMIN
|
||||||
|
echo EPICS_PATCH=$EBPAT
|
||||||
|
#echo $EBMIN1
|
||||||
|
|
||||||
|
export CAFE_EPICS_V_MAJOR=$EBMAJ
|
||||||
|
export CAFE_EPICS_V_MINOR=$EBMIN
|
||||||
|
export CAFE_EPICS_V_PATCH=$EBPAT
|
||||||
|
|
||||||
|
#ENABLE_OPTIONS+=" --enable-qt5"
|
||||||
|
##ENABLE_OPTIONS+=" --enable-qt4"
|
||||||
|
#ENABLE_OPTIONS+=" --enable-python37"
|
||||||
|
##ENABLE_OPTIONS+=" --enable-python35"
|
||||||
|
#ENABLE_OPTIONS+=" --enable-json"
|
||||||
|
#ENABLE_OPTIONS+=" --enable-zeromq"
|
||||||
|
#ENABLE_OPTIONS+=" --enable-curl"
|
||||||
|
#ENABLE_OPTIONS+=" --enable-lz4"
|
||||||
|
|
||||||
|
echo 'ENABLE_OPTIONS============> '$ENABLE_OPTIONS
|
||||||
|
|
||||||
|
|
||||||
|
./configure \
|
||||||
|
--prefix=/opt/gfa/cafe/cpp/${CAFE_V} \
|
||||||
|
--libdir=/opt/gfa/cafe/cpp/${CAFE_V}/lib/${_EPICS_HOST_ARCH} \
|
||||||
|
${ENABLE_OPTIONS} \
|
||||||
|
--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include \
|
||||||
|
--with-epics3=${EPICS}/base \
|
||||||
|
--with-python310=/opt/gfa/python-3.10/latest \
|
||||||
|
--with-python38=/opt/gfa/python-3.8/latest \
|
||||||
|
--with-python37=/opt/gfa/python-3.7/latest \
|
||||||
|
--with-python35=/opt/gfa/python-3.5/latest \
|
||||||
|
--with-python34=/opt/psi/Programming/psi-python34/2.1.0 \
|
||||||
|
--with-qt5py310=/opt/gfa/python-3.10/latest \
|
||||||
|
--with-qt5py38=/opt/gfa/python-3.8/latest \
|
||||||
|
--with-qt5=/opt/gfa/python-3.7/latest \
|
||||||
|
--with-qt4=/opt/gfa/python-3.5/latest \
|
||||||
|
--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0 \
|
||||||
|
--with-json=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2 \
|
||||||
|
--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0 \
|
||||||
|
--with-curl=/sf/bd/deps/zmq/curl-7.55.1 \
|
||||||
|
--with-lz4=/sf/bd/deps/zmq/lz4/lib \
|
||||||
|
--with-epics7=/usr/local/epics/${EPICS_BASE}
|
||||||
|
unset CAFE_EPICS_V_PATCH
|
||||||
|
unset CAFE_EPICS_V_MINOR
|
||||||
|
unset CAFE_EPICS_V_MAJOR
|
||||||
|
|
||||||
|
unset CAFE_HOST_FLAG_DARWIN
|
||||||
|
|
||||||
854
config.guess
vendored
854
config.guess
vendored
File diff suppressed because it is too large
Load Diff
892
config.log
892
config.log
File diff suppressed because it is too large
Load Diff
221
config.status
221
config.status
@@ -380,7 +380,7 @@ exec 6>&1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by CAFE $as_me 1.18.0, which was
|
This file was extended by CAFE $as_me 1.20.1, which was
|
||||||
generated by GNU Autoconf 2.69. Invocation command line was
|
generated by GNU Autoconf 2.69. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -427,9 +427,9 @@ $config_commands
|
|||||||
|
|
||||||
Report bugs to <Bug reports to: jan.chrin@psi.ch>."
|
Report bugs to <Bug reports to: jan.chrin@psi.ch>."
|
||||||
|
|
||||||
ac_cs_config="'--prefix=/opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0' '--libdir=/opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0/lib/RHEL7-x86_64' '--enable-boost-inc' '--enable-epics7' '--enable-qt5' '--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include' '--with-epics3=/usr/local/epics/base' '--with-python310=/ioc/python/latest' '--with-python38=/opt/gfa/python-3.8/latest' '--with-python37=/opt/gfa/python-3.7/latest' '--with-python35=/opt/gfa/python-3.5/latest' '--with-python34=/opt/psi/Programming/psi-python34/2.1.0' '--with-qt5py310=/ioc/python/latest' '--with-qt5py38=/opt/gfa/python-3.8/latest' '--with-qt5=/opt/gfa/python-3.7/latest' '--with-qt4=/opt/gfa/python-3.5/latest' '--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0' '--with-json=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/sf/bd/deps/zmq/curl-7.55.1' '--with-lz4=/sf/bd/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.6' 'CXX=/opt/psi/Programming/gcc/7.3.0/bin/g++' 'CC=/opt/psi/Programming/gcc/7.3.0/bin/gcc'"
|
ac_cs_config="'--prefix=/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0' '--libdir=/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64' '--enable-boost-inc' '--enable-epics7' '--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include' '--with-epics3=/usr/local/epics/base' '--with-python310=/opt/gfa/python-3.10/latest' '--with-python38=/opt/gfa/python-3.8/latest' '--with-python37=/opt/gfa/python-3.7/latest' '--with-python35=/opt/gfa/python-3.5/latest' '--with-python34=/opt/psi/Programming/psi-python34/2.1.0' '--with-qt5py310=/opt/gfa/python-3.10/latest' '--with-qt5py38=/opt/gfa/python-3.8/latest' '--with-qt5=/opt/gfa/python-3.7/latest' '--with-qt4=/opt/gfa/python-3.5/latest' '--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0' '--with-json=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/sf/bd/deps/zmq/curl-7.55.1' '--with-lz4=/sf/bd/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.8' 'CXX=/opt/psi/Programming/gcc/10.4.0/bin/g++' 'CC=/opt/psi/Programming/gcc/10.4.0/bin/gcc'"
|
||||||
ac_cs_version="\
|
ac_cs_version="\
|
||||||
CAFE config.status 1.18.0
|
CAFE config.status 1.20.1
|
||||||
configured by ./configure, generated by GNU Autoconf 2.69,
|
configured by ./configure, generated by GNU Autoconf 2.69,
|
||||||
with options \"$ac_cs_config\"
|
with options \"$ac_cs_config\"
|
||||||
|
|
||||||
@@ -519,7 +519,7 @@ if $ac_cs_silent; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if $ac_cs_recheck; then
|
if $ac_cs_recheck; then
|
||||||
set X /bin/sh './configure' '--prefix=/opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0' '--libdir=/opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0/lib/RHEL7-x86_64' '--enable-boost-inc' '--enable-epics7' '--enable-qt5' '--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include' '--with-epics3=/usr/local/epics/base' '--with-python310=/ioc/python/latest' '--with-python38=/opt/gfa/python-3.8/latest' '--with-python37=/opt/gfa/python-3.7/latest' '--with-python35=/opt/gfa/python-3.5/latest' '--with-python34=/opt/psi/Programming/psi-python34/2.1.0' '--with-qt5py310=/ioc/python/latest' '--with-qt5py38=/opt/gfa/python-3.8/latest' '--with-qt5=/opt/gfa/python-3.7/latest' '--with-qt4=/opt/gfa/python-3.5/latest' '--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0' '--with-json=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/sf/bd/deps/zmq/curl-7.55.1' '--with-lz4=/sf/bd/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.6' 'CXX=/opt/psi/Programming/gcc/7.3.0/bin/g++' 'CC=/opt/psi/Programming/gcc/7.3.0/bin/gcc' $ac_configure_extra_args --no-create --no-recursion
|
set X /bin/sh './configure' '--prefix=/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0' '--libdir=/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64' '--enable-boost-inc' '--enable-epics7' '--with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include' '--with-epics3=/usr/local/epics/base' '--with-python310=/opt/gfa/python-3.10/latest' '--with-python38=/opt/gfa/python-3.8/latest' '--with-python37=/opt/gfa/python-3.7/latest' '--with-python35=/opt/gfa/python-3.5/latest' '--with-python34=/opt/psi/Programming/psi-python34/2.1.0' '--with-qt5py310=/opt/gfa/python-3.10/latest' '--with-qt5py38=/opt/gfa/python-3.8/latest' '--with-qt5=/opt/gfa/python-3.7/latest' '--with-qt4=/opt/gfa/python-3.5/latest' '--with-qt4py34=/opt/psi/Programming/psi-python34/2.1.0' '--with-json=/sf/bd/deps/zmq/json/jsoncpp-src-0.6.0-rc2' '--with-zeromq=/sf/bd/deps/zmq/zeromq-4.2.3-gcc-6.3.0' '--with-curl=/sf/bd/deps/zmq/curl-7.55.1' '--with-lz4=/sf/bd/deps/zmq/lz4/lib' '--with-epics7=/usr/local/epics/base-7.0.8' 'CXX=/opt/psi/Programming/gcc/10.4.0/bin/g++' 'CC=/opt/psi/Programming/gcc/10.4.0/bin/gcc' $ac_configure_extra_args --no-create --no-recursion
|
||||||
shift
|
shift
|
||||||
$as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
|
$as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
|
||||||
CONFIG_SHELL='/bin/sh'
|
CONFIG_SHELL='/bin/sh'
|
||||||
@@ -539,7 +539,7 @@ _ASBOX
|
|||||||
#
|
#
|
||||||
# INIT-COMMANDS
|
# INIT-COMMANDS
|
||||||
#
|
#
|
||||||
AMDEP_TRUE="" ac_aux_dir="./"
|
AMDEP_TRUE="" MAKE="make"
|
||||||
|
|
||||||
|
|
||||||
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
||||||
@@ -560,10 +560,10 @@ SHELL='/bin/sh'
|
|||||||
ECHO='printf %s\n'
|
ECHO='printf %s\n'
|
||||||
PATH_SEPARATOR=':'
|
PATH_SEPARATOR=':'
|
||||||
host_alias=''
|
host_alias=''
|
||||||
host='x86_64-unknown-linux-gnu'
|
host='x86_64-pc-linux-gnu'
|
||||||
host_os='linux-gnu'
|
host_os='linux-gnu'
|
||||||
build_alias=''
|
build_alias=''
|
||||||
build='x86_64-unknown-linux-gnu'
|
build='x86_64-pc-linux-gnu'
|
||||||
build_os='linux-gnu'
|
build_os='linux-gnu'
|
||||||
SED='/usr/bin/sed'
|
SED='/usr/bin/sed'
|
||||||
Xsed='/usr/bin/sed -e 1s/^X//'
|
Xsed='/usr/bin/sed -e 1s/^X//'
|
||||||
@@ -599,9 +599,9 @@ old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'
|
|||||||
old_postuninstall_cmds=''
|
old_postuninstall_cmds=''
|
||||||
old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
|
old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
|
||||||
lock_old_archive_extraction='no'
|
lock_old_archive_extraction='no'
|
||||||
CC='/opt/psi/Programming/gcc/7.3.0/bin/gcc'
|
CC='/opt/psi/Programming/gcc/10.4.0/bin/gcc'
|
||||||
CFLAGS='-g -O2'
|
CFLAGS='-g -O2'
|
||||||
compiler='/opt/psi/Programming/gcc/7.3.0/bin/g++'
|
compiler='/opt/psi/Programming/gcc/10.4.0/bin/g++'
|
||||||
GCC='yes'
|
GCC='yes'
|
||||||
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
|
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
|
||||||
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
|
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
|
||||||
@@ -678,8 +678,8 @@ postuninstall_cmds=''
|
|||||||
finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
|
finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
|
||||||
finish_eval=''
|
finish_eval=''
|
||||||
hardcode_into_libs='yes'
|
hardcode_into_libs='yes'
|
||||||
sys_lib_search_path_spec='/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc /opt/psi/Programming/gcc/7.3.0/lib64 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib64 /lib64 /usr/lib64 /opt/psi/Programming/gcc/7.3.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib /lib /usr/lib '
|
sys_lib_search_path_spec='/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib/gcc/x86_64-pc-linux-gnu/10.4.0 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib/gcc /opt/psi/Programming/gcc/10.4.0/lib64 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib64 /lib64 /usr/lib64 /opt/psi/Programming/gcc/10.4.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib /lib /usr/lib '
|
||||||
configure_time_dlsearch_path='/lib /usr/lib /usr/lib64/atlas /usr/lib64//bind9-export/ /usr/lib64/dyninst /usr/lib64/llvm /usr/lib64/mysql /usr/lib/oracle/12.2/client64/lib /usr/lib64/tcl8.5/tclx8.4 /usr/lib64/tcl8.5 /usr/lib64/wine/ '
|
configure_time_dlsearch_path='/lib64 /usr/lib64 /lib /usr/lib /usr/lib64/atlas /usr/lib/oracle/19.18/client64/lib /usr/lib64/tclx8.6 /usr/lib64/wine/ '
|
||||||
configure_time_lt_sys_library_path=''
|
configure_time_lt_sys_library_path=''
|
||||||
hardcode_action='immediate'
|
hardcode_action='immediate'
|
||||||
enable_dlopen='unknown'
|
enable_dlopen='unknown'
|
||||||
@@ -697,7 +697,7 @@ LD_CXX='/usr/bin/ld -m elf_x86_64'
|
|||||||
reload_flag_CXX=' -r'
|
reload_flag_CXX=' -r'
|
||||||
reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs'
|
reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs'
|
||||||
old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
|
old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
|
||||||
compiler_CXX='/opt/psi/Programming/gcc/7.3.0/bin/g++'
|
compiler_CXX='/opt/psi/Programming/gcc/10.4.0/bin/g++'
|
||||||
GCC_CXX='yes'
|
GCC_CXX='yes'
|
||||||
lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
|
lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
|
||||||
lt_prog_compiler_pic_CXX=' -fPIC -DPIC'
|
lt_prog_compiler_pic_CXX=' -fPIC -DPIC'
|
||||||
@@ -735,16 +735,16 @@ prelink_cmds_CXX=''
|
|||||||
postlink_cmds_CXX=''
|
postlink_cmds_CXX=''
|
||||||
file_list_spec_CXX=''
|
file_list_spec_CXX=''
|
||||||
hardcode_action_CXX='immediate'
|
hardcode_action_CXX='immediate'
|
||||||
compiler_lib_search_dirs_CXX='/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc /opt/psi/Programming/gcc/7.3.0/lib64/../lib64 /opt/psi/Programming/gcc/7.3.0/lib/../lib64 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Programming/gcc/7.3.0/lib64 /opt/psi/Programming/gcc/7.3.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../..'
|
compiler_lib_search_dirs_CXX='/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc /opt/psi/Programming/gcc/10.4.0/lib64/../lib64 /opt/psi/Programming/gcc/10.4.0/lib/../lib64 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Programming/gcc/10.4.0/lib64 /opt/psi/Programming/gcc/10.4.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../..'
|
||||||
predep_objects_CXX='/lib/../lib64/crti.o /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtbeginS.o'
|
predep_objects_CXX='/lib/../lib64/crti.o /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/crtbeginS.o'
|
||||||
postdep_objects_CXX='/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtendS.o /lib/../lib64/crtn.o'
|
postdep_objects_CXX='/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/crtendS.o /lib/../lib64/crtn.o'
|
||||||
predeps_CXX=''
|
predeps_CXX=''
|
||||||
postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s'
|
postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s'
|
||||||
compiler_lib_search_path_CXX='-L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0 -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc -L/opt/psi/Programming/gcc/7.3.0/lib64/../lib64 -L/opt/psi/Programming/gcc/7.3.0/lib/../lib64 -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Programming/gcc/7.3.0/lib64 -L/opt/psi/Programming/gcc/7.3.0/lib -L/opt/psi/Tools/HDFView/3.1.2/lib -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../..'
|
compiler_lib_search_path_CXX='-L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0 -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc -L/opt/psi/Programming/gcc/10.4.0/lib64/../lib64 -L/opt/psi/Programming/gcc/10.4.0/lib/../lib64 -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Programming/gcc/10.4.0/lib64 -L/opt/psi/Programming/gcc/10.4.0/lib -L/opt/psi/Tools/HDFView/3.1.2/lib -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../..'
|
||||||
|
|
||||||
LTCC='/opt/psi/Programming/gcc/7.3.0/bin/gcc'
|
LTCC='/opt/psi/Programming/gcc/10.4.0/bin/gcc'
|
||||||
LTCFLAGS='-g -O2'
|
LTCFLAGS='-g -O2'
|
||||||
compiler='/opt/psi/Programming/gcc/7.3.0/bin/gcc'
|
compiler='/opt/psi/Programming/gcc/10.4.0/bin/gcc'
|
||||||
|
|
||||||
# A function that is used when there is no print builtin or printf.
|
# A function that is used when there is no print builtin or printf.
|
||||||
func_fallback_echo ()
|
func_fallback_echo ()
|
||||||
@@ -788,7 +788,7 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
PACKAGE='cafe'
|
PACKAGE='cafe'
|
||||||
VERSION='1.18.0'
|
VERSION='1.20.1'
|
||||||
RM='rm -f'
|
RM='rm -f'
|
||||||
ofile='libtool'
|
ofile='libtool'
|
||||||
|
|
||||||
@@ -883,14 +883,12 @@ S["HAVE_PYCAFE_EXT__FALSE"]=""
|
|||||||
S["HAVE_PYCAFE_EXT__TRUE"]="#"
|
S["HAVE_PYCAFE_EXT__TRUE"]="#"
|
||||||
S["HAVE_PYTHON__FALSE"]=""
|
S["HAVE_PYTHON__FALSE"]=""
|
||||||
S["HAVE_PYTHON__TRUE"]="#"
|
S["HAVE_PYTHON__TRUE"]="#"
|
||||||
S["AM_LDFLAGS"]=" -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpat"\
|
S["AM_LDFLAGS"]=" -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64"
|
||||||
"h,/opt/gfa/python-3.7/latest/lib "
|
S["AM_CPPFLAGS"]=" -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/ba"\
|
||||||
S["AM_CPPFLAGS"]=" -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/i"\
|
"se-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include"
|
||||||
"nclude/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/includ"\
|
|
||||||
"e/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml"
|
|
||||||
S["CAFE_CPPFLAGS"]="-I$(top_srcdir)/include "
|
S["CAFE_CPPFLAGS"]="-I$(top_srcdir)/include "
|
||||||
S["CXXCPP"]="/opt/psi/Programming/gcc/7.3.0/bin/g++ -E"
|
S["CXXCPP"]="/opt/psi/Programming/gcc/10.4.0/bin/g++ -E"
|
||||||
S["CPP"]="/opt/psi/Programming/gcc/7.3.0/bin/gcc -E"
|
S["CPP"]="/opt/psi/Programming/gcc/10.4.0/bin/gcc -E"
|
||||||
S["LT_SYS_LIBRARY_PATH"]=""
|
S["LT_SYS_LIBRARY_PATH"]=""
|
||||||
S["OTOOL64"]=""
|
S["OTOOL64"]=""
|
||||||
S["OTOOL"]=""
|
S["OTOOL"]=""
|
||||||
@@ -915,17 +913,17 @@ S["SED"]="/usr/bin/sed"
|
|||||||
S["am__fastdepCC_FALSE"]="#"
|
S["am__fastdepCC_FALSE"]="#"
|
||||||
S["am__fastdepCC_TRUE"]=""
|
S["am__fastdepCC_TRUE"]=""
|
||||||
S["CCDEPMODE"]="depmode=gcc3"
|
S["CCDEPMODE"]="depmode=gcc3"
|
||||||
S["ac_ct_CC"]="/opt/psi/Programming/gcc/7.3.0/bin/gcc"
|
S["ac_ct_CC"]="/opt/psi/Programming/gcc/10.4.0/bin/gcc"
|
||||||
S["CFLAGS"]="-g -O2"
|
S["CFLAGS"]="-g -O2"
|
||||||
S["CC"]="/opt/psi/Programming/gcc/7.3.0/bin/gcc"
|
S["CC"]="/opt/psi/Programming/gcc/10.4.0/bin/gcc"
|
||||||
S["host_os"]="linux-gnu"
|
S["host_os"]="linux-gnu"
|
||||||
S["host_vendor"]="unknown"
|
S["host_vendor"]="pc"
|
||||||
S["host_cpu"]="x86_64"
|
S["host_cpu"]="x86_64"
|
||||||
S["host"]="x86_64-unknown-linux-gnu"
|
S["host"]="x86_64-pc-linux-gnu"
|
||||||
S["build_os"]="linux-gnu"
|
S["build_os"]="linux-gnu"
|
||||||
S["build_vendor"]="unknown"
|
S["build_vendor"]="pc"
|
||||||
S["build_cpu"]="x86_64"
|
S["build_cpu"]="x86_64"
|
||||||
S["build"]="x86_64-unknown-linux-gnu"
|
S["build"]="x86_64-pc-linux-gnu"
|
||||||
S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
|
S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
|
||||||
S["am__fastdepCXX_FALSE"]="#"
|
S["am__fastdepCXX_FALSE"]="#"
|
||||||
S["am__fastdepCXX_TRUE"]=""
|
S["am__fastdepCXX_TRUE"]=""
|
||||||
@@ -934,19 +932,16 @@ S["am__nodep"]="_no"
|
|||||||
S["AMDEPBACKSLASH"]="\\"
|
S["AMDEPBACKSLASH"]="\\"
|
||||||
S["AMDEP_FALSE"]="#"
|
S["AMDEP_FALSE"]="#"
|
||||||
S["AMDEP_TRUE"]=""
|
S["AMDEP_TRUE"]=""
|
||||||
S["am__quote"]=""
|
|
||||||
S["am__include"]="include"
|
S["am__include"]="include"
|
||||||
S["DEPDIR"]=".deps"
|
S["DEPDIR"]=".deps"
|
||||||
S["OBJEXT"]="o"
|
S["OBJEXT"]="o"
|
||||||
S["EXEEXT"]=""
|
S["EXEEXT"]=""
|
||||||
S["ac_ct_CXX"]=""
|
S["ac_ct_CXX"]=""
|
||||||
S["CPPFLAGS"]=" -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/i"\
|
S["CPPFLAGS"]=" -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/ba"\
|
||||||
"nclude/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/includ"\
|
"se-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include"
|
||||||
"e/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml"
|
S["LDFLAGS"]=" -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64"
|
||||||
S["LDFLAGS"]=" -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpat"\
|
|
||||||
"h,/opt/gfa/python-3.7/latest/lib "
|
|
||||||
S["CXXFLAGS"]="-g -O2"
|
S["CXXFLAGS"]="-g -O2"
|
||||||
S["CXX"]="/opt/psi/Programming/gcc/7.3.0/bin/g++"
|
S["CXX"]="/opt/psi/Programming/gcc/10.4.0/bin/g++"
|
||||||
S["AM_BACKSLASH"]="\\"
|
S["AM_BACKSLASH"]="\\"
|
||||||
S["AM_DEFAULT_VERBOSITY"]="1"
|
S["AM_DEFAULT_VERBOSITY"]="1"
|
||||||
S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)"
|
S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)"
|
||||||
@@ -964,10 +959,10 @@ S["STRIP"]="strip"
|
|||||||
S["install_sh"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh"
|
S["install_sh"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh"
|
||||||
S["MAKEINFO"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing makeinfo"
|
S["MAKEINFO"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing makeinfo"
|
||||||
S["AUTOHEADER"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader"
|
S["AUTOHEADER"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader"
|
||||||
S["AUTOMAKE"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.13"
|
S["AUTOMAKE"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16"
|
||||||
S["AUTOCONF"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf"
|
S["AUTOCONF"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf"
|
||||||
S["ACLOCAL"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.13"
|
S["ACLOCAL"]="${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16"
|
||||||
S["VERSION"]="1.18.0"
|
S["VERSION"]="1.20.1"
|
||||||
S["PACKAGE"]="cafe"
|
S["PACKAGE"]="cafe"
|
||||||
S["CYGPATH_W"]="echo"
|
S["CYGPATH_W"]="echo"
|
||||||
S["am__isrc"]=""
|
S["am__isrc"]=""
|
||||||
@@ -977,14 +972,14 @@ S["INSTALL_PROGRAM"]="${INSTALL}"
|
|||||||
S["target_alias"]=""
|
S["target_alias"]=""
|
||||||
S["host_alias"]=""
|
S["host_alias"]=""
|
||||||
S["build_alias"]=""
|
S["build_alias"]=""
|
||||||
S["LIBS"]="-lQt5Xml -lQt5Core "
|
S["LIBS"]=""
|
||||||
S["ECHO_T"]=""
|
S["ECHO_T"]=""
|
||||||
S["ECHO_N"]="-n"
|
S["ECHO_N"]="-n"
|
||||||
S["ECHO_C"]=""
|
S["ECHO_C"]=""
|
||||||
S["DEFS"]="-DHAVE_CONFIG_H"
|
S["DEFS"]="-DHAVE_CONFIG_H"
|
||||||
S["mandir"]="${datarootdir}/man"
|
S["mandir"]="${datarootdir}/man"
|
||||||
S["localedir"]="${datarootdir}/locale"
|
S["localedir"]="${datarootdir}/locale"
|
||||||
S["libdir"]="/opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0/lib/RHEL7-x86_64"
|
S["libdir"]="/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64"
|
||||||
S["psdir"]="${docdir}"
|
S["psdir"]="${docdir}"
|
||||||
S["pdfdir"]="${docdir}"
|
S["pdfdir"]="${docdir}"
|
||||||
S["dvidir"]="${docdir}"
|
S["dvidir"]="${docdir}"
|
||||||
@@ -1002,16 +997,17 @@ S["libexecdir"]="${exec_prefix}/libexec"
|
|||||||
S["sbindir"]="${exec_prefix}/sbin"
|
S["sbindir"]="${exec_prefix}/sbin"
|
||||||
S["bindir"]="${exec_prefix}/bin"
|
S["bindir"]="${exec_prefix}/bin"
|
||||||
S["program_transform_name"]="s,x,x,"
|
S["program_transform_name"]="s,x,x,"
|
||||||
S["prefix"]="/opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0"
|
S["prefix"]="/opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0"
|
||||||
S["exec_prefix"]="${prefix}"
|
S["exec_prefix"]="${prefix}"
|
||||||
S["PACKAGE_URL"]=""
|
S["PACKAGE_URL"]=""
|
||||||
S["PACKAGE_BUGREPORT"]="Bug reports to: jan.chrin@psi.ch"
|
S["PACKAGE_BUGREPORT"]="Bug reports to: jan.chrin@psi.ch"
|
||||||
S["PACKAGE_STRING"]="CAFE 1.18.0"
|
S["PACKAGE_STRING"]="CAFE 1.20.1"
|
||||||
S["PACKAGE_VERSION"]="1.18.0"
|
S["PACKAGE_VERSION"]="1.20.1"
|
||||||
S["PACKAGE_TARNAME"]="cafe"
|
S["PACKAGE_TARNAME"]="cafe"
|
||||||
S["PACKAGE_NAME"]="CAFE"
|
S["PACKAGE_NAME"]="CAFE"
|
||||||
S["PATH_SEPARATOR"]=":"
|
S["PATH_SEPARATOR"]=":"
|
||||||
S["SHELL"]="/bin/sh"
|
S["SHELL"]="/bin/sh"
|
||||||
|
S["am__quote"]=""
|
||||||
_ACAWK
|
_ACAWK
|
||||||
cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
|
cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
|
||||||
for (key in S) S_is_set[key] = 1
|
for (key in S) S_is_set[key] = 1
|
||||||
@@ -1055,12 +1051,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
|
|||||||
BEGIN {
|
BEGIN {
|
||||||
D["PACKAGE_NAME"]=" \"CAFE\""
|
D["PACKAGE_NAME"]=" \"CAFE\""
|
||||||
D["PACKAGE_TARNAME"]=" \"cafe\""
|
D["PACKAGE_TARNAME"]=" \"cafe\""
|
||||||
D["PACKAGE_VERSION"]=" \"1.18.0\""
|
D["PACKAGE_VERSION"]=" \"1.20.1\""
|
||||||
D["PACKAGE_STRING"]=" \"CAFE 1.18.0\""
|
D["PACKAGE_STRING"]=" \"CAFE 1.20.1\""
|
||||||
D["PACKAGE_BUGREPORT"]=" \"Bug reports to: jan.chrin@psi.ch\""
|
D["PACKAGE_BUGREPORT"]=" \"Bug reports to: jan.chrin@psi.ch\""
|
||||||
D["PACKAGE_URL"]=" \"\""
|
D["PACKAGE_URL"]=" \"\""
|
||||||
D["PACKAGE"]=" \"cafe\""
|
D["PACKAGE"]=" \"cafe\""
|
||||||
D["VERSION"]=" \"1.18.0\""
|
D["VERSION"]=" \"1.20.1\""
|
||||||
D["STDC_HEADERS"]=" 1"
|
D["STDC_HEADERS"]=" 1"
|
||||||
D["HAVE_SYS_TYPES_H"]=" 1"
|
D["HAVE_SYS_TYPES_H"]=" 1"
|
||||||
D["HAVE_SYS_STAT_H"]=" 1"
|
D["HAVE_SYS_STAT_H"]=" 1"
|
||||||
@@ -1076,18 +1072,12 @@ D["LT_OBJDIR"]=" \".libs/\""
|
|||||||
D["HAVE_LINUX"]=" 1"
|
D["HAVE_LINUX"]=" 1"
|
||||||
D["HAVE_CADEF_H"]=" 1"
|
D["HAVE_CADEF_H"]=" 1"
|
||||||
D["HAVE_EPICSTYPES_H"]=" 1"
|
D["HAVE_EPICSTYPES_H"]=" 1"
|
||||||
D["HAVE_EPICS"]=" 3.14.12"
|
D["HAVE_EPICS"]=" 7.0.8"
|
||||||
D["EPICS_MAJOR"]=" 3"
|
D["EPICS_MAJOR"]=" 7"
|
||||||
D["EPICS_MINOR"]=" 14"
|
D["EPICS_MINOR"]=" 0"
|
||||||
D["EPICS_PATCH"]=" 12"
|
D["EPICS_PATCH"]=" 8"
|
||||||
D["HAVE_MULTI_INDEX_CONTAINER_HPP"]=" 1"
|
D["HAVE_MULTI_INDEX_CONTAINER_HPP"]=" 1"
|
||||||
D["HAVE_BOOST"]=" 1"
|
D["HAVE_BOOST"]=" 1"
|
||||||
D["HAVE_QXML_H"]=" 1"
|
|
||||||
D["HAVE_LIBQT5CORE"]=" 1"
|
|
||||||
D["HAVE_LIBQT5XML"]=" 1"
|
|
||||||
D["HAVE_QT"]=" 1"
|
|
||||||
D["HAVE_LIBQTXML"]=" 1"
|
|
||||||
D["QT_NO_VERSION_TAGGING"]=" 1"
|
|
||||||
for (key in D) D_is_set[key] = 1
|
for (key in D) D_is_set[key] = 1
|
||||||
FS = ""
|
FS = ""
|
||||||
}
|
}
|
||||||
@@ -1415,29 +1405,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
|
|||||||
# Older Autoconf quotes --file arguments for eval, but not when files
|
# Older Autoconf quotes --file arguments for eval, but not when files
|
||||||
# are listed without --file. Let's play safe and only enable the eval
|
# are listed without --file. Let's play safe and only enable the eval
|
||||||
# if we detect the quoting.
|
# if we detect the quoting.
|
||||||
case $CONFIG_FILES in
|
# TODO: see whether this extra hack can be removed once we start
|
||||||
*\'*) eval set x "$CONFIG_FILES" ;;
|
# requiring Autoconf 2.70 or later.
|
||||||
*) set x $CONFIG_FILES ;;
|
case $CONFIG_FILES in #(
|
||||||
esac
|
*\'*) :
|
||||||
|
eval set x "$CONFIG_FILES" ;; #(
|
||||||
|
*) :
|
||||||
|
set x $CONFIG_FILES ;; #(
|
||||||
|
*) :
|
||||||
|
;;
|
||||||
|
esac
|
||||||
shift
|
shift
|
||||||
for mf
|
# Used to flag and report bootstrapping failures.
|
||||||
|
am_rc=0
|
||||||
|
for am_mf
|
||||||
do
|
do
|
||||||
# Strip MF so we end up with the name of the file.
|
# Strip MF so we end up with the name of the file.
|
||||||
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
|
||||||
# Check whether this is an Automake generated Makefile or not.
|
# Check whether this is an Automake generated Makefile which includes
|
||||||
# We used to match only the files named 'Makefile.in', but
|
# dependency-tracking related rules and includes.
|
||||||
# some people rename them; so instead we look at the file content.
|
# Grep'ing the whole file directly is not great: AIX grep has a line
|
||||||
# Grep'ing the first line is not enough: some people post-process
|
|
||||||
# each Makefile.in and add a new line on top of each file to say so.
|
|
||||||
# Grep'ing the whole file is not good either: AIX grep has a line
|
|
||||||
# limit of 2048, but all sed's we know have understand at least 4000.
|
# limit of 2048, but all sed's we know have understand at least 4000.
|
||||||
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
|
sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
|
||||||
dirpart=`$as_dirname -- "$mf" ||
|
|| continue
|
||||||
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
am_dirpart=`$as_dirname -- "$am_mf" ||
|
||||||
X"$mf" : 'X\(//\)[^/]' \| \
|
$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||||
X"$mf" : 'X\(//\)$' \| \
|
X"$am_mf" : 'X\(//\)[^/]' \| \
|
||||||
X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
|
X"$am_mf" : 'X\(//\)$' \| \
|
||||||
$as_echo X"$mf" |
|
X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
|
||||||
|
$as_echo X"$am_mf" |
|
||||||
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
||||||
s//\1/
|
s//\1/
|
||||||
q
|
q
|
||||||
@@ -1455,53 +1451,48 @@ $as_echo X"$mf" |
|
|||||||
q
|
q
|
||||||
}
|
}
|
||||||
s/.*/./; q'`
|
s/.*/./; q'`
|
||||||
else
|
am_filepart=`$as_basename -- "$am_mf" ||
|
||||||
continue
|
$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
|
||||||
fi
|
X"$am_mf" : 'X\(//\)$' \| \
|
||||||
# Extract the definition of DEPDIR, am__include, and am__quote
|
X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
|
||||||
# from the Makefile without running 'make'.
|
$as_echo X/"$am_mf" |
|
||||||
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
sed '/^.*\/\([^/][^/]*\)\/*$/{
|
||||||
test -z "$DEPDIR" && continue
|
|
||||||
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
|
||||||
test -z "$am__include" && continue
|
|
||||||
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
|
||||||
# Find all dependency output files, they are included files with
|
|
||||||
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
|
||||||
# simplest approach to changing $(DEPDIR) to its actual value in the
|
|
||||||
# expansion.
|
|
||||||
for file in `sed -n "
|
|
||||||
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
|
||||||
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
|
|
||||||
# Make sure the directory exists.
|
|
||||||
test -f "$dirpart/$file" && continue
|
|
||||||
fdir=`$as_dirname -- "$file" ||
|
|
||||||
$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
||||||
X"$file" : 'X\(//\)[^/]' \| \
|
|
||||||
X"$file" : 'X\(//\)$' \| \
|
|
||||||
X"$file" : 'X\(/\)' \| . 2>/dev/null ||
|
|
||||||
$as_echo X"$file" |
|
|
||||||
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
|
||||||
s//\1/
|
s//\1/
|
||||||
q
|
q
|
||||||
}
|
}
|
||||||
/^X\(\/\/\)[^/].*/{
|
/^X\/\(\/\/\)$/{
|
||||||
s//\1/
|
s//\1/
|
||||||
q
|
q
|
||||||
}
|
}
|
||||||
/^X\(\/\/\)$/{
|
/^X\/\(\/\).*/{
|
||||||
s//\1/
|
|
||||||
q
|
|
||||||
}
|
|
||||||
/^X\(\/\).*/{
|
|
||||||
s//\1/
|
s//\1/
|
||||||
q
|
q
|
||||||
}
|
}
|
||||||
s/.*/./; q'`
|
s/.*/./; q'`
|
||||||
as_dir=$dirpart/$fdir; as_fn_mkdir_p
|
{ echo "$as_me:$LINENO: cd "$am_dirpart" \
|
||||||
# echo "creating $dirpart/$file"
|
&& sed -e '/# am--include-marker/d' "$am_filepart" \
|
||||||
echo '# dummy' > "$dirpart/$file"
|
| $MAKE -f - am--depfiles" >&5
|
||||||
done
|
(cd "$am_dirpart" \
|
||||||
|
&& sed -e '/# am--include-marker/d' "$am_filepart" \
|
||||||
|
| $MAKE -f - am--depfiles) >&5 2>&5
|
||||||
|
ac_status=$?
|
||||||
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
|
(exit $ac_status); } || am_rc=$?
|
||||||
done
|
done
|
||||||
|
if test $am_rc -ne 0; then
|
||||||
|
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
||||||
|
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
||||||
|
as_fn_error $? "Something went wrong bootstrapping makefile fragments
|
||||||
|
for automatic dependency tracking. Try re-running configure with the
|
||||||
|
'--disable-dependency-tracking' option to at least be able to build
|
||||||
|
the package (albeit without support for automatic dependency tracking).
|
||||||
|
See \`config.log' for more details" "$LINENO" 5; }
|
||||||
|
fi
|
||||||
|
{ am_dirpart=; unset am_dirpart;}
|
||||||
|
{ am_filepart=; unset am_filepart;}
|
||||||
|
{ am_mf=; unset am_mf;}
|
||||||
|
{ am_rc=; unset am_rc;}
|
||||||
|
rm -f conftest-deps.mk
|
||||||
}
|
}
|
||||||
;;
|
;;
|
||||||
"libtool":C)
|
"libtool":C)
|
||||||
|
|||||||
409
config.sub
vendored
409
config.sub
vendored
@@ -1,8 +1,8 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Configuration validation subroutine script.
|
# Configuration validation subroutine script.
|
||||||
# Copyright 1992-2013 Free Software Foundation, Inc.
|
# Copyright 1992-2018 Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2013-04-24'
|
timestamp='2018-05-05'
|
||||||
|
|
||||||
# This file is free software; you can redistribute it and/or modify it
|
# This file is free software; you can redistribute it and/or modify it
|
||||||
# under the terms of the GNU General Public License as published by
|
# under the terms of the GNU General Public License as published by
|
||||||
@@ -15,7 +15,7 @@ timestamp='2013-04-24'
|
|||||||
# General Public License for more details.
|
# General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
# along with this program; if not, see <https://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
# As a special exception to the GNU General Public License, if you
|
# As a special exception to the GNU General Public License, if you
|
||||||
# distribute this file as part of a program that contains a
|
# distribute this file as part of a program that contains a
|
||||||
@@ -25,7 +25,7 @@ timestamp='2013-04-24'
|
|||||||
# of the GNU General Public License, version 3 ("GPLv3").
|
# of the GNU General Public License, version 3 ("GPLv3").
|
||||||
|
|
||||||
|
|
||||||
# Please send patches with a ChangeLog entry to config-patches@gnu.org.
|
# Please send patches to <config-patches@gnu.org>.
|
||||||
#
|
#
|
||||||
# Configuration subroutine to validate and canonicalize a configuration type.
|
# Configuration subroutine to validate and canonicalize a configuration type.
|
||||||
# Supply the specified configuration type as an argument.
|
# Supply the specified configuration type as an argument.
|
||||||
@@ -33,7 +33,7 @@ timestamp='2013-04-24'
|
|||||||
# Otherwise, we print the canonical config type on stdout and succeed.
|
# Otherwise, we print the canonical config type on stdout and succeed.
|
||||||
|
|
||||||
# You can get the latest version of this script from:
|
# You can get the latest version of this script from:
|
||||||
# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
|
# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
|
||||||
|
|
||||||
# This file is supposed to be the same for all GNU packages
|
# This file is supposed to be the same for all GNU packages
|
||||||
# and recognize all the CPU types, system types and aliases
|
# and recognize all the CPU types, system types and aliases
|
||||||
@@ -53,12 +53,11 @@ timestamp='2013-04-24'
|
|||||||
me=`echo "$0" | sed -e 's,.*/,,'`
|
me=`echo "$0" | sed -e 's,.*/,,'`
|
||||||
|
|
||||||
usage="\
|
usage="\
|
||||||
Usage: $0 [OPTION] CPU-MFR-OPSYS
|
Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS
|
||||||
$0 [OPTION] ALIAS
|
|
||||||
|
|
||||||
Canonicalize a configuration name.
|
Canonicalize a configuration name.
|
||||||
|
|
||||||
Operation modes:
|
Options:
|
||||||
-h, --help print this help, then exit
|
-h, --help print this help, then exit
|
||||||
-t, --time-stamp print date of last modification, then exit
|
-t, --time-stamp print date of last modification, then exit
|
||||||
-v, --version print version number, then exit
|
-v, --version print version number, then exit
|
||||||
@@ -68,7 +67,7 @@ Report bugs and patches to <config-patches@gnu.org>."
|
|||||||
version="\
|
version="\
|
||||||
GNU config.sub ($timestamp)
|
GNU config.sub ($timestamp)
|
||||||
|
|
||||||
Copyright 1992-2013 Free Software Foundation, Inc.
|
Copyright 1992-2018 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This is free software; see the source for copying conditions. There is NO
|
This is free software; see the source for copying conditions. There is NO
|
||||||
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
||||||
@@ -95,7 +94,7 @@ while test $# -gt 0 ; do
|
|||||||
|
|
||||||
*local*)
|
*local*)
|
||||||
# First pass through any local machine types.
|
# First pass through any local machine types.
|
||||||
echo $1
|
echo "$1"
|
||||||
exit ;;
|
exit ;;
|
||||||
|
|
||||||
* )
|
* )
|
||||||
@@ -111,28 +110,48 @@ case $# in
|
|||||||
exit 1;;
|
exit 1;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
|
# Spilt fields of configuration type
|
||||||
# Here we must recognize all the valid KERNEL-OS combinations.
|
IFS="-" read -r field1 field2 field3 field4 <<EOF
|
||||||
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
|
$1
|
||||||
case $maybe_os in
|
EOF
|
||||||
nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
|
|
||||||
linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
|
# Separate into logical components for further validation
|
||||||
knetbsd*-gnu* | netbsd*-gnu* | \
|
case $1 in
|
||||||
kopensolaris*-gnu* | \
|
*-*-*-*)
|
||||||
storm-chaos* | os2-emx* | rtmk-nova*)
|
basic_machine=$field1-$field2
|
||||||
os=-$maybe_os
|
os=-$field3-$field4
|
||||||
basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
|
;;
|
||||||
;;
|
*-*-*)
|
||||||
android-linux)
|
# Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
|
||||||
os=-linux-android
|
# parts
|
||||||
basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
|
maybe_os=$field2-$field3
|
||||||
;;
|
case $maybe_os in
|
||||||
*)
|
nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \
|
||||||
basic_machine=`echo $1 | sed 's/-[^-]*$//'`
|
| linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \
|
||||||
if [ $basic_machine != $1 ]
|
| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
|
||||||
then os=`echo $1 | sed 's/.*-/-/'`
|
| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
|
||||||
else os=; fi
|
| storm-chaos* | os2-emx* | rtmk-nova*)
|
||||||
;;
|
basic_machine=$field1
|
||||||
|
os=-$maybe_os
|
||||||
|
;;
|
||||||
|
android-linux)
|
||||||
|
basic_machine=$field1-unknown
|
||||||
|
os=-linux-android
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
basic_machine=$field1-$field2
|
||||||
|
os=-$field3
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*-*)
|
||||||
|
basic_machine=$field1
|
||||||
|
os=-$field2
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
basic_machine=$1
|
||||||
|
os=
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
### Let's recognize common machines as not being operating systems so
|
### Let's recognize common machines as not being operating systems so
|
||||||
@@ -179,44 +198,44 @@ case $os in
|
|||||||
;;
|
;;
|
||||||
-sco6)
|
-sco6)
|
||||||
os=-sco5v6
|
os=-sco5v6
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-sco5)
|
-sco5)
|
||||||
os=-sco3.2v5
|
os=-sco3.2v5
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-sco4)
|
-sco4)
|
||||||
os=-sco3.2v4
|
os=-sco3.2v4
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-sco3.2.[4-9]*)
|
-sco3.2.[4-9]*)
|
||||||
os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
|
os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-sco3.2v[4-9]*)
|
-sco3.2v[4-9]*)
|
||||||
# Don't forget version if it is 3.2v4 or newer.
|
# Don't forget version if it is 3.2v4 or newer.
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-sco5v6*)
|
-sco5v6*)
|
||||||
# Don't forget version if it is 3.2v4 or newer.
|
# Don't forget version if it is 3.2v4 or newer.
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-sco*)
|
-sco*)
|
||||||
os=-sco3.2v2
|
os=-sco3.2v2
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-udk*)
|
-udk*)
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-isc)
|
-isc)
|
||||||
os=-isc2.2
|
os=-isc2.2
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-clix*)
|
-clix*)
|
||||||
basic_machine=clipper-intergraph
|
basic_machine=clipper-intergraph
|
||||||
;;
|
;;
|
||||||
-isc*)
|
-isc*)
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
|
||||||
;;
|
;;
|
||||||
-lynx*178)
|
-lynx*178)
|
||||||
os=-lynxos178
|
os=-lynxos178
|
||||||
@@ -228,10 +247,7 @@ case $os in
|
|||||||
os=-lynxos
|
os=-lynxos
|
||||||
;;
|
;;
|
||||||
-ptx*)
|
-ptx*)
|
||||||
basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
|
basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'`
|
||||||
;;
|
|
||||||
-windowsnt*)
|
|
||||||
os=`echo $os | sed -e 's/windowsnt/winnt/'`
|
|
||||||
;;
|
;;
|
||||||
-psos*)
|
-psos*)
|
||||||
os=-psos
|
os=-psos
|
||||||
@@ -253,18 +269,20 @@ case $basic_machine in
|
|||||||
| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
|
| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
|
||||||
| am33_2.0 \
|
| am33_2.0 \
|
||||||
| arc | arceb \
|
| arc | arceb \
|
||||||
| arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
|
| arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv6m | armv[78][arm] \
|
||||||
| avr | avr32 \
|
| avr | avr32 \
|
||||||
|
| ba \
|
||||||
| be32 | be64 \
|
| be32 | be64 \
|
||||||
| bfin \
|
| bfin \
|
||||||
| c4x | clipper \
|
| c4x | c8051 | clipper | csky \
|
||||||
| d10v | d30v | dlx | dsp16xx \
|
| d10v | d30v | dlx | dsp16xx \
|
||||||
| epiphany \
|
| e2k | epiphany \
|
||||||
| fido | fr30 | frv \
|
| fido | fr30 | frv | ft32 \
|
||||||
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
|
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
|
||||||
| hexagon \
|
| hexagon \
|
||||||
| i370 | i860 | i960 | ia64 \
|
| i370 | i860 | i960 | ia16 | ia64 \
|
||||||
| ip2k | iq2000 \
|
| ip2k | iq2000 \
|
||||||
|
| k1om \
|
||||||
| le32 | le64 \
|
| le32 | le64 \
|
||||||
| lm32 \
|
| lm32 \
|
||||||
| m32c | m32r | m32rle | m68000 | m68k | m88k \
|
| m32c | m32r | m32rle | m68000 | m68k | m88k \
|
||||||
@@ -282,8 +300,10 @@ case $basic_machine in
|
|||||||
| mips64vr5900 | mips64vr5900el \
|
| mips64vr5900 | mips64vr5900el \
|
||||||
| mipsisa32 | mipsisa32el \
|
| mipsisa32 | mipsisa32el \
|
||||||
| mipsisa32r2 | mipsisa32r2el \
|
| mipsisa32r2 | mipsisa32r2el \
|
||||||
|
| mipsisa32r6 | mipsisa32r6el \
|
||||||
| mipsisa64 | mipsisa64el \
|
| mipsisa64 | mipsisa64el \
|
||||||
| mipsisa64r2 | mipsisa64r2el \
|
| mipsisa64r2 | mipsisa64r2el \
|
||||||
|
| mipsisa64r6 | mipsisa64r6el \
|
||||||
| mipsisa64sb1 | mipsisa64sb1el \
|
| mipsisa64sb1 | mipsisa64sb1el \
|
||||||
| mipsisa64sr71k | mipsisa64sr71kel \
|
| mipsisa64sr71k | mipsisa64sr71kel \
|
||||||
| mipsr5900 | mipsr5900el \
|
| mipsr5900 | mipsr5900el \
|
||||||
@@ -293,16 +313,18 @@ case $basic_machine in
|
|||||||
| mt \
|
| mt \
|
||||||
| msp430 \
|
| msp430 \
|
||||||
| nds32 | nds32le | nds32be \
|
| nds32 | nds32le | nds32be \
|
||||||
|
| nfp \
|
||||||
| nios | nios2 | nios2eb | nios2el \
|
| nios | nios2 | nios2eb | nios2el \
|
||||||
| ns16k | ns32k \
|
| ns16k | ns32k \
|
||||||
| open8 \
|
| open8 | or1k | or1knd | or32 \
|
||||||
| or1k | or32 \
|
| pdp10 | pj | pjl \
|
||||||
| pdp10 | pdp11 | pj | pjl \
|
|
||||||
| powerpc | powerpc64 | powerpc64le | powerpcle \
|
| powerpc | powerpc64 | powerpc64le | powerpcle \
|
||||||
|
| pru \
|
||||||
| pyramid \
|
| pyramid \
|
||||||
|
| riscv32 | riscv64 \
|
||||||
| rl78 | rx \
|
| rl78 | rx \
|
||||||
| score \
|
| score \
|
||||||
| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
|
| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
|
||||||
| sh64 | sh64le \
|
| sh64 | sh64le \
|
||||||
| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
|
| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
|
||||||
| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
|
| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
|
||||||
@@ -310,7 +332,8 @@ case $basic_machine in
|
|||||||
| tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
|
| tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
|
||||||
| ubicom32 \
|
| ubicom32 \
|
||||||
| v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
|
| v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
|
||||||
| we32k \
|
| visium \
|
||||||
|
| wasm32 \
|
||||||
| x86 | xc16x | xstormy16 | xtensa \
|
| x86 | xc16x | xstormy16 | xtensa \
|
||||||
| z8k | z80)
|
| z8k | z80)
|
||||||
basic_machine=$basic_machine-unknown
|
basic_machine=$basic_machine-unknown
|
||||||
@@ -324,11 +347,18 @@ case $basic_machine in
|
|||||||
c6x)
|
c6x)
|
||||||
basic_machine=tic6x-unknown
|
basic_machine=tic6x-unknown
|
||||||
;;
|
;;
|
||||||
m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip)
|
leon|leon[3-9])
|
||||||
|
basic_machine=sparc-$basic_machine
|
||||||
|
;;
|
||||||
|
m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)
|
||||||
basic_machine=$basic_machine-unknown
|
basic_machine=$basic_machine-unknown
|
||||||
os=-none
|
os=-none
|
||||||
;;
|
;;
|
||||||
m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
|
m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65)
|
||||||
|
;;
|
||||||
|
m9s12z | m68hcs12z | hcs12z | s12z)
|
||||||
|
basic_machine=s12z-unknown
|
||||||
|
os=-none
|
||||||
;;
|
;;
|
||||||
ms1)
|
ms1)
|
||||||
basic_machine=mt-unknown
|
basic_machine=mt-unknown
|
||||||
@@ -357,7 +387,7 @@ case $basic_machine in
|
|||||||
;;
|
;;
|
||||||
# Object if more than one company name word.
|
# Object if more than one company name word.
|
||||||
*-*-*)
|
*-*-*)
|
||||||
echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
|
echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
# Recognize the basic CPU types with company name.
|
# Recognize the basic CPU types with company name.
|
||||||
@@ -369,18 +399,20 @@ case $basic_machine in
|
|||||||
| alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
|
| alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
|
||||||
| arm-* | armbe-* | armle-* | armeb-* | armv*-* \
|
| arm-* | armbe-* | armle-* | armeb-* | armv*-* \
|
||||||
| avr-* | avr32-* \
|
| avr-* | avr32-* \
|
||||||
|
| ba-* \
|
||||||
| be32-* | be64-* \
|
| be32-* | be64-* \
|
||||||
| bfin-* | bs2000-* \
|
| bfin-* | bs2000-* \
|
||||||
| c[123]* | c30-* | [cjt]90-* | c4x-* \
|
| c[123]* | c30-* | [cjt]90-* | c4x-* \
|
||||||
| clipper-* | craynv-* | cydra-* \
|
| c8051-* | clipper-* | craynv-* | csky-* | cydra-* \
|
||||||
| d10v-* | d30v-* | dlx-* \
|
| d10v-* | d30v-* | dlx-* \
|
||||||
| elxsi-* \
|
| e2k-* | elxsi-* \
|
||||||
| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
|
| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
|
||||||
| h8300-* | h8500-* \
|
| h8300-* | h8500-* \
|
||||||
| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
|
| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
|
||||||
| hexagon-* \
|
| hexagon-* \
|
||||||
| i*86-* | i860-* | i960-* | ia64-* \
|
| i*86-* | i860-* | i960-* | ia16-* | ia64-* \
|
||||||
| ip2k-* | iq2000-* \
|
| ip2k-* | iq2000-* \
|
||||||
|
| k1om-* \
|
||||||
| le32-* | le64-* \
|
| le32-* | le64-* \
|
||||||
| lm32-* \
|
| lm32-* \
|
||||||
| m32c-* | m32r-* | m32rle-* \
|
| m32c-* | m32r-* | m32rle-* \
|
||||||
@@ -400,8 +432,10 @@ case $basic_machine in
|
|||||||
| mips64vr5900-* | mips64vr5900el-* \
|
| mips64vr5900-* | mips64vr5900el-* \
|
||||||
| mipsisa32-* | mipsisa32el-* \
|
| mipsisa32-* | mipsisa32el-* \
|
||||||
| mipsisa32r2-* | mipsisa32r2el-* \
|
| mipsisa32r2-* | mipsisa32r2el-* \
|
||||||
|
| mipsisa32r6-* | mipsisa32r6el-* \
|
||||||
| mipsisa64-* | mipsisa64el-* \
|
| mipsisa64-* | mipsisa64el-* \
|
||||||
| mipsisa64r2-* | mipsisa64r2el-* \
|
| mipsisa64r2-* | mipsisa64r2el-* \
|
||||||
|
| mipsisa64r6-* | mipsisa64r6el-* \
|
||||||
| mipsisa64sb1-* | mipsisa64sb1el-* \
|
| mipsisa64sb1-* | mipsisa64sb1el-* \
|
||||||
| mipsisa64sr71k-* | mipsisa64sr71kel-* \
|
| mipsisa64sr71k-* | mipsisa64sr71kel-* \
|
||||||
| mipsr5900-* | mipsr5900el-* \
|
| mipsr5900-* | mipsr5900el-* \
|
||||||
@@ -410,19 +444,23 @@ case $basic_machine in
|
|||||||
| mt-* \
|
| mt-* \
|
||||||
| msp430-* \
|
| msp430-* \
|
||||||
| nds32-* | nds32le-* | nds32be-* \
|
| nds32-* | nds32le-* | nds32be-* \
|
||||||
|
| nfp-* \
|
||||||
| nios-* | nios2-* | nios2eb-* | nios2el-* \
|
| nios-* | nios2-* | nios2eb-* | nios2el-* \
|
||||||
| none-* | np1-* | ns16k-* | ns32k-* \
|
| none-* | np1-* | ns16k-* | ns32k-* \
|
||||||
| open8-* \
|
| open8-* \
|
||||||
|
| or1k*-* \
|
||||||
| orion-* \
|
| orion-* \
|
||||||
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
|
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
|
||||||
| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
|
| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
|
||||||
|
| pru-* \
|
||||||
| pyramid-* \
|
| pyramid-* \
|
||||||
|
| riscv32-* | riscv64-* \
|
||||||
| rl78-* | romp-* | rs6000-* | rx-* \
|
| rl78-* | romp-* | rs6000-* | rx-* \
|
||||||
| sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
|
| sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
|
||||||
| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
|
| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
|
||||||
| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
|
| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
|
||||||
| sparclite-* \
|
| sparclite-* \
|
||||||
| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \
|
| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \
|
||||||
| tahoe-* \
|
| tahoe-* \
|
||||||
| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
|
| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
|
||||||
| tile*-* \
|
| tile*-* \
|
||||||
@@ -430,6 +468,8 @@ case $basic_machine in
|
|||||||
| ubicom32-* \
|
| ubicom32-* \
|
||||||
| v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
|
| v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
|
||||||
| vax-* \
|
| vax-* \
|
||||||
|
| visium-* \
|
||||||
|
| wasm32-* \
|
||||||
| we32k-* \
|
| we32k-* \
|
||||||
| x86-* | x86_64-* | xc16x-* | xps100-* \
|
| x86-* | x86_64-* | xc16x-* | xps100-* \
|
||||||
| xstormy16-* | xtensa*-* \
|
| xstormy16-* | xtensa*-* \
|
||||||
@@ -443,7 +483,7 @@ case $basic_machine in
|
|||||||
# Recognize the various machine names and aliases which stand
|
# Recognize the various machine names and aliases which stand
|
||||||
# for a CPU type and a company and sometimes even an OS.
|
# for a CPU type and a company and sometimes even an OS.
|
||||||
386bsd)
|
386bsd)
|
||||||
basic_machine=i386-unknown
|
basic_machine=i386-pc
|
||||||
os=-bsd
|
os=-bsd
|
||||||
;;
|
;;
|
||||||
3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
|
3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
|
||||||
@@ -477,7 +517,7 @@ case $basic_machine in
|
|||||||
basic_machine=x86_64-pc
|
basic_machine=x86_64-pc
|
||||||
;;
|
;;
|
||||||
amd64-*)
|
amd64-*)
|
||||||
basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
amdahl)
|
amdahl)
|
||||||
basic_machine=580-amdahl
|
basic_machine=580-amdahl
|
||||||
@@ -506,6 +546,9 @@ case $basic_machine in
|
|||||||
basic_machine=i386-pc
|
basic_machine=i386-pc
|
||||||
os=-aros
|
os=-aros
|
||||||
;;
|
;;
|
||||||
|
asmjs)
|
||||||
|
basic_machine=asmjs-unknown
|
||||||
|
;;
|
||||||
aux)
|
aux)
|
||||||
basic_machine=m68k-apple
|
basic_machine=m68k-apple
|
||||||
os=-aux
|
os=-aux
|
||||||
@@ -519,7 +562,7 @@ case $basic_machine in
|
|||||||
os=-linux
|
os=-linux
|
||||||
;;
|
;;
|
||||||
blackfin-*)
|
blackfin-*)
|
||||||
basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
os=-linux
|
os=-linux
|
||||||
;;
|
;;
|
||||||
bluegene*)
|
bluegene*)
|
||||||
@@ -527,13 +570,13 @@ case $basic_machine in
|
|||||||
os=-cnk
|
os=-cnk
|
||||||
;;
|
;;
|
||||||
c54x-*)
|
c54x-*)
|
||||||
basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
c55x-*)
|
c55x-*)
|
||||||
basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
c6x-*)
|
c6x-*)
|
||||||
basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
c90)
|
c90)
|
||||||
basic_machine=c90-cray
|
basic_machine=c90-cray
|
||||||
@@ -622,10 +665,18 @@ case $basic_machine in
|
|||||||
basic_machine=rs6000-bull
|
basic_machine=rs6000-bull
|
||||||
os=-bosx
|
os=-bosx
|
||||||
;;
|
;;
|
||||||
dpx2* | dpx2*-bull)
|
dpx2*)
|
||||||
basic_machine=m68k-bull
|
basic_machine=m68k-bull
|
||||||
os=-sysv3
|
os=-sysv3
|
||||||
;;
|
;;
|
||||||
|
e500v[12])
|
||||||
|
basic_machine=powerpc-unknown
|
||||||
|
os=$os"spe"
|
||||||
|
;;
|
||||||
|
e500v[12]-*)
|
||||||
|
basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
|
os=$os"spe"
|
||||||
|
;;
|
||||||
ebmon29k)
|
ebmon29k)
|
||||||
basic_machine=a29k-amd
|
basic_machine=a29k-amd
|
||||||
os=-ebmon
|
os=-ebmon
|
||||||
@@ -715,9 +766,6 @@ case $basic_machine in
|
|||||||
hp9k8[0-9][0-9] | hp8[0-9][0-9])
|
hp9k8[0-9][0-9] | hp8[0-9][0-9])
|
||||||
basic_machine=hppa1.0-hp
|
basic_machine=hppa1.0-hp
|
||||||
;;
|
;;
|
||||||
hppa-next)
|
|
||||||
os=-nextstep3
|
|
||||||
;;
|
|
||||||
hppaosf)
|
hppaosf)
|
||||||
basic_machine=hppa1.1-hp
|
basic_machine=hppa1.1-hp
|
||||||
os=-osf
|
os=-osf
|
||||||
@@ -730,26 +778,26 @@ case $basic_machine in
|
|||||||
basic_machine=i370-ibm
|
basic_machine=i370-ibm
|
||||||
;;
|
;;
|
||||||
i*86v32)
|
i*86v32)
|
||||||
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
|
||||||
os=-sysv32
|
os=-sysv32
|
||||||
;;
|
;;
|
||||||
i*86v4*)
|
i*86v4*)
|
||||||
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
|
||||||
os=-sysv4
|
os=-sysv4
|
||||||
;;
|
;;
|
||||||
i*86v)
|
i*86v)
|
||||||
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
|
||||||
os=-sysv
|
os=-sysv
|
||||||
;;
|
;;
|
||||||
i*86sol2)
|
i*86sol2)
|
||||||
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
|
basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
|
||||||
os=-solaris2
|
os=-solaris2
|
||||||
;;
|
;;
|
||||||
i386mach)
|
i386mach)
|
||||||
basic_machine=i386-mach
|
basic_machine=i386-mach
|
||||||
os=-mach
|
os=-mach
|
||||||
;;
|
;;
|
||||||
i386-vsta | vsta)
|
vsta)
|
||||||
basic_machine=i386-unknown
|
basic_machine=i386-unknown
|
||||||
os=-vsta
|
os=-vsta
|
||||||
;;
|
;;
|
||||||
@@ -767,17 +815,17 @@ case $basic_machine in
|
|||||||
basic_machine=m68k-isi
|
basic_machine=m68k-isi
|
||||||
os=-sysv
|
os=-sysv
|
||||||
;;
|
;;
|
||||||
|
leon-*|leon[3-9]-*)
|
||||||
|
basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'`
|
||||||
|
;;
|
||||||
m68knommu)
|
m68knommu)
|
||||||
basic_machine=m68k-unknown
|
basic_machine=m68k-unknown
|
||||||
os=-linux
|
os=-linux
|
||||||
;;
|
;;
|
||||||
m68knommu-*)
|
m68knommu-*)
|
||||||
basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
os=-linux
|
os=-linux
|
||||||
;;
|
;;
|
||||||
m88k-omron*)
|
|
||||||
basic_machine=m88k-omron
|
|
||||||
;;
|
|
||||||
magnum | m3230)
|
magnum | m3230)
|
||||||
basic_machine=mips-mips
|
basic_machine=mips-mips
|
||||||
os=-sysv
|
os=-sysv
|
||||||
@@ -794,7 +842,7 @@ case $basic_machine in
|
|||||||
os=-mingw64
|
os=-mingw64
|
||||||
;;
|
;;
|
||||||
mingw32)
|
mingw32)
|
||||||
basic_machine=i386-pc
|
basic_machine=i686-pc
|
||||||
os=-mingw32
|
os=-mingw32
|
||||||
;;
|
;;
|
||||||
mingw32ce)
|
mingw32ce)
|
||||||
@@ -809,10 +857,10 @@ case $basic_machine in
|
|||||||
os=-mint
|
os=-mint
|
||||||
;;
|
;;
|
||||||
mips3*-*)
|
mips3*-*)
|
||||||
basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
|
basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`
|
||||||
;;
|
;;
|
||||||
mips3*)
|
mips3*)
|
||||||
basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
|
basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown
|
||||||
;;
|
;;
|
||||||
monitor)
|
monitor)
|
||||||
basic_machine=m68k-rom68k
|
basic_machine=m68k-rom68k
|
||||||
@@ -822,15 +870,19 @@ case $basic_machine in
|
|||||||
basic_machine=powerpc-unknown
|
basic_machine=powerpc-unknown
|
||||||
os=-morphos
|
os=-morphos
|
||||||
;;
|
;;
|
||||||
|
moxiebox)
|
||||||
|
basic_machine=moxie-unknown
|
||||||
|
os=-moxiebox
|
||||||
|
;;
|
||||||
msdos)
|
msdos)
|
||||||
basic_machine=i386-pc
|
basic_machine=i386-pc
|
||||||
os=-msdos
|
os=-msdos
|
||||||
;;
|
;;
|
||||||
ms1-*)
|
ms1-*)
|
||||||
basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
|
basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'`
|
||||||
;;
|
;;
|
||||||
msys)
|
msys)
|
||||||
basic_machine=i386-pc
|
basic_machine=i686-pc
|
||||||
os=-msys
|
os=-msys
|
||||||
;;
|
;;
|
||||||
mvs)
|
mvs)
|
||||||
@@ -869,7 +921,7 @@ case $basic_machine in
|
|||||||
basic_machine=v70-nec
|
basic_machine=v70-nec
|
||||||
os=-sysv
|
os=-sysv
|
||||||
;;
|
;;
|
||||||
next | m*-next )
|
next | m*-next)
|
||||||
basic_machine=m68k-next
|
basic_machine=m68k-next
|
||||||
case $os in
|
case $os in
|
||||||
-nextstep* )
|
-nextstep* )
|
||||||
@@ -914,6 +966,12 @@ case $basic_machine in
|
|||||||
nsr-tandem)
|
nsr-tandem)
|
||||||
basic_machine=nsr-tandem
|
basic_machine=nsr-tandem
|
||||||
;;
|
;;
|
||||||
|
nsv-tandem)
|
||||||
|
basic_machine=nsv-tandem
|
||||||
|
;;
|
||||||
|
nsx-tandem)
|
||||||
|
basic_machine=nsx-tandem
|
||||||
|
;;
|
||||||
op50n-* | op60c-*)
|
op50n-* | op60c-*)
|
||||||
basic_machine=hppa1.1-oki
|
basic_machine=hppa1.1-oki
|
||||||
os=-proelf
|
os=-proelf
|
||||||
@@ -946,7 +1004,7 @@ case $basic_machine in
|
|||||||
os=-linux
|
os=-linux
|
||||||
;;
|
;;
|
||||||
parisc-*)
|
parisc-*)
|
||||||
basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
os=-linux
|
os=-linux
|
||||||
;;
|
;;
|
||||||
pbd)
|
pbd)
|
||||||
@@ -962,7 +1020,7 @@ case $basic_machine in
|
|||||||
basic_machine=i386-pc
|
basic_machine=i386-pc
|
||||||
;;
|
;;
|
||||||
pc98-*)
|
pc98-*)
|
||||||
basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
pentium | p5 | k5 | k6 | nexgen | viac3)
|
pentium | p5 | k5 | k6 | nexgen | viac3)
|
||||||
basic_machine=i586-pc
|
basic_machine=i586-pc
|
||||||
@@ -977,16 +1035,16 @@ case $basic_machine in
|
|||||||
basic_machine=i786-pc
|
basic_machine=i786-pc
|
||||||
;;
|
;;
|
||||||
pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
|
pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
|
||||||
basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
pentiumpro-* | p6-* | 6x86-* | athlon-*)
|
pentiumpro-* | p6-* | 6x86-* | athlon-*)
|
||||||
basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
|
pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
|
||||||
basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
pentium4-*)
|
pentium4-*)
|
||||||
basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
pn)
|
pn)
|
||||||
basic_machine=pn-gould
|
basic_machine=pn-gould
|
||||||
@@ -996,23 +1054,23 @@ case $basic_machine in
|
|||||||
ppc | ppcbe) basic_machine=powerpc-unknown
|
ppc | ppcbe) basic_machine=powerpc-unknown
|
||||||
;;
|
;;
|
||||||
ppc-* | ppcbe-*)
|
ppc-* | ppcbe-*)
|
||||||
basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
ppcle | powerpclittle | ppc-le | powerpc-little)
|
ppcle | powerpclittle)
|
||||||
basic_machine=powerpcle-unknown
|
basic_machine=powerpcle-unknown
|
||||||
;;
|
;;
|
||||||
ppcle-* | powerpclittle-*)
|
ppcle-* | powerpclittle-*)
|
||||||
basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
ppc64) basic_machine=powerpc64-unknown
|
ppc64) basic_machine=powerpc64-unknown
|
||||||
;;
|
;;
|
||||||
ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
|
ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
ppc64le | powerpc64little | ppc64-le | powerpc64-little)
|
ppc64le | powerpc64little)
|
||||||
basic_machine=powerpc64le-unknown
|
basic_machine=powerpc64le-unknown
|
||||||
;;
|
;;
|
||||||
ppc64le-* | powerpc64little-*)
|
ppc64le-* | powerpc64little-*)
|
||||||
basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
ps2)
|
ps2)
|
||||||
basic_machine=i386-ibm
|
basic_machine=i386-ibm
|
||||||
@@ -1066,17 +1124,10 @@ case $basic_machine in
|
|||||||
sequent)
|
sequent)
|
||||||
basic_machine=i386-sequent
|
basic_machine=i386-sequent
|
||||||
;;
|
;;
|
||||||
sh)
|
|
||||||
basic_machine=sh-hitachi
|
|
||||||
os=-hms
|
|
||||||
;;
|
|
||||||
sh5el)
|
sh5el)
|
||||||
basic_machine=sh5le-unknown
|
basic_machine=sh5le-unknown
|
||||||
;;
|
;;
|
||||||
sh64)
|
simso-wrs)
|
||||||
basic_machine=sh64-unknown
|
|
||||||
;;
|
|
||||||
sparclite-wrs | simso-wrs)
|
|
||||||
basic_machine=sparclite-wrs
|
basic_machine=sparclite-wrs
|
||||||
os=-vxworks
|
os=-vxworks
|
||||||
;;
|
;;
|
||||||
@@ -1095,7 +1146,7 @@ case $basic_machine in
|
|||||||
os=-sysv4
|
os=-sysv4
|
||||||
;;
|
;;
|
||||||
strongarm-* | thumb-*)
|
strongarm-* | thumb-*)
|
||||||
basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
|
basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'`
|
||||||
;;
|
;;
|
||||||
sun2)
|
sun2)
|
||||||
basic_machine=m68000-sun
|
basic_machine=m68000-sun
|
||||||
@@ -1217,6 +1268,9 @@ case $basic_machine in
|
|||||||
basic_machine=hppa1.1-winbond
|
basic_machine=hppa1.1-winbond
|
||||||
os=-proelf
|
os=-proelf
|
||||||
;;
|
;;
|
||||||
|
x64)
|
||||||
|
basic_machine=x86_64-pc
|
||||||
|
;;
|
||||||
xbox)
|
xbox)
|
||||||
basic_machine=i686-pc
|
basic_machine=i686-pc
|
||||||
os=-mingw32
|
os=-mingw32
|
||||||
@@ -1225,20 +1279,12 @@ case $basic_machine in
|
|||||||
basic_machine=xps100-honeywell
|
basic_machine=xps100-honeywell
|
||||||
;;
|
;;
|
||||||
xscale-* | xscalee[bl]-*)
|
xscale-* | xscalee[bl]-*)
|
||||||
basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
|
basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'`
|
||||||
;;
|
;;
|
||||||
ymp)
|
ymp)
|
||||||
basic_machine=ymp-cray
|
basic_machine=ymp-cray
|
||||||
os=-unicos
|
os=-unicos
|
||||||
;;
|
;;
|
||||||
z8k-*-coff)
|
|
||||||
basic_machine=z8k-unknown
|
|
||||||
os=-sim
|
|
||||||
;;
|
|
||||||
z80-*-coff)
|
|
||||||
basic_machine=z80-unknown
|
|
||||||
os=-sim
|
|
||||||
;;
|
|
||||||
none)
|
none)
|
||||||
basic_machine=none-none
|
basic_machine=none-none
|
||||||
os=-none
|
os=-none
|
||||||
@@ -1267,10 +1313,6 @@ case $basic_machine in
|
|||||||
vax)
|
vax)
|
||||||
basic_machine=vax-dec
|
basic_machine=vax-dec
|
||||||
;;
|
;;
|
||||||
pdp10)
|
|
||||||
# there are many clones, so DEC is not a safe bet
|
|
||||||
basic_machine=pdp10-unknown
|
|
||||||
;;
|
|
||||||
pdp11)
|
pdp11)
|
||||||
basic_machine=pdp11-dec
|
basic_machine=pdp11-dec
|
||||||
;;
|
;;
|
||||||
@@ -1280,9 +1322,6 @@ case $basic_machine in
|
|||||||
sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
|
sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
|
||||||
basic_machine=sh-unknown
|
basic_machine=sh-unknown
|
||||||
;;
|
;;
|
||||||
sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
|
|
||||||
basic_machine=sparc-sun
|
|
||||||
;;
|
|
||||||
cydra)
|
cydra)
|
||||||
basic_machine=cydra-cydrome
|
basic_machine=cydra-cydrome
|
||||||
;;
|
;;
|
||||||
@@ -1302,7 +1341,7 @@ case $basic_machine in
|
|||||||
# Make sure to match an already-canonicalized machine name.
|
# Make sure to match an already-canonicalized machine name.
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
|
echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@@ -1310,10 +1349,10 @@ esac
|
|||||||
# Here we canonicalize certain aliases for manufacturers.
|
# Here we canonicalize certain aliases for manufacturers.
|
||||||
case $basic_machine in
|
case $basic_machine in
|
||||||
*-digital*)
|
*-digital*)
|
||||||
basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
|
basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'`
|
||||||
;;
|
;;
|
||||||
*-commodore*)
|
*-commodore*)
|
||||||
basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
|
basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'`
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
@@ -1321,11 +1360,11 @@ esac
|
|||||||
|
|
||||||
# Decode manufacturer-specific aliases for certain operating systems.
|
# Decode manufacturer-specific aliases for certain operating systems.
|
||||||
|
|
||||||
if [ x"$os" != x"" ]
|
if [ x$os != x ]
|
||||||
then
|
then
|
||||||
case $os in
|
case $os in
|
||||||
# First match some system type aliases
|
# First match some system type aliases that might get confused
|
||||||
# that might get confused with valid system types.
|
# with valid system types.
|
||||||
# -solaris* is a basic system type, with this one exception.
|
# -solaris* is a basic system type, with this one exception.
|
||||||
-auroraux)
|
-auroraux)
|
||||||
os=-auroraux
|
os=-auroraux
|
||||||
@@ -1336,45 +1375,48 @@ case $os in
|
|||||||
-solaris)
|
-solaris)
|
||||||
os=-solaris2
|
os=-solaris2
|
||||||
;;
|
;;
|
||||||
-svr4*)
|
|
||||||
os=-sysv4
|
|
||||||
;;
|
|
||||||
-unixware*)
|
-unixware*)
|
||||||
os=-sysv4.2uw
|
os=-sysv4.2uw
|
||||||
;;
|
;;
|
||||||
-gnu/linux*)
|
-gnu/linux*)
|
||||||
os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
|
os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
|
||||||
;;
|
;;
|
||||||
# First accept the basic system types.
|
# es1800 is here to avoid being matched by es* (a different OS)
|
||||||
|
-es1800*)
|
||||||
|
os=-ose
|
||||||
|
;;
|
||||||
|
# Now accept the basic system types.
|
||||||
# The portable systems comes first.
|
# The portable systems comes first.
|
||||||
# Each alternative MUST END IN A *, to match a version number.
|
# Each alternative MUST end in a * to match a version number.
|
||||||
# -sysv* is not here because it comes later, after sysvr4.
|
# -sysv* is not here because it comes later, after sysvr4.
|
||||||
-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
|
-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
|
||||||
| -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
|
| -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
|
||||||
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
|
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
|
||||||
| -sym* | -kopensolaris* | -plan9* \
|
| -sym* | -kopensolaris* | -plan9* \
|
||||||
| -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
|
| -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
|
||||||
| -aos* | -aros* \
|
| -aos* | -aros* | -cloudabi* | -sortix* \
|
||||||
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
|
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
|
||||||
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
|
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
|
||||||
| -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
|
| -hiux* | -knetbsd* | -mirbsd* | -netbsd* \
|
||||||
| -bitrig* | -openbsd* | -solidbsd* \
|
| -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \
|
||||||
| -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
|
| -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
|
||||||
| -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
|
| -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
|
||||||
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
|
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
|
||||||
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
|
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* | -hcos* \
|
||||||
| -chorusos* | -chorusrdb* | -cegcc* \
|
| -chorusos* | -chorusrdb* | -cegcc* | -glidix* \
|
||||||
| -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
| -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
||||||
| -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
|
| -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
|
||||||
| -linux-newlib* | -linux-musl* | -linux-uclibc* \
|
| -linux-newlib* | -linux-musl* | -linux-uclibc* \
|
||||||
| -uxpv* | -beos* | -mpeix* | -udk* \
|
| -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
|
||||||
| -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
|
| -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \
|
||||||
| -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
|
| -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
|
||||||
| -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
|
| -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
|
||||||
| -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
|
| -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
|
||||||
| -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
|
| -morphos* | -superux* | -rtmk* | -windiss* \
|
||||||
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
||||||
| -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
|
| -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
|
||||||
|
| -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \
|
||||||
|
| -midnightbsd*)
|
||||||
# Remember, each alternative MUST END IN *, to match a version number.
|
# Remember, each alternative MUST END IN *, to match a version number.
|
||||||
;;
|
;;
|
||||||
-qnx*)
|
-qnx*)
|
||||||
@@ -1391,12 +1433,12 @@ case $os in
|
|||||||
-nto*)
|
-nto*)
|
||||||
os=`echo $os | sed -e 's|nto|nto-qnx|'`
|
os=`echo $os | sed -e 's|nto|nto-qnx|'`
|
||||||
;;
|
;;
|
||||||
-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
|
-sim | -xray | -os68k* | -v88r* \
|
||||||
| -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
|
| -windows* | -osx | -abug | -netware* | -os9* \
|
||||||
| -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
|
| -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
|
||||||
;;
|
;;
|
||||||
-mac*)
|
-mac*)
|
||||||
os=`echo $os | sed -e 's|mac|macos|'`
|
os=`echo "$os" | sed -e 's|mac|macos|'`
|
||||||
;;
|
;;
|
||||||
-linux-dietlibc)
|
-linux-dietlibc)
|
||||||
os=-linux-dietlibc
|
os=-linux-dietlibc
|
||||||
@@ -1405,10 +1447,10 @@ case $os in
|
|||||||
os=`echo $os | sed -e 's|linux|linux-gnu|'`
|
os=`echo $os | sed -e 's|linux|linux-gnu|'`
|
||||||
;;
|
;;
|
||||||
-sunos5*)
|
-sunos5*)
|
||||||
os=`echo $os | sed -e 's|sunos5|solaris2|'`
|
os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
|
||||||
;;
|
;;
|
||||||
-sunos6*)
|
-sunos6*)
|
||||||
os=`echo $os | sed -e 's|sunos6|solaris3|'`
|
os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
|
||||||
;;
|
;;
|
||||||
-opened*)
|
-opened*)
|
||||||
os=-openedition
|
os=-openedition
|
||||||
@@ -1419,12 +1461,6 @@ case $os in
|
|||||||
-wince*)
|
-wince*)
|
||||||
os=-wince
|
os=-wince
|
||||||
;;
|
;;
|
||||||
-osfrose*)
|
|
||||||
os=-osfrose
|
|
||||||
;;
|
|
||||||
-osf*)
|
|
||||||
os=-osf
|
|
||||||
;;
|
|
||||||
-utek*)
|
-utek*)
|
||||||
os=-bsd
|
os=-bsd
|
||||||
;;
|
;;
|
||||||
@@ -1449,7 +1485,7 @@ case $os in
|
|||||||
-nova*)
|
-nova*)
|
||||||
os=-rtmk-nova
|
os=-rtmk-nova
|
||||||
;;
|
;;
|
||||||
-ns2 )
|
-ns2)
|
||||||
os=-nextstep2
|
os=-nextstep2
|
||||||
;;
|
;;
|
||||||
-nsk*)
|
-nsk*)
|
||||||
@@ -1471,7 +1507,7 @@ case $os in
|
|||||||
-oss*)
|
-oss*)
|
||||||
os=-sysv3
|
os=-sysv3
|
||||||
;;
|
;;
|
||||||
-svr4)
|
-svr4*)
|
||||||
os=-sysv4
|
os=-sysv4
|
||||||
;;
|
;;
|
||||||
-svr3)
|
-svr3)
|
||||||
@@ -1486,32 +1522,44 @@ case $os in
|
|||||||
-ose*)
|
-ose*)
|
||||||
os=-ose
|
os=-ose
|
||||||
;;
|
;;
|
||||||
-es1800*)
|
|
||||||
os=-ose
|
|
||||||
;;
|
|
||||||
-xenix)
|
|
||||||
os=-xenix
|
|
||||||
;;
|
|
||||||
-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
|
-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
|
||||||
os=-mint
|
os=-mint
|
||||||
;;
|
;;
|
||||||
-aros*)
|
|
||||||
os=-aros
|
|
||||||
;;
|
|
||||||
-zvmoe)
|
-zvmoe)
|
||||||
os=-zvmoe
|
os=-zvmoe
|
||||||
;;
|
;;
|
||||||
-dicos*)
|
-dicos*)
|
||||||
os=-dicos
|
os=-dicos
|
||||||
;;
|
;;
|
||||||
|
-pikeos*)
|
||||||
|
# Until real need of OS specific support for
|
||||||
|
# particular features comes up, bare metal
|
||||||
|
# configurations are quite functional.
|
||||||
|
case $basic_machine in
|
||||||
|
arm*)
|
||||||
|
os=-eabi
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
os=-elf
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
-nacl*)
|
-nacl*)
|
||||||
;;
|
;;
|
||||||
|
-ios)
|
||||||
|
;;
|
||||||
-none)
|
-none)
|
||||||
;;
|
;;
|
||||||
|
-*-eabi)
|
||||||
|
case $basic_machine in
|
||||||
|
arm*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
# Get rid of the `-' at the beginning of $os.
|
# Get rid of the `-' at the beginning of $os.
|
||||||
os=`echo $os | sed 's/[^-]*-//'`
|
os=`echo $os | sed 's/[^-]*-//'`
|
||||||
echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
|
echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@@ -1546,6 +1594,9 @@ case $basic_machine in
|
|||||||
c4x-* | tic4x-*)
|
c4x-* | tic4x-*)
|
||||||
os=-coff
|
os=-coff
|
||||||
;;
|
;;
|
||||||
|
c8051-*)
|
||||||
|
os=-elf
|
||||||
|
;;
|
||||||
hexagon-*)
|
hexagon-*)
|
||||||
os=-elf
|
os=-elf
|
||||||
;;
|
;;
|
||||||
@@ -1589,9 +1640,6 @@ case $basic_machine in
|
|||||||
mips*-*)
|
mips*-*)
|
||||||
os=-elf
|
os=-elf
|
||||||
;;
|
;;
|
||||||
or1k-*)
|
|
||||||
os=-elf
|
|
||||||
;;
|
|
||||||
or32-*)
|
or32-*)
|
||||||
os=-coff
|
os=-coff
|
||||||
;;
|
;;
|
||||||
@@ -1601,12 +1649,12 @@ case $basic_machine in
|
|||||||
sparc-* | *-sun)
|
sparc-* | *-sun)
|
||||||
os=-sunos4.1.1
|
os=-sunos4.1.1
|
||||||
;;
|
;;
|
||||||
|
pru-*)
|
||||||
|
os=-elf
|
||||||
|
;;
|
||||||
*-be)
|
*-be)
|
||||||
os=-beos
|
os=-beos
|
||||||
;;
|
;;
|
||||||
*-haiku)
|
|
||||||
os=-haiku
|
|
||||||
;;
|
|
||||||
*-ibm)
|
*-ibm)
|
||||||
os=-aix
|
os=-aix
|
||||||
;;
|
;;
|
||||||
@@ -1646,7 +1694,7 @@ case $basic_machine in
|
|||||||
m88k-omron*)
|
m88k-omron*)
|
||||||
os=-luna
|
os=-luna
|
||||||
;;
|
;;
|
||||||
*-next )
|
*-next)
|
||||||
os=-nextstep
|
os=-nextstep
|
||||||
;;
|
;;
|
||||||
*-sequent)
|
*-sequent)
|
||||||
@@ -1661,9 +1709,6 @@ case $basic_machine in
|
|||||||
i370-*)
|
i370-*)
|
||||||
os=-mvs
|
os=-mvs
|
||||||
;;
|
;;
|
||||||
*-next)
|
|
||||||
os=-nextstep3
|
|
||||||
;;
|
|
||||||
*-gould)
|
*-gould)
|
||||||
os=-sysv
|
os=-sysv
|
||||||
;;
|
;;
|
||||||
@@ -1773,15 +1818,15 @@ case $basic_machine in
|
|||||||
vendor=stratus
|
vendor=stratus
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
|
basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"`
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
echo $basic_machine$os
|
echo "$basic_machine$os"
|
||||||
exit
|
exit
|
||||||
|
|
||||||
# Local variables:
|
# Local variables:
|
||||||
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
# eval: (add-hook 'before-save-hook 'time-stamp)
|
||||||
# time-stamp-start: "timestamp='"
|
# time-stamp-start: "timestamp='"
|
||||||
# time-stamp-format: "%:y-%02m-%02d"
|
# time-stamp-format: "%:y-%02m-%02d"
|
||||||
# time-stamp-end: "'"
|
# time-stamp-end: "'"
|
||||||
|
|||||||
@@ -8,8 +8,8 @@
|
|||||||
|
|
||||||
# Standard macros
|
# Standard macros
|
||||||
AC_PREREQ(2.63)
|
AC_PREREQ(2.63)
|
||||||
AC_COPYRIGHT([CAFE,Jan Chrin, 2010-2021])
|
AC_COPYRIGHT([CAFE, Jan Chrin, PSI, 2010-2023])
|
||||||
AC_INIT([CAFE], [1.18.0], [Bug reports to: jan.chrin@psi.ch])
|
AC_INIT([CAFE], [1.20.1], [Bug reports to: jan.chrin@psi.ch])
|
||||||
|
|
||||||
AC_CONFIG_AUX_DIR(./)
|
AC_CONFIG_AUX_DIR(./)
|
||||||
|
|
||||||
@@ -38,7 +38,8 @@ AC_LANG([C++])
|
|||||||
|
|
||||||
AC_DEFINE_UNQUOTED(HAVE_LINUX, 1, [linux dependency (sleep)])
|
AC_DEFINE_UNQUOTED(HAVE_LINUX, 1, [linux dependency (sleep)])
|
||||||
|
|
||||||
CPPFLAGS=" -fexceptions -fPIC -std=c++1z"
|
#-z nodefs suppress unresolöved symbols
|
||||||
|
CPPFLAGS=" -fexceptions -fPIC -std=c++1z -z nodefs"
|
||||||
|
|
||||||
# provide include directories
|
# provide include directories
|
||||||
AC_SUBST([CAFE_CPPFLAGS], '-I$(top_srcdir)/include ')
|
AC_SUBST([CAFE_CPPFLAGS], '-I$(top_srcdir)/include ')
|
||||||
@@ -93,7 +94,7 @@ if test x$HAVE_EPICS_3 == xtrue ; then
|
|||||||
EPICS_PREFIX=$withval
|
EPICS_PREFIX=$withval
|
||||||
EPICS_INCL_PATH="-I"${EPICS_PREFIX}"/include/ \
|
EPICS_INCL_PATH="-I"${EPICS_PREFIX}"/include/ \
|
||||||
-I"${EPICS_PREFIX}"/include/os/"${HOST_ARCH}
|
-I"${EPICS_PREFIX}"/include/os/"${HOST_ARCH}
|
||||||
EPICS_LIB_PATH=${EPICS_PREFIX}"/lib/"${EPICS_HOST_ARCH}
|
EPICS_LIB_PATH=${EPICS_PREFIX}"/lib/"${RHREL}"-x86_64"
|
||||||
## Add epics release
|
## Add epics release
|
||||||
EPICS_MAJOR_DEFAULT="3"
|
EPICS_MAJOR_DEFAULT="3"
|
||||||
EPICS_MINOR_DEFAULT="14"
|
EPICS_MINOR_DEFAULT="14"
|
||||||
@@ -114,7 +115,7 @@ if test x$HAVE_EPICS_7 == xtrue ; then
|
|||||||
-I"${EPICS_PREFIX}"/include/os/"${HOST_ARCH}
|
-I"${EPICS_PREFIX}"/include/os/"${HOST_ARCH}
|
||||||
EPICS_INCL_PATH=${EPICS_INCL_PATH}" \
|
EPICS_INCL_PATH=${EPICS_INCL_PATH}" \
|
||||||
-I"${EPICS_PREFIX}"/include/compiler/gcc"
|
-I"${EPICS_PREFIX}"/include/compiler/gcc"
|
||||||
EPICS_LIB_PATH=${EPICS_PREFIX}"/lib/"${EPICS_HOST_ARCH}
|
EPICS_LIB_PATH=${EPICS_PREFIX}"/lib/"${RHREL}"-x86_64"
|
||||||
## Add epics release
|
## Add epics release
|
||||||
EPICS_MAJOR_DEFAULT="7"
|
EPICS_MAJOR_DEFAULT="7"
|
||||||
EPICS_MINOR_DEFAULT="4"
|
EPICS_MINOR_DEFAULT="4"
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
BIN
examples/cafeTest/RHEL8-x86_64/cafeTest
Executable file
BIN
examples/cafeTest/RHEL8-x86_64/cafeTest
Executable file
Binary file not shown.
BIN
examples/cafeTest/RHEL8-x86_64/monitorTest
Executable file
BIN
examples/cafeTest/RHEL8-x86_64/monitorTest
Executable file
Binary file not shown.
Binary file not shown.
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
#define PV_X1 "ARIDI-BPM-01LE:X-AVG"
|
#define PV_X1 "ARIDI-BPM-01LE:X-AVG"
|
||||||
#define PV_Y1 "ARIDI-BPM-01LE:Y-AVG"
|
#define PV_Y1 "ARIDI-BPM-01LE:Y-AVG"
|
||||||
#define PV_WF "ARIDI-BPM-01LE:WF-INT-2" //256 elements
|
#define PV_WF "ARIDI-BPM-01LE:WF-INT-1" //256 elements
|
||||||
#define PV_MBBI "ARIDI-BPM-01LE:GET-ENABLE" //mmbi
|
#define PV_MBBI "ARIDI-BPM-01LE:GET-ENABLE" //mmbi
|
||||||
#define PV_X1_DESC "ARIDI-BPM-01LE:X-AVG.DESC" //dbr_string_t
|
#define PV_X1_DESC "ARIDI-BPM-01LE:X-AVG.DESC" //dbr_string_t
|
||||||
#define PV_JOKE "PV:JOKE"
|
#define PV_JOKE "PV:JOKE"
|
||||||
@@ -197,6 +197,35 @@ int main( int argc, char *argv[] )
|
|||||||
cout << "---------------------------------------------------------------------" << endl;
|
cout << "---------------------------------------------------------------------" << endl;
|
||||||
|
|
||||||
|
|
||||||
|
//reset Number of elements to native value for get operation
|
||||||
|
cafe->getHandleHelper().setNelem(hArray[2], cafe->getNelemNative(hArray[2]) );
|
||||||
|
|
||||||
|
|
||||||
|
//Allocate
|
||||||
|
double * dwf2 = new double[cafe->getNelemNative(hArray[2])];
|
||||||
|
|
||||||
|
status=cafe->get(PV_WF, dwf2);
|
||||||
|
|
||||||
|
if (status != ICAFE_NORMAL)
|
||||||
|
{
|
||||||
|
cout << "Status = " << status << "; indicates an error at " << __METHOD__ << "//" << __LINE__ << endl;
|
||||||
|
cafe->getCafeStatus().report(status);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cout << PV_WF << " successfully read out " << endl;
|
||||||
|
cout << "First five elements have values: " << endl;
|
||||||
|
for (int i=0; i<std::min(10,(int) cafe->getNelemRequest(hArray[2])); ++i)
|
||||||
|
{
|
||||||
|
cout << dwf2[i] << " [" << i << "] ";
|
||||||
|
}
|
||||||
|
cout << endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
;
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------
|
//------------------------------------------------------------
|
||||||
//(2) Basic Single Channel Operations
|
//(2) Basic Single Channel Operations
|
||||||
//------------------------------------------------------------
|
//------------------------------------------------------------
|
||||||
@@ -474,8 +503,10 @@ int main( int argc, char *argv[] )
|
|||||||
//------------------------------------------------------------
|
//------------------------------------------------------------
|
||||||
//Data retrieval methods returning a waveform array
|
//Data retrieval methods returning a waveform array
|
||||||
//------------------------------------------------------------
|
//------------------------------------------------------------
|
||||||
|
ChannelRequestPolicy channelRequestPolicyGetWF;
|
||||||
|
channelRequestPolicyGetWF.setPolicy(CAFENUM::FLUSH_AFTER_EACH_MESSAGE,
|
||||||
|
CAFENUM::WAIT, CAFENUM::WITHOUT_CALLBACK); //Wait!!
|
||||||
|
status=cafe->getPolicyHelper().setChannelRequestPolicyGet(hArray[2], channelRequestPolicyGetWF);
|
||||||
//inwf array of 20 doubles previous defined
|
//inwf array of 20 doubles previous defined
|
||||||
//copy to vector to illustrate other possibilities
|
//copy to vector to illustrate other possibilities
|
||||||
|
|
||||||
@@ -546,6 +577,7 @@ int main( int argc, char *argv[] )
|
|||||||
cout << endl;
|
cout << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//reset offset for read and the nelemtonative
|
//reset offset for read and the nelemtonative
|
||||||
cout << "Resetting nelem for wf to native value: " << cafe->getHandleHelper().setNelemToNative(hArray[2])
|
cout << "Resetting nelem for wf to native value: " << cafe->getHandleHelper().setNelemToNative(hArray[2])
|
||||||
<< " and resetting offset to: " << cafe->getHandleHelper().setOffset(hArray[2], 0) << endl;
|
<< " and resetting offset to: " << cafe->getHandleHelper().setOffset(hArray[2], 0) << endl;
|
||||||
@@ -1124,7 +1156,7 @@ int main( int argc, char *argv[] )
|
|||||||
|
|
||||||
MonitorPolicy mp, mp2;
|
MonitorPolicy mp, mp2;
|
||||||
mp.setUserArgs((void *) pvArray[0].c_str());
|
mp.setUserArgs((void *) pvArray[0].c_str());
|
||||||
mp.setHandler(callbackHandlerMoqnitor);
|
mp.setHandler(callbackHandlerMonitor);
|
||||||
mp.setCafeDbrType(CAFENUM::DBR_TIME);
|
mp.setCafeDbrType(CAFENUM::DBR_TIME);
|
||||||
mp.setDataType(DBR_STS_FLOAT); //THis will overwrite DBR_TIME above
|
mp.setDataType(DBR_STS_FLOAT); //THis will overwrite DBR_TIME above
|
||||||
mp.setMask(DBE_VALUE | DBE_LOG | DBE_ALARM);
|
mp.setMask(DBE_VALUE | DBE_LOG | DBE_ALARM);
|
||||||
|
|||||||
@@ -8,13 +8,13 @@
|
|||||||
#-py37- libcafe.so: undefined reference to `cy_event_handler_wrapper
|
#-py37- libcafe.so: undefined reference to `cy_event_handler_wrapper
|
||||||
#CAFE version to link to
|
#CAFE version to link to
|
||||||
#CAFE_VERSION=cafe-1.14.4-sls2-gcc-7.3.0
|
#CAFE_VERSION=cafe-1.14.4-sls2-gcc-7.3.0
|
||||||
#CAFE_VERSION=cafe-1.15.0-py37-gcc-10.3.0
|
CAFE_VERSION=cafe-1.20.1-py37-gcc-8.5.0
|
||||||
CAFE_VERSION=cafe-1.15.0-gcc-10.3.0
|
#CAFE_VERSION=cafe-1.15.0-gcc-10.3.0
|
||||||
|
|
||||||
PYTHON_INCLUDE=/opt/gfa/python-3.7/latest/include/python3.7m
|
PYTHON_INCLUDE=/opt/gfa/python-3.7/latest/include/python3.7m
|
||||||
PYTHON_LIB=/opt/gfa/python-3.7/latest/lib
|
PYTHON_LIB=/opt/gfa/python-3.7/latest/lib
|
||||||
|
|
||||||
EPICS_BASE=${EPICS}/base-7.0.6
|
EPICS_BASE=${EPICS}/base-7.0.7
|
||||||
|
|
||||||
#CAFE project base
|
#CAFE project base
|
||||||
CAFE_BASE=/opt/gfa/cafe
|
CAFE_BASE=/opt/gfa/cafe
|
||||||
@@ -43,10 +43,10 @@ ${EPICS_HOST_ARCH}/monitorTest: monitorTest.cc
|
|||||||
g++ monitorTest.cc -o ${EPICS_HOST_ARCH}/monitorTest \
|
g++ monitorTest.cc -o ${EPICS_HOST_ARCH}/monitorTest \
|
||||||
$(INCLUDE_PATH) $(LIB_DIR) $(LIBS)
|
$(INCLUDE_PATH) $(LIB_DIR) $(LIBS)
|
||||||
|
|
||||||
cafeTest: cafeTest.cc callbacks.h
|
${EPICS_HOST_ARCH}/cafeTest: cafeTest.cc callbacks.h
|
||||||
g++ cafeTest.cc -o cafeTest \
|
g++ cafeTest.cc -o ${EPICS_HOST_ARCH}/cafeTest \
|
||||||
$(INCLUDE_PATH) $(LIB_DIR) $(LIBS)
|
$(INCLUDE_PATH) $(LIB_DIR) $(LIBS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f cafeTest.o cafeTest
|
rm -f ${EPICS_HOST_ARCH}/cafeTest.o ${EPICS_HOST_ARCH}/cafeTest ${EPICS_HOST_ARCH}/monitorTest.o ${EPICS_HOST_ARCH}/monitorTest
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +1,26 @@
|
|||||||
INCLUDES = -Ic:\CAFE\CAFE\cpp\include -Ic:\CAFE\CAFE\cpp -Ic:\local\boost_1_62_0 \
|
INCLUDES = -Ic:\EPICS\CAFE\cpp\include -Ic:\EPICS\CAFE\cpp -Ic:\EPICS\boost_1_81_0 \
|
||||||
-Ic:\local\boost_1_62_0\boost -Ic:\epics\base-3.14.12.5\include -Ic:\epics\base-3.14.12.5\include\os\WIN32 \
|
-Ic:\EPICS\boost_1_81_0\boost -IC:\epics\epics-base\include -IC:\epics\epics-base\include\os\WIN32 \
|
||||||
-Ic:\Qt\4.8.4\include
|
-Ic:\EPICS\epics-base\include\compiler\msvc \
|
||||||
|
#-Ic:\Qt\4.8.4\include
|
||||||
CXX=cl
|
CXX=cl
|
||||||
CXXFLAGS = /W4 /EHsc
|
CXXFLAGS = -DUSE_TYPED_RSET -EHsc -nologo -FC -D__STDC__=0 -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -Ox -GL -Oy- -W3 -MD -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -c
|
||||||
OUTPUT_OPTION = /o $@
|
OUTPUT_OPTION = /Fo"$@"
|
||||||
LIB_LOCAL = C:\epics\base-3.14.12.5\lib\windows-x64\Com.lib C:\epics\base-3.14.12.5\lib\windows-x64\ca.lib \
|
LIB_LOCAL = C:\epics\epics-base\lib\win32-x86\Com.lib C:\epics\epics-base\lib\win32-x86\ca.lib \
|
||||||
C:\CAFE\CAFE\cpp\cafe.lib \
|
C:\EPICS\CAFE\cpp\cafe.lib \
|
||||||
C:\local\boost_1_62_0\lib64-msvc-10.0\libboost_thread-vc100-mt-s-1_62.lib \
|
C:\EPICS\boost_1_81_0\stage\lib\\libboost_thread-vc142-mt-x32-1_81.lib \
|
||||||
C:\local\boost_1_62_0\lib64-msvc-10.0\libboost_system-vc100-mt-s-1_62.lib \
|
C:\EPICS\boost_1_81_0\stage\lib\\libboost_system-vc142-mt-x32-1_81.lib \
|
||||||
C:\local\boost_1_62_0\lib64-msvc-10.0\libboost_date_time-vc100-mt-s-1_62.lib \
|
C:\EPICS\boost_1_81_0\stage\lib\\libboost_date_time-vc142-mt-x32-1_81.lib \
|
||||||
C:\local\boost_1_62_0\lib64-msvc-10.0\libboost_chrono-vc100-mt-s-1_62.lib \
|
C:\EPICS\boost_1_81_0\stage\lib\\libboost_chrono-vc142-mt-x32-1_81.lib \
|
||||||
C:\Qt\4.8.4\lib\QtCore4.lib C:\Qt\4.8.4\lib\QtXml4.lib
|
# C:\Qt\4.8.4\lib\QtCore4.lib C:\Qt\4.8.4\lib\QtXml4.lib
|
||||||
|
|
||||||
cafeTest: cafeTest.obj
|
cafeTest: cafeTest.obj
|
||||||
$(CXX) cafeTest.obj $(LIB_LOCAL)
|
link -nologo -LTCG -incremental:no -opt:ref -release cafeTest.obj $(LIB_LOCAL)
|
||||||
|
|
||||||
cafeTest.obj: cafeTest.cpp
|
cafeTest.obj: cafeTest.cc
|
||||||
$(CXX) $(CXXFLAGS) $(INCLUDES) /c cafeTest.cpp
|
$(CXX) $(CXXFLAGS) $(INCLUDES) cafeTest.cc
|
||||||
|
|
||||||
|
clean:
|
||||||
|
del *.obj
|
||||||
|
|
||||||
#"C:\Program Files (x86)\GnuWin32\bin\make"
|
#"C:\Program Files (x86)\GnuWin32\bin\make"
|
||||||
|
|
||||||
|
|||||||
23
examples/cafeTest/makefile_local_windows7
Normal file
23
examples/cafeTest/makefile_local_windows7
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
INCLUDES = -Ic:\CAFE\CAFE\cpp\include -Ic:\CAFE\CAFE\cpp -Ic:\local\boost_1_62_0 \
|
||||||
|
-Ic:\local\boost_1_62_0\boost -Ic:\epics\base-3.14.12.5\include -Ic:\epics\base-3.14.12.5\include\os\WIN32 \
|
||||||
|
-Ic:\Qt\4.8.4\include
|
||||||
|
CXX=cl
|
||||||
|
CXXFLAGS = /W4 /EHsc
|
||||||
|
OUTPUT_OPTION = /o $@
|
||||||
|
LIB_LOCAL = C:\epics\base-3.14.12.5\lib\windows-x64\Com.lib C:\epics\base-3.14.12.5\lib\windows-x64\ca.lib \
|
||||||
|
C:\CAFE\CAFE\cpp\cafe.lib \
|
||||||
|
C:\local\boost_1_62_0\lib64-msvc-10.0\libboost_thread-vc100-mt-s-1_62.lib \
|
||||||
|
C:\local\boost_1_62_0\lib64-msvc-10.0\libboost_system-vc100-mt-s-1_62.lib \
|
||||||
|
C:\local\boost_1_62_0\lib64-msvc-10.0\libboost_date_time-vc100-mt-s-1_62.lib \
|
||||||
|
C:\local\boost_1_62_0\lib64-msvc-10.0\libboost_chrono-vc100-mt-s-1_62.lib \
|
||||||
|
C:\Qt\4.8.4\lib\QtCore4.lib C:\Qt\4.8.4\lib\QtXml4.lib
|
||||||
|
|
||||||
|
cafeTest: cafeTest.obj
|
||||||
|
$(CXX) cafeTest.obj $(LIB_LOCAL)
|
||||||
|
|
||||||
|
cafeTest.obj: cafeTest.cpp
|
||||||
|
$(CXX) $(CXXFLAGS) $(INCLUDES) /c cafeTest.cpp
|
||||||
|
|
||||||
|
#"C:\Program Files (x86)\GnuWin32\bin\make"
|
||||||
|
|
||||||
|
|
||||||
@@ -263,6 +263,7 @@ struct change_eventHandlerArgs
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
switch(dbrTypeClass)
|
switch(dbrTypeClass)
|
||||||
{
|
{
|
||||||
case CAFENUM::DBR_PRIMITIVE:
|
case CAFENUM::DBR_PRIMITIVE:
|
||||||
@@ -340,6 +341,7 @@ struct change_eventHandlerArgs
|
|||||||
|
|
||||||
for (long i=0; i<new_eventHandlerArgs.count; ++i)
|
for (long i=0; i<new_eventHandlerArgs.count; ++i)
|
||||||
{
|
{
|
||||||
|
|
||||||
(*(&((c.dataBuffer)->fltval)+i))
|
(*(&((c.dataBuffer)->fltval)+i))
|
||||||
= (dbr_float_t) (*(&( ( (union db_access_val *) new_eventHandlerArgs.dbr)->fltval)+i));
|
= (dbr_float_t) (*(&( ( (union db_access_val *) new_eventHandlerArgs.dbr)->fltval)+i));
|
||||||
}
|
}
|
||||||
@@ -504,6 +506,7 @@ struct change_eventHandlerArgs
|
|||||||
|
|
||||||
for (long i=0; i<new_eventHandlerArgs.count; ++i)
|
for (long i=0; i<new_eventHandlerArgs.count; ++i)
|
||||||
{
|
{
|
||||||
|
|
||||||
(*(&((c.dataBuffer)->tdblval.value)+i))
|
(*(&((c.dataBuffer)->tdblval.value)+i))
|
||||||
= (*(&( ((union db_access_val *) new_eventHandlerArgs.dbr)->tdblval.value)+i));
|
= (*(&( ((union db_access_val *) new_eventHandlerArgs.dbr)->tdblval.value)+i));
|
||||||
}
|
}
|
||||||
@@ -524,10 +527,13 @@ struct change_eventHandlerArgs
|
|||||||
for (long i=0; i<new_eventHandlerArgs.count; ++i)
|
for (long i=0; i<new_eventHandlerArgs.count; ++i)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
(*(&((c.dataBuffer)->tfltval.value)+i))
|
(*(&((c.dataBuffer)->tfltval.value)+i))
|
||||||
= (dbr_float_t) (*(&( ( (union db_access_val *) new_eventHandlerArgs.dbr)->tfltval.value)+i));
|
= (dbr_float_t) (*(&( ( (union db_access_val *) new_eventHandlerArgs.dbr)->tfltval.value)+i));
|
||||||
|
|
||||||
|
//if (i< 10) {
|
||||||
|
// std::cout << i << " // " << __METHOD__ << " " << (*(&((c.dataBuffer)->tfltval.value)+i)) << std::endl;
|
||||||
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
(*(&((c.dataBuffer)->tfltval.status))) = ((struct dbr_time_float *) new_eventHandlerArgs.dbr)->status;
|
(*(&((c.dataBuffer)->tfltval.status))) = ((struct dbr_time_float *) new_eventHandlerArgs.dbr)->status;
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
/* ./include/config.in. Generated from configure.ac by autoheader. */
|
/* ./include/config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* epics major release */
|
/* epics major release */
|
||||||
#define EPICS_MAJOR 3
|
#define EPICS_MAJOR 7
|
||||||
|
|
||||||
/* epics minor release */
|
/* epics minor release */
|
||||||
#define EPICS_MINOR 14
|
#define EPICS_MINOR 0
|
||||||
|
|
||||||
/* epics patch release */
|
/* epics patch release */
|
||||||
#define EPICS_PATCH 12
|
#define EPICS_PATCH 8
|
||||||
|
|
||||||
/* Availability of boost */
|
/* Availability of boost */
|
||||||
#define HAVE_BOOST 1
|
#define HAVE_BOOST 1
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
#define HAVE_DLFCN_H 1
|
#define HAVE_DLFCN_H 1
|
||||||
|
|
||||||
/* epics version */
|
/* epics version */
|
||||||
#define HAVE_EPICS 3.14.12
|
#define HAVE_EPICS 7.0.8
|
||||||
|
|
||||||
/* Define to 1 if you have the <epicsTypes.h> header file. */
|
/* Define to 1 if you have the <epicsTypes.h> header file. */
|
||||||
#define HAVE_EPICSTYPES_H 1
|
#define HAVE_EPICSTYPES_H 1
|
||||||
@@ -72,16 +72,16 @@
|
|||||||
/* #undef HAVE_LIBPYTHON3_8 */
|
/* #undef HAVE_LIBPYTHON3_8 */
|
||||||
|
|
||||||
/* Define to 1 if you have the `Qt5Core' library (-lQt5Core). */
|
/* Define to 1 if you have the `Qt5Core' library (-lQt5Core). */
|
||||||
#define HAVE_LIBQT5CORE 1
|
/* #undef HAVE_LIBQT5CORE */
|
||||||
|
|
||||||
/* Define to 1 if you have the `Qt5Xml' library (-lQt5Xml). */
|
/* Define to 1 if you have the `Qt5Xml' library (-lQt5Xml). */
|
||||||
#define HAVE_LIBQT5XML 1
|
/* #undef HAVE_LIBQT5XML */
|
||||||
|
|
||||||
/* Define to 1 if you have the `QtCore' library (-lQtCore). */
|
/* Define to 1 if you have the `QtCore' library (-lQtCore). */
|
||||||
/* #undef HAVE_LIBQTCORE */
|
/* #undef HAVE_LIBQTCORE */
|
||||||
|
|
||||||
/* Availability of Qt version 5 confirmed */
|
/* Availability of Qt version 5 confirmed */
|
||||||
#define HAVE_LIBQTXML 1
|
/* #undef HAVE_LIBQTXML */
|
||||||
|
|
||||||
/* Define to 1 if you have the `zmq' library (-lzmq). */
|
/* Define to 1 if you have the `zmq' library (-lzmq). */
|
||||||
/* #undef HAVE_LIBZMQ */
|
/* #undef HAVE_LIBZMQ */
|
||||||
@@ -111,10 +111,10 @@
|
|||||||
/* #undef HAVE_PYTHON_H */
|
/* #undef HAVE_PYTHON_H */
|
||||||
|
|
||||||
/* Availability of Qt version 5 confirmed */
|
/* Availability of Qt version 5 confirmed */
|
||||||
#define HAVE_QT 1
|
/* #undef HAVE_QT */
|
||||||
|
|
||||||
/* Define to 1 if you have the <qxml.h> header file. */
|
/* Define to 1 if you have the <qxml.h> header file. */
|
||||||
#define HAVE_QXML_H 1
|
/* #undef HAVE_QXML_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
#define HAVE_STDINT_H 1
|
#define HAVE_STDINT_H 1
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
#define PACKAGE_NAME "CAFE"
|
#define PACKAGE_NAME "CAFE"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING "CAFE 1.18.0"
|
#define PACKAGE_STRING "CAFE 1.20.1"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME "cafe"
|
#define PACKAGE_TARNAME "cafe"
|
||||||
@@ -165,13 +165,13 @@
|
|||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION "1.18.0"
|
#define PACKAGE_VERSION "1.20.1"
|
||||||
|
|
||||||
/* Availability of Qt version 5 confirmed */
|
/* Availability of Qt version 5 confirmed */
|
||||||
#define QT_NO_VERSION_TAGGING 1
|
/* #undef QT_NO_VERSION_TAGGING */
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
#define STDC_HEADERS 1
|
#define STDC_HEADERS 1
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "1.18.0"
|
#define VERSION "1.20.1"
|
||||||
|
|||||||
@@ -33,6 +33,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <epicsVersion.h>
|
#include <epicsVersion.h>
|
||||||
|
//include <epicsMutex.h>
|
||||||
|
|
||||||
|
|
||||||
class Connect
|
class Connect
|
||||||
{
|
{
|
||||||
@@ -44,16 +46,12 @@ protected:
|
|||||||
CAFEGlobalAlarmSeverity epicsAlarmSeverity;
|
CAFEGlobalAlarmSeverity epicsAlarmSeverity;
|
||||||
CAFEGlobalAlarmCondition epicsAlarmStatus;
|
CAFEGlobalAlarmCondition epicsAlarmStatus;
|
||||||
|
|
||||||
|
|
||||||
cafeConduit_set::iterator itcs;
|
cafeConduit_set::iterator itcs;
|
||||||
cafeGroup_set::iterator itgs;
|
cafeGroup_set::iterator itgs;
|
||||||
|
|
||||||
CAFEDataTypeCode cafeDataTypeCode;
|
CAFEDataTypeCode cafeDataTypeCode;
|
||||||
|
|
||||||
ExceptionsHelper exceptionsHelper;
|
ExceptionsHelper exceptionsHelper;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
PolicyHelper policyHelper;
|
PolicyHelper policyHelper;
|
||||||
HandleHelper handleHelper;
|
HandleHelper handleHelper;
|
||||||
Helper helper;
|
Helper helper;
|
||||||
@@ -65,7 +63,7 @@ protected:
|
|||||||
//connectCallbacks.cc
|
//connectCallbacks.cc
|
||||||
static void callbackHandlerAccessRights(struct access_rights_handler_args args);
|
static void callbackHandlerAccessRights(struct access_rights_handler_args args);
|
||||||
|
|
||||||
static void callbackHandlerException (struct exception_handler_args args);
|
static void callbackHandlerException (struct exception_handler_args args);
|
||||||
|
|
||||||
//connect.cpp
|
//connect.cpp
|
||||||
//int createHandle(const char * pv, ca_client_context * ccc, ChannelRequestPolicy channelRequestPolicyPut, unsigned int &handle)
|
//int createHandle(const char * pv, ca_client_context * ccc, ChannelRequestPolicy channelRequestPolicyPut, unsigned int &handle)
|
||||||
@@ -696,10 +694,15 @@ public:
|
|||||||
{
|
{
|
||||||
cafeConduit_set_by_handle & handle_index=cs.get<by_handle>();
|
cafeConduit_set_by_handle & handle_index=cs.get<by_handle>();
|
||||||
cafeConduit_set_by_handle::iterator it_handle;
|
cafeConduit_set_by_handle::iterator it_handle;
|
||||||
|
|
||||||
it_handle = handle_index.find(handle);
|
it_handle = handle_index.find(handle);
|
||||||
|
|
||||||
if (it_handle != handle_index.end())
|
if (it_handle != handle_index.end())
|
||||||
{
|
{
|
||||||
return (*it_handle).isConnected();
|
//cafeMutex.lock();
|
||||||
|
bool isConnected = (*it_handle).isConnected();
|
||||||
|
//cafeMutex.unlock();
|
||||||
|
return isConnected;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,13 +9,14 @@
|
|||||||
|
|
||||||
#ifndef GLOBAL_H
|
#ifndef GLOBAL_H
|
||||||
#define GLOBAL_H
|
#define GLOBAL_H
|
||||||
#include <epicsMutex.h>
|
//include <epicsTime.h>
|
||||||
#include <cadef.h>
|
//include <epicsMutex.h>
|
||||||
|
//#include <cadef.h>
|
||||||
#include <hashConduit.h>
|
#include <hashConduit.h>
|
||||||
#include <hashConduitGroup.h>
|
#include <hashConduitGroup.h>
|
||||||
#include <PVGroup.h>
|
#include <PVGroup.h>
|
||||||
#include <deviceCollection.h>
|
#include <deviceCollection.h>
|
||||||
#include <enumStrings.h>
|
//#include <enumStrings.h>
|
||||||
|
|
||||||
extern bool CHECK_CONSISTENCY_CA_STATE;
|
extern bool CHECK_CONSISTENCY_CA_STATE;
|
||||||
extern bool MUTEX;
|
extern bool MUTEX;
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
//include <policyHelper.h>
|
//include <policyHelper.h>
|
||||||
|
|
||||||
//extern cafeConduit_set cs;
|
//extern cafeConduit_set cs;
|
||||||
|
#include <epicsMutex.h>
|
||||||
|
|
||||||
template <class CTYPE> class Instant
|
template <class CTYPE> class Instant
|
||||||
{
|
{
|
||||||
@@ -27,7 +28,7 @@ private:
|
|||||||
Transpose<dbr_long_t> renderLong; // 5
|
Transpose<dbr_long_t> renderLong; // 5
|
||||||
Transpose<dbr_double_t> renderDouble; // 6
|
Transpose<dbr_double_t> renderDouble; // 6
|
||||||
|
|
||||||
CAFEStatus cafeStatus;
|
CAFEStatus cafeStatus;
|
||||||
Granules cafeGranules;
|
Granules cafeGranules;
|
||||||
|
|
||||||
PolicyHelper policyHelper;
|
PolicyHelper policyHelper;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# makefile.in generated by automake 1.13.4 from makefile.am.
|
# makefile.in generated by automake 1.16.1 from makefile.am.
|
||||||
# include/makefile. Generated from makefile.in by configure.
|
# include/makefile. Generated from makefile.in by configure.
|
||||||
|
|
||||||
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
# This Makefile.in is free software; the Free Software Foundation
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
@@ -15,7 +15,17 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
am__is_gnu_make = { \
|
||||||
|
if test -z '$(MAKELEVEL)'; then \
|
||||||
|
false; \
|
||||||
|
elif test -n '$(MAKE_HOST)'; then \
|
||||||
|
true; \
|
||||||
|
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||||
|
true; \
|
||||||
|
else \
|
||||||
|
false; \
|
||||||
|
fi; \
|
||||||
|
}
|
||||||
am__make_running_with_option = \
|
am__make_running_with_option = \
|
||||||
case $${target_option-} in \
|
case $${target_option-} in \
|
||||||
?) ;; \
|
?) ;; \
|
||||||
@@ -76,8 +86,8 @@ POST_INSTALL = :
|
|||||||
NORMAL_UNINSTALL = :
|
NORMAL_UNINSTALL = :
|
||||||
PRE_UNINSTALL = :
|
PRE_UNINSTALL = :
|
||||||
POST_UNINSTALL = :
|
POST_UNINSTALL = :
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
build_triplet = x86_64-pc-linux-gnu
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
host_triplet = x86_64-pc-linux-gnu
|
||||||
#am__append_1 = zbsread.h zbsHash.h zbsdtHelper.h zbsDataHolders.h \
|
#am__append_1 = zbsread.h zbsHash.h zbsdtHelper.h zbsDataHolders.h \
|
||||||
# bitshuffle/bitshuffle_core.h bitshuffle/bitshuffle.h bitshuffle/iochain.h \
|
# bitshuffle/bitshuffle_core.h bitshuffle/bitshuffle.h bitshuffle/iochain.h \
|
||||||
# bitshuffle/bitshuffle_internals.h
|
# bitshuffle/bitshuffle_internals.h
|
||||||
@@ -89,8 +99,6 @@ host_triplet = x86_64-unknown-linux-gnu
|
|||||||
#am__append_2 = PyCafe.h
|
#am__append_2 = PyCafe.h
|
||||||
am__append_3 = PyCafe_api.h
|
am__append_3 = PyCafe_api.h
|
||||||
subdir = include
|
subdir = include
|
||||||
DIST_COMMON = $(srcdir)/makefile.in $(srcdir)/makefile.am \
|
|
||||||
$(am__include_HEADERS_DIST)
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||||
@@ -98,6 +106,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
|||||||
$(top_srcdir)/configure.ac
|
$(top_srcdir)/configure.ac
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||||
$(ACLOCAL_M4)
|
$(ACLOCAL_M4)
|
||||||
|
DIST_COMMON = $(srcdir)/makefile.am $(am__include_HEADERS_DIST) \
|
||||||
|
$(am__DIST_COMMON)
|
||||||
mkinstalldirs = $(install_sh) -d
|
mkinstalldirs = $(install_sh) -d
|
||||||
CONFIG_HEADER = $(top_builddir)/./include/config.h
|
CONFIG_HEADER = $(top_builddir)/./include/config.h
|
||||||
CONFIG_CLEAN_FILES =
|
CONFIG_CLEAN_FILES =
|
||||||
@@ -185,25 +195,26 @@ am__define_uniq_tagged_files = \
|
|||||||
done | $(am__uniquify_input)`
|
done | $(am__uniquify_input)`
|
||||||
ETAGS = etags
|
ETAGS = etags
|
||||||
CTAGS = ctags
|
CTAGS = ctags
|
||||||
|
am__DIST_COMMON = $(srcdir)/makefile.in
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.13
|
ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16
|
||||||
AMTAR = $${TAR-tar}
|
AMTAR = $${TAR-tar}
|
||||||
AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml
|
AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include
|
||||||
AM_DEFAULT_VERBOSITY = 1
|
AM_DEFAULT_VERBOSITY = 1
|
||||||
AM_LDFLAGS = -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib
|
AM_LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64
|
||||||
AR = ar
|
AR = ar
|
||||||
AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf
|
AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf
|
||||||
AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader
|
AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader
|
||||||
AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.13
|
AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16
|
||||||
AWK = gawk
|
AWK = gawk
|
||||||
CAFE_CPPFLAGS = -I$(top_srcdir)/include
|
CAFE_CPPFLAGS = -I$(top_srcdir)/include
|
||||||
CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc
|
CC = /opt/psi/Programming/gcc/10.4.0/bin/gcc
|
||||||
CCDEPMODE = depmode=gcc3
|
CCDEPMODE = depmode=gcc3
|
||||||
CFLAGS = -g -O2
|
CFLAGS = -g -O2
|
||||||
CPP = /opt/psi/Programming/gcc/7.3.0/bin/gcc -E
|
CPP = /opt/psi/Programming/gcc/10.4.0/bin/gcc -E
|
||||||
CPPFLAGS = -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml
|
CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include
|
||||||
CXX = /opt/psi/Programming/gcc/7.3.0/bin/g++
|
CXX = /opt/psi/Programming/gcc/10.4.0/bin/g++
|
||||||
CXXCPP = /opt/psi/Programming/gcc/7.3.0/bin/g++ -E
|
CXXCPP = /opt/psi/Programming/gcc/10.4.0/bin/g++ -E
|
||||||
CXXDEPMODE = depmode=gcc3
|
CXXDEPMODE = depmode=gcc3
|
||||||
CXXFLAGS = -g -O2
|
CXXFLAGS = -g -O2
|
||||||
CYGPATH_W = echo
|
CYGPATH_W = echo
|
||||||
@@ -225,9 +236,9 @@ INSTALL_PROGRAM = ${INSTALL}
|
|||||||
INSTALL_SCRIPT = ${INSTALL}
|
INSTALL_SCRIPT = ${INSTALL}
|
||||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||||
LD = /usr/bin/ld -m elf_x86_64
|
LD = /usr/bin/ld -m elf_x86_64
|
||||||
LDFLAGS = -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib
|
LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64
|
||||||
LIBOBJS =
|
LIBOBJS =
|
||||||
LIBS = -lQt5Xml -lQt5Core
|
LIBS =
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||||
LIPO =
|
LIPO =
|
||||||
LN_S = ln -s
|
LN_S = ln -s
|
||||||
@@ -245,23 +256,23 @@ OTOOL64 =
|
|||||||
PACKAGE = cafe
|
PACKAGE = cafe
|
||||||
PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch
|
PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch
|
||||||
PACKAGE_NAME = CAFE
|
PACKAGE_NAME = CAFE
|
||||||
PACKAGE_STRING = CAFE 1.18.0
|
PACKAGE_STRING = CAFE 1.20.1
|
||||||
PACKAGE_TARNAME = cafe
|
PACKAGE_TARNAME = cafe
|
||||||
PACKAGE_URL =
|
PACKAGE_URL =
|
||||||
PACKAGE_VERSION = 1.18.0
|
PACKAGE_VERSION = 1.20.1
|
||||||
PATH_SEPARATOR = :
|
PATH_SEPARATOR = :
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
SED = /usr/bin/sed
|
SED = /usr/bin/sed
|
||||||
SET_MAKE =
|
SET_MAKE =
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
STRIP = strip
|
STRIP = strip
|
||||||
VERSION = 1.18.0
|
VERSION = 1.20.1
|
||||||
abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/include
|
abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/include
|
||||||
abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/include
|
abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/include
|
||||||
abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
||||||
abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
||||||
ac_ct_AR = ar
|
ac_ct_AR = ar
|
||||||
ac_ct_CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc
|
ac_ct_CC = /opt/psi/Programming/gcc/10.4.0/bin/gcc
|
||||||
ac_ct_CXX =
|
ac_ct_CXX =
|
||||||
ac_ct_DUMPBIN =
|
ac_ct_DUMPBIN =
|
||||||
am__include = include
|
am__include = include
|
||||||
@@ -270,27 +281,27 @@ am__quote =
|
|||||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||||
am__untar = $${TAR-tar} xf -
|
am__untar = $${TAR-tar} xf -
|
||||||
bindir = ${exec_prefix}/bin
|
bindir = ${exec_prefix}/bin
|
||||||
build = x86_64-unknown-linux-gnu
|
build = x86_64-pc-linux-gnu
|
||||||
build_alias =
|
build_alias =
|
||||||
build_cpu = x86_64
|
build_cpu = x86_64
|
||||||
build_os = linux-gnu
|
build_os = linux-gnu
|
||||||
build_vendor = unknown
|
build_vendor = pc
|
||||||
builddir = .
|
builddir = .
|
||||||
datadir = ${datarootdir}
|
datadir = ${datarootdir}
|
||||||
datarootdir = ${prefix}/share
|
datarootdir = ${prefix}/share
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||||
dvidir = ${docdir}
|
dvidir = ${docdir}
|
||||||
exec_prefix = ${prefix}
|
exec_prefix = ${prefix}
|
||||||
host = x86_64-unknown-linux-gnu
|
host = x86_64-pc-linux-gnu
|
||||||
host_alias =
|
host_alias =
|
||||||
host_cpu = x86_64
|
host_cpu = x86_64
|
||||||
host_os = linux-gnu
|
host_os = linux-gnu
|
||||||
host_vendor = unknown
|
host_vendor = pc
|
||||||
htmldir = ${docdir}
|
htmldir = ${docdir}
|
||||||
includedir = ${prefix}/include
|
includedir = ${prefix}/include
|
||||||
infodir = ${datarootdir}/info
|
infodir = ${datarootdir}/info
|
||||||
install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh
|
install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh
|
||||||
libdir = /opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0/lib/RHEL7-x86_64
|
libdir = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64
|
||||||
libexecdir = ${exec_prefix}/libexec
|
libexecdir = ${exec_prefix}/libexec
|
||||||
localedir = ${datarootdir}/locale
|
localedir = ${datarootdir}/locale
|
||||||
localstatedir = ${prefix}/var
|
localstatedir = ${prefix}/var
|
||||||
@@ -298,7 +309,7 @@ mandir = ${datarootdir}/man
|
|||||||
mkdir_p = $(MKDIR_P)
|
mkdir_p = $(MKDIR_P)
|
||||||
oldincludedir = /usr/include
|
oldincludedir = /usr/include
|
||||||
pdfdir = ${docdir}
|
pdfdir = ${docdir}
|
||||||
prefix = /opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0
|
prefix = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0
|
||||||
program_transform_name = s,x,x,
|
program_transform_name = s,x,x,
|
||||||
psdir = ${docdir}
|
psdir = ${docdir}
|
||||||
sbindir = ${exec_prefix}/sbin
|
sbindir = ${exec_prefix}/sbin
|
||||||
@@ -337,14 +348,13 @@ $(srcdir)/makefile.in: $(srcdir)/makefile.am $(am__configure_deps)
|
|||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/makefile'; \
|
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/makefile'; \
|
||||||
$(am__cd) $(top_srcdir) && \
|
$(am__cd) $(top_srcdir) && \
|
||||||
$(AUTOMAKE) --gnu include/makefile
|
$(AUTOMAKE) --gnu include/makefile
|
||||||
.PRECIOUS: makefile
|
|
||||||
makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
|
makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
|
||||||
@case '$?' in \
|
@case '$?' in \
|
||||||
*config.status*) \
|
*config.status*) \
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||||
*) \
|
*) \
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||||
esac;
|
esac;
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||||
@@ -435,7 +445,10 @@ cscopelist-am: $(am__tagged_files)
|
|||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(BUILT_SOURCES)
|
||||||
|
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||||
|
|
||||||
|
distdir-am: $(DISTFILES)
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||||
list='$(DISTFILES)'; \
|
list='$(DISTFILES)'; \
|
||||||
@@ -584,6 +597,8 @@ uninstall-am: uninstall-includeHEADERS
|
|||||||
ps ps-am tags tags-am uninstall uninstall-am \
|
ps ps-am tags tags-am uninstall uninstall-am \
|
||||||
uninstall-includeHEADERS
|
uninstall-includeHEADERS
|
||||||
|
|
||||||
|
.PRECIOUS: makefile
|
||||||
|
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ public:
|
|||||||
}
|
}
|
||||||
unsigned short setPriority(unsigned short p)
|
unsigned short setPriority(unsigned short p)
|
||||||
{
|
{
|
||||||
priority=std::min(p,(unsigned short) CA_SERVER_DISPATCH_PRIORITY_MAX);
|
priority=(std::min)(p,(unsigned short) CA_SERVER_DISPATCH_PRIORITY_MAX);
|
||||||
return priority;
|
return priority;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -462,17 +462,17 @@ public:
|
|||||||
};
|
};
|
||||||
double setTimeout(double t)
|
double setTimeout(double t)
|
||||||
{
|
{
|
||||||
timeout=std::max(t,TIMEOUT_PEND_IO_MIN);
|
timeout=(std::max)(t,TIMEOUT_PEND_IO_MIN);
|
||||||
return timeout=std::min(timeout,TIMEOUT_PEND_IO_MAX);
|
return timeout=(std::min)(timeout,TIMEOUT_PEND_IO_MAX);
|
||||||
};
|
};
|
||||||
double setDeltaTimeout(double dt)
|
double setDeltaTimeout(double dt)
|
||||||
{
|
{
|
||||||
deltaTimeout=std::max(dt,PEND_IO_INCREMENT_TIME_MIN);
|
deltaTimeout=(std::max)(dt,PEND_IO_INCREMENT_TIME_MIN);
|
||||||
return deltaTimeout=std::min(deltaTimeout,PEND_IO_INCREMENT_TIME_MAX);
|
return deltaTimeout=(std::min)(deltaTimeout,PEND_IO_INCREMENT_TIME_MAX);
|
||||||
};
|
};
|
||||||
unsigned short setNtries(unsigned short nt)
|
unsigned short setNtries(unsigned short nt)
|
||||||
{
|
{
|
||||||
return ntries=std::min(nt, PEND_IO_MAX_TRIES);
|
return ntries=(std::min)(nt, PEND_IO_MAX_TRIES);
|
||||||
};
|
};
|
||||||
|
|
||||||
double setDefaultTimeout(double t)
|
double setDefaultTimeout(double t)
|
||||||
|
|||||||
@@ -113,7 +113,7 @@ public:
|
|||||||
double g;
|
double g;
|
||||||
int st;
|
int st;
|
||||||
st=getTimeout(_handle, p, g);
|
st=getTimeout(_handle, p, g);
|
||||||
pg=std::min(p,g);
|
pg=(std::min)(p,g);
|
||||||
return st;
|
return st;
|
||||||
}
|
}
|
||||||
int getTimeoutPut(unsigned int _handle, double &p)
|
int getTimeoutPut(unsigned int _handle, double &p)
|
||||||
@@ -192,7 +192,7 @@ public:
|
|||||||
double g;
|
double g;
|
||||||
int st;
|
int st;
|
||||||
st=getSGTimeout(_handle, p, g);
|
st=getSGTimeout(_handle, p, g);
|
||||||
pg=std::min(p,g);
|
pg=(std::min)(p,g);
|
||||||
return st;
|
return st;
|
||||||
}
|
}
|
||||||
int getSGTimeoutPut(unsigned int _handle, double &p)
|
int getSGTimeoutPut(unsigned int _handle, double &p)
|
||||||
|
|||||||
57
libtool
57
libtool
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Generated automatically by config.status (cafe) 1.18.0
|
# Generated automatically by config.status (cafe) 1.20.1
|
||||||
# Libtool was configured on host sf-lc7.psi.ch:
|
# Libtool was configured on host sls-lc8.psi.ch:
|
||||||
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
|
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
|
||||||
|
|
||||||
# Provide generalized library-building support services.
|
# Provide generalized library-building support services.
|
||||||
@@ -67,12 +67,12 @@ PATH_SEPARATOR=":"
|
|||||||
|
|
||||||
# The host system.
|
# The host system.
|
||||||
host_alias=
|
host_alias=
|
||||||
host=x86_64-unknown-linux-gnu
|
host=x86_64-pc-linux-gnu
|
||||||
host_os=linux-gnu
|
host_os=linux-gnu
|
||||||
|
|
||||||
# The build system.
|
# The build system.
|
||||||
build_alias=
|
build_alias=
|
||||||
build=x86_64-unknown-linux-gnu
|
build=x86_64-pc-linux-gnu
|
||||||
build_os=linux-gnu
|
build_os=linux-gnu
|
||||||
|
|
||||||
# A sed program that does not truncate output.
|
# A sed program that does not truncate output.
|
||||||
@@ -162,7 +162,7 @@ old_postuninstall_cmds=""
|
|||||||
lock_old_archive_extraction=no
|
lock_old_archive_extraction=no
|
||||||
|
|
||||||
# A C compiler.
|
# A C compiler.
|
||||||
LTCC="/opt/psi/Programming/gcc/7.3.0/bin/gcc"
|
LTCC="/opt/psi/Programming/gcc/10.4.0/bin/gcc"
|
||||||
|
|
||||||
# LTCC compiler flags.
|
# LTCC compiler flags.
|
||||||
LTCFLAGS="-g -O2"
|
LTCFLAGS="-g -O2"
|
||||||
@@ -282,10 +282,10 @@ finish_eval=""
|
|||||||
hardcode_into_libs=yes
|
hardcode_into_libs=yes
|
||||||
|
|
||||||
# Compile-time system search path for libraries.
|
# Compile-time system search path for libraries.
|
||||||
sys_lib_search_path_spec="/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc /opt/psi/Programming/gcc/7.3.0/lib64 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib64 /lib64 /usr/lib64 /opt/psi/Programming/gcc/7.3.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib /lib /usr/lib "
|
sys_lib_search_path_spec="/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib/gcc/x86_64-pc-linux-gnu/10.4.0 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib/gcc /opt/psi/Programming/gcc/10.4.0/lib64 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib64 /lib64 /usr/lib64 /opt/psi/Programming/gcc/10.4.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/lib /lib /usr/lib "
|
||||||
|
|
||||||
# Detected run-time system search path for libraries.
|
# Detected run-time system search path for libraries.
|
||||||
sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/lib64/atlas /usr/lib64//bind9-export/ /usr/lib64/dyninst /usr/lib64/llvm /usr/lib64/mysql /usr/lib/oracle/12.2/client64/lib /usr/lib64/tcl8.5/tclx8.4 /usr/lib64/tcl8.5 /usr/lib64/wine/ "
|
sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib /usr/lib64/atlas /usr/lib/oracle/19.18/client64/lib /usr/lib64/tclx8.6 /usr/lib64/wine/ "
|
||||||
|
|
||||||
# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.
|
# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.
|
||||||
configure_time_lt_sys_library_path=""
|
configure_time_lt_sys_library_path=""
|
||||||
@@ -315,7 +315,7 @@ reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs"
|
|||||||
old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib"
|
old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib"
|
||||||
|
|
||||||
# A language specific compiler.
|
# A language specific compiler.
|
||||||
CC="/opt/psi/Programming/gcc/7.3.0/bin/gcc"
|
CC="/opt/psi/Programming/gcc/10.4.0/bin/gcc"
|
||||||
|
|
||||||
# Is the compiler the GNU compiler?
|
# Is the compiler the GNU compiler?
|
||||||
with_gcc=yes
|
with_gcc=yes
|
||||||
@@ -7732,11 +7732,6 @@ func_mode_link ()
|
|||||||
arg=$func_stripname_result
|
arg=$func_stripname_result
|
||||||
;;
|
;;
|
||||||
|
|
||||||
-Wl,--as-needed)
|
|
||||||
deplibs="$deplibs $arg"
|
|
||||||
continue
|
|
||||||
;;
|
|
||||||
|
|
||||||
-Wl,*)
|
-Wl,*)
|
||||||
func_stripname '-Wl,' '' "$arg"
|
func_stripname '-Wl,' '' "$arg"
|
||||||
args=$func_stripname_result
|
args=$func_stripname_result
|
||||||
@@ -7789,10 +7784,12 @@ func_mode_link ()
|
|||||||
# -tp=* Portland pgcc target processor selection
|
# -tp=* Portland pgcc target processor selection
|
||||||
# --sysroot=* for sysroot support
|
# --sysroot=* for sysroot support
|
||||||
# -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
|
# -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
|
||||||
|
# -specs=* GCC specs files
|
||||||
# -stdlib=* select c++ std lib with clang
|
# -stdlib=* select c++ std lib with clang
|
||||||
-64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
|
-64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
|
||||||
-t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
|
-t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
|
||||||
-O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*)
|
-O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
|
||||||
|
-specs=*)
|
||||||
func_quote_for_eval "$arg"
|
func_quote_for_eval "$arg"
|
||||||
arg=$func_quote_for_eval_result
|
arg=$func_quote_for_eval_result
|
||||||
func_append compile_command " $arg"
|
func_append compile_command " $arg"
|
||||||
@@ -8041,7 +8038,6 @@ func_mode_link ()
|
|||||||
|
|
||||||
case $linkmode in
|
case $linkmode in
|
||||||
lib)
|
lib)
|
||||||
as_needed_flag=
|
|
||||||
passes="conv dlpreopen link"
|
passes="conv dlpreopen link"
|
||||||
for file in $dlfiles $dlprefiles; do
|
for file in $dlfiles $dlprefiles; do
|
||||||
case $file in
|
case $file in
|
||||||
@@ -8053,7 +8049,6 @@ func_mode_link ()
|
|||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
prog)
|
prog)
|
||||||
as_needed_flag=
|
|
||||||
compile_deplibs=
|
compile_deplibs=
|
||||||
finalize_deplibs=
|
finalize_deplibs=
|
||||||
alldeplibs=false
|
alldeplibs=false
|
||||||
@@ -8123,15 +8118,6 @@ func_mode_link ()
|
|||||||
lib=
|
lib=
|
||||||
found=false
|
found=false
|
||||||
case $deplib in
|
case $deplib in
|
||||||
-Wl,--as-needed)
|
|
||||||
if test prog,link = "$linkmode,$pass" ||
|
|
||||||
test lib,link = "$linkmode,$pass"; then
|
|
||||||
as_needed_flag="$deplib "
|
|
||||||
else
|
|
||||||
deplibs="$deplib $deplibs"
|
|
||||||
fi
|
|
||||||
continue
|
|
||||||
;;
|
|
||||||
-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
|
-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
|
||||||
|-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
|
|-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
|
||||||
if test prog,link = "$linkmode,$pass"; then
|
if test prog,link = "$linkmode,$pass"; then
|
||||||
@@ -10549,13 +10535,6 @@ EOF
|
|||||||
test "X$libobjs" = "X " && libobjs=
|
test "X$libobjs" = "X " && libobjs=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# A bit hacky. I had wanted to add \$as_needed_flag to archive_cmds instead, but that
|
|
||||||
# comes from libtool.m4 which is part of the project being built. This should put it
|
|
||||||
# in the right place though.
|
|
||||||
if test lib,link = "$linkmode,$pass" && test -n "$as_needed_flag"; then
|
|
||||||
libobjs=$as_needed_flag$libobjs
|
|
||||||
fi
|
|
||||||
|
|
||||||
save_ifs=$IFS; IFS='~'
|
save_ifs=$IFS; IFS='~'
|
||||||
for cmd in $cmds; do
|
for cmd in $cmds; do
|
||||||
IFS=$sp$nl
|
IFS=$sp$nl
|
||||||
@@ -10788,8 +10767,8 @@ EOF
|
|||||||
compile_deplibs=$new_libs
|
compile_deplibs=$new_libs
|
||||||
|
|
||||||
|
|
||||||
func_append compile_command " $as_needed_flag $compile_deplibs"
|
func_append compile_command " $compile_deplibs"
|
||||||
func_append finalize_command " $as_needed_flag $finalize_deplibs"
|
func_append finalize_command " $finalize_deplibs"
|
||||||
|
|
||||||
if test -n "$rpath$xrpath"; then
|
if test -n "$rpath$xrpath"; then
|
||||||
# If the user specified any rpath flags, then add them.
|
# If the user specified any rpath flags, then add them.
|
||||||
@@ -11694,7 +11673,7 @@ reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs"
|
|||||||
old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib"
|
old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib"
|
||||||
|
|
||||||
# A language specific compiler.
|
# A language specific compiler.
|
||||||
CC="/opt/psi/Programming/gcc/7.3.0/bin/g++"
|
CC="/opt/psi/Programming/gcc/10.4.0/bin/g++"
|
||||||
|
|
||||||
# Is the compiler the GNU compiler?
|
# Is the compiler the GNU compiler?
|
||||||
with_gcc=yes
|
with_gcc=yes
|
||||||
@@ -11815,17 +11794,17 @@ file_list_spec=""
|
|||||||
hardcode_action=immediate
|
hardcode_action=immediate
|
||||||
|
|
||||||
# The directories searched by this compiler when creating a shared library.
|
# The directories searched by this compiler when creating a shared library.
|
||||||
compiler_lib_search_dirs="/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc /opt/psi/Programming/gcc/7.3.0/lib64/../lib64 /opt/psi/Programming/gcc/7.3.0/lib/../lib64 /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Programming/gcc/7.3.0/lib64 /opt/psi/Programming/gcc/7.3.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../.."
|
compiler_lib_search_dirs="/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc /opt/psi/Programming/gcc/10.4.0/lib64/../lib64 /opt/psi/Programming/gcc/10.4.0/lib/../lib64 /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../../../lib64 /lib/../lib64 /usr/lib/../lib64 /opt/psi/Programming/gcc/10.4.0/lib64 /opt/psi/Programming/gcc/10.4.0/lib /opt/psi/Tools/HDFView/3.1.2/lib /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../.."
|
||||||
|
|
||||||
# Dependencies to place before and after the objects being linked to
|
# Dependencies to place before and after the objects being linked to
|
||||||
# create a shared library.
|
# create a shared library.
|
||||||
predep_objects="/lib/../lib64/crti.o /afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtbeginS.o"
|
predep_objects="/lib/../lib64/crti.o /afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/crtbeginS.o"
|
||||||
postdep_objects="/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtendS.o /lib/../lib64/crtn.o"
|
postdep_objects="/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/crtendS.o /lib/../lib64/crtn.o"
|
||||||
predeps=""
|
predeps=""
|
||||||
postdeps="-lstdc++ -lm -lgcc_s -lc -lgcc_s"
|
postdeps="-lstdc++ -lm -lgcc_s -lc -lgcc_s"
|
||||||
|
|
||||||
# The library search path used internally by the compiler when linking
|
# The library search path used internally by the compiler when linking
|
||||||
# a shared library.
|
# a shared library.
|
||||||
compiler_lib_search_path="-L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0 -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc -L/opt/psi/Programming/gcc/7.3.0/lib64/../lib64 -L/opt/psi/Programming/gcc/7.3.0/lib/../lib64 -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Programming/gcc/7.3.0/lib64 -L/opt/psi/Programming/gcc/7.3.0/lib -L/opt/psi/Tools/HDFView/3.1.2/lib -L/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/bin/../lib/gcc/x86_64-pc-linux-gnu/7.3.0/../../.."
|
compiler_lib_search_path="-L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0 -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc -L/opt/psi/Programming/gcc/10.4.0/lib64/../lib64 -L/opt/psi/Programming/gcc/10.4.0/lib/../lib64 -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/psi/Programming/gcc/10.4.0/lib64 -L/opt/psi/Programming/gcc/10.4.0/lib -L/opt/psi/Tools/HDFView/3.1.2/lib -L/afs/psi.ch/sys/psi.ra/Programming/gcc/10.4.0/bin/../lib/gcc/x86_64-pc-linux-gnu/10.4.0/../../.."
|
||||||
|
|
||||||
# ### END LIBTOOL TAG CONFIG: CXX
|
# ### END LIBTOOL TAG CONFIG: CXX
|
||||||
|
|||||||
5
m4/libtool.m4
vendored
5
m4/libtool.m4
vendored
@@ -2867,6 +2867,9 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
|||||||
# before this can be enabled.
|
# before this can be enabled.
|
||||||
hardcode_into_libs=yes
|
hardcode_into_libs=yes
|
||||||
|
|
||||||
|
# Add ABI-specific directories to the system library path.
|
||||||
|
sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib"
|
||||||
|
|
||||||
# Ideally, we could use ldconfig to report *all* directores which are
|
# Ideally, we could use ldconfig to report *all* directores which are
|
||||||
# searched for libraries, however this is still not possible. Aside from not
|
# searched for libraries, however this is still not possible. Aside from not
|
||||||
# being certain /sbin/ldconfig is available, command
|
# being certain /sbin/ldconfig is available, command
|
||||||
@@ -2875,7 +2878,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
|
|||||||
# appending ld.so.conf contents (and includes) to the search path.
|
# appending ld.so.conf contents (and includes) to the search path.
|
||||||
if test -f /etc/ld.so.conf; then
|
if test -f /etc/ld.so.conf; then
|
||||||
lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
|
lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
|
||||||
sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
|
sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# We used to test for /lib/ld.so.1 and disable shared libraries on
|
# We used to test for /lib/ld.so.1 and disable shared libraries on
|
||||||
|
|||||||
122
makefile
122
makefile
@@ -1,7 +1,7 @@
|
|||||||
# makefile.in generated by automake 1.13.4 from makefile.am.
|
# makefile.in generated by automake 1.16.1 from makefile.am.
|
||||||
# makefile. Generated from makefile.in by configure.
|
# makefile. Generated from makefile.in by configure.
|
||||||
|
|
||||||
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
# This Makefile.in is free software; the Free Software Foundation
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
@@ -15,7 +15,17 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
am__is_gnu_make = { \
|
||||||
|
if test -z '$(MAKELEVEL)'; then \
|
||||||
|
false; \
|
||||||
|
elif test -n '$(MAKE_HOST)'; then \
|
||||||
|
true; \
|
||||||
|
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||||
|
true; \
|
||||||
|
else \
|
||||||
|
false; \
|
||||||
|
fi; \
|
||||||
|
}
|
||||||
am__make_running_with_option = \
|
am__make_running_with_option = \
|
||||||
case $${target_option-} in \
|
case $${target_option-} in \
|
||||||
?) ;; \
|
?) ;; \
|
||||||
@@ -76,19 +86,9 @@ POST_INSTALL = :
|
|||||||
NORMAL_UNINSTALL = :
|
NORMAL_UNINSTALL = :
|
||||||
PRE_UNINSTALL = :
|
PRE_UNINSTALL = :
|
||||||
POST_UNINSTALL = :
|
POST_UNINSTALL = :
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
build_triplet = x86_64-pc-linux-gnu
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
host_triplet = x86_64-pc-linux-gnu
|
||||||
subdir = .
|
subdir = .
|
||||||
DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
|
|
||||||
$(srcdir)/makefile.in $(srcdir)/makefile.am \
|
|
||||||
$(top_srcdir)/configure $(am__configure_deps) \
|
|
||||||
$(top_srcdir)/./include/config.in $(include_HEADERS) \
|
|
||||||
.//AUTHORS COPYING .//COPYING .//ChangeLog .//INSTALL .//NEWS \
|
|
||||||
.//README config.guess .//config.guess config.sub \
|
|
||||||
.//config.sub install-sh .//install-sh missing .//missing \
|
|
||||||
ltmain.sh .//ltmain.sh $(top_srcdir)/./config.guess \
|
|
||||||
$(top_srcdir)/./config.sub $(top_srcdir)/./install-sh \
|
|
||||||
$(top_srcdir)/./ltmain.sh $(top_srcdir)/./missing
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||||
@@ -96,6 +96,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
|||||||
$(top_srcdir)/configure.ac
|
$(top_srcdir)/configure.ac
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||||
$(ACLOCAL_M4)
|
$(ACLOCAL_M4)
|
||||||
|
DIST_COMMON = $(srcdir)/makefile.am $(top_srcdir)/configure \
|
||||||
|
$(am__configure_deps) $(include_HEADERS) $(am__DIST_COMMON)
|
||||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||||
configure.lineno config.status.lineno
|
configure.lineno config.status.lineno
|
||||||
mkinstalldirs = $(install_sh) -d
|
mkinstalldirs = $(install_sh) -d
|
||||||
@@ -165,7 +167,7 @@ am__recursive_targets = \
|
|||||||
$(RECURSIVE_CLEAN_TARGETS) \
|
$(RECURSIVE_CLEAN_TARGETS) \
|
||||||
$(am__extra_recursive_targets)
|
$(am__extra_recursive_targets)
|
||||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||||
cscope distdir dist dist-all distcheck
|
cscope distdir distdir-am dist dist-all distcheck
|
||||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||||
# Read a list of newline-separated strings from the standard input,
|
# Read a list of newline-separated strings from the standard input,
|
||||||
# and print each of them once, without duplicates. Input order is
|
# and print each of them once, without duplicates. Input order is
|
||||||
@@ -187,6 +189,15 @@ ETAGS = etags
|
|||||||
CTAGS = ctags
|
CTAGS = ctags
|
||||||
CSCOPE = cscope
|
CSCOPE = cscope
|
||||||
DIST_SUBDIRS = $(SUBDIRS)
|
DIST_SUBDIRS = $(SUBDIRS)
|
||||||
|
am__DIST_COMMON = $(srcdir)/makefile.in $(top_srcdir)/./compile \
|
||||||
|
$(top_srcdir)/./config.guess $(top_srcdir)/./config.sub \
|
||||||
|
$(top_srcdir)/./include/config.in $(top_srcdir)/./install-sh \
|
||||||
|
$(top_srcdir)/./ltmain.sh $(top_srcdir)/./missing .//AUTHORS \
|
||||||
|
.//COPYING .//ChangeLog .//INSTALL .//NEWS .//README \
|
||||||
|
.//compile .//config.guess .//config.sub .//install-sh \
|
||||||
|
.//ltmain.sh .//missing AUTHORS COPYING ChangeLog INSTALL NEWS \
|
||||||
|
README compile config.guess config.sub install-sh ltmain.sh \
|
||||||
|
missing
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
distdir = $(PACKAGE)-$(VERSION)
|
distdir = $(PACKAGE)-$(VERSION)
|
||||||
top_distdir = $(distdir)
|
top_distdir = $(distdir)
|
||||||
@@ -229,24 +240,24 @@ distuninstallcheck_listfiles = find . -type f -print
|
|||||||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
||||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
||||||
distcleancheck_listfiles = find . -type f -print
|
distcleancheck_listfiles = find . -type f -print
|
||||||
ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.13
|
ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16
|
||||||
AMTAR = $${TAR-tar}
|
AMTAR = $${TAR-tar}
|
||||||
AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -I$(top_srcdir)/include
|
AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I$(top_srcdir)/include
|
||||||
AM_DEFAULT_VERBOSITY = 1
|
AM_DEFAULT_VERBOSITY = 1
|
||||||
AM_LDFLAGS = -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib @CAFE_LIBS@
|
AM_LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 @CAFE_LIBS@
|
||||||
AR = ar
|
AR = ar
|
||||||
AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf
|
AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf
|
||||||
AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader
|
AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader
|
||||||
AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.13
|
AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16
|
||||||
AWK = gawk
|
AWK = gawk
|
||||||
CAFE_CPPFLAGS = -I$(top_srcdir)/include
|
CAFE_CPPFLAGS = -I$(top_srcdir)/include
|
||||||
CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc
|
CC = /opt/psi/Programming/gcc/10.4.0/bin/gcc
|
||||||
CCDEPMODE = depmode=gcc3
|
CCDEPMODE = depmode=gcc3
|
||||||
CFLAGS = -g -O2
|
CFLAGS = -g -O2
|
||||||
CPP = /opt/psi/Programming/gcc/7.3.0/bin/gcc -E
|
CPP = /opt/psi/Programming/gcc/10.4.0/bin/gcc -E
|
||||||
CPPFLAGS = -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml
|
CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include
|
||||||
CXX = /opt/psi/Programming/gcc/7.3.0/bin/g++
|
CXX = /opt/psi/Programming/gcc/10.4.0/bin/g++
|
||||||
CXXCPP = /opt/psi/Programming/gcc/7.3.0/bin/g++ -E
|
CXXCPP = /opt/psi/Programming/gcc/10.4.0/bin/g++ -E
|
||||||
CXXDEPMODE = depmode=gcc3
|
CXXDEPMODE = depmode=gcc3
|
||||||
CXXFLAGS = -g -O2
|
CXXFLAGS = -g -O2
|
||||||
CYGPATH_W = echo
|
CYGPATH_W = echo
|
||||||
@@ -268,9 +279,9 @@ INSTALL_PROGRAM = ${INSTALL}
|
|||||||
INSTALL_SCRIPT = ${INSTALL}
|
INSTALL_SCRIPT = ${INSTALL}
|
||||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||||
LD = /usr/bin/ld -m elf_x86_64
|
LD = /usr/bin/ld -m elf_x86_64
|
||||||
LDFLAGS = -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib
|
LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64
|
||||||
LIBOBJS =
|
LIBOBJS =
|
||||||
LIBS = -lQt5Xml -lQt5Core
|
LIBS =
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||||
LIPO =
|
LIPO =
|
||||||
LN_S = ln -s
|
LN_S = ln -s
|
||||||
@@ -288,23 +299,23 @@ OTOOL64 =
|
|||||||
PACKAGE = cafe
|
PACKAGE = cafe
|
||||||
PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch
|
PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch
|
||||||
PACKAGE_NAME = CAFE
|
PACKAGE_NAME = CAFE
|
||||||
PACKAGE_STRING = CAFE 1.18.0
|
PACKAGE_STRING = CAFE 1.20.1
|
||||||
PACKAGE_TARNAME = cafe
|
PACKAGE_TARNAME = cafe
|
||||||
PACKAGE_URL =
|
PACKAGE_URL =
|
||||||
PACKAGE_VERSION = 1.18.0
|
PACKAGE_VERSION = 1.20.1
|
||||||
PATH_SEPARATOR = :
|
PATH_SEPARATOR = :
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
SED = /usr/bin/sed
|
SED = /usr/bin/sed
|
||||||
SET_MAKE =
|
SET_MAKE =
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
STRIP = strip
|
STRIP = strip
|
||||||
VERSION = 1.18.0
|
VERSION = 1.20.1
|
||||||
abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
||||||
abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
||||||
abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
||||||
abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
||||||
ac_ct_AR = ar
|
ac_ct_AR = ar
|
||||||
ac_ct_CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc
|
ac_ct_CC = /opt/psi/Programming/gcc/10.4.0/bin/gcc
|
||||||
ac_ct_CXX =
|
ac_ct_CXX =
|
||||||
ac_ct_DUMPBIN =
|
ac_ct_DUMPBIN =
|
||||||
am__include = include
|
am__include = include
|
||||||
@@ -313,27 +324,27 @@ am__quote =
|
|||||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||||
am__untar = $${TAR-tar} xf -
|
am__untar = $${TAR-tar} xf -
|
||||||
bindir = ${exec_prefix}/bin
|
bindir = ${exec_prefix}/bin
|
||||||
build = x86_64-unknown-linux-gnu
|
build = x86_64-pc-linux-gnu
|
||||||
build_alias =
|
build_alias =
|
||||||
build_cpu = x86_64
|
build_cpu = x86_64
|
||||||
build_os = linux-gnu
|
build_os = linux-gnu
|
||||||
build_vendor = unknown
|
build_vendor = pc
|
||||||
builddir = .
|
builddir = .
|
||||||
datadir = ${datarootdir}
|
datadir = ${datarootdir}
|
||||||
datarootdir = ${prefix}/share
|
datarootdir = ${prefix}/share
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||||
dvidir = ${docdir}
|
dvidir = ${docdir}
|
||||||
exec_prefix = ${prefix}
|
exec_prefix = ${prefix}
|
||||||
host = x86_64-unknown-linux-gnu
|
host = x86_64-pc-linux-gnu
|
||||||
host_alias =
|
host_alias =
|
||||||
host_cpu = x86_64
|
host_cpu = x86_64
|
||||||
host_os = linux-gnu
|
host_os = linux-gnu
|
||||||
host_vendor = unknown
|
host_vendor = pc
|
||||||
htmldir = ${docdir}
|
htmldir = ${docdir}
|
||||||
includedir = ${prefix}/include
|
includedir = ${prefix}/include
|
||||||
infodir = ${datarootdir}/info
|
infodir = ${datarootdir}/info
|
||||||
install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh
|
install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh
|
||||||
libdir = /opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0/lib/RHEL7-x86_64
|
libdir = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64
|
||||||
libexecdir = ${exec_prefix}/libexec
|
libexecdir = ${exec_prefix}/libexec
|
||||||
localedir = ${datarootdir}/locale
|
localedir = ${datarootdir}/locale
|
||||||
localstatedir = ${prefix}/var
|
localstatedir = ${prefix}/var
|
||||||
@@ -341,7 +352,7 @@ mandir = ${datarootdir}/man
|
|||||||
mkdir_p = $(MKDIR_P)
|
mkdir_p = $(MKDIR_P)
|
||||||
oldincludedir = /usr/include
|
oldincludedir = /usr/include
|
||||||
pdfdir = ${docdir}
|
pdfdir = ${docdir}
|
||||||
prefix = /opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0
|
prefix = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0
|
||||||
program_transform_name = s,x,x,
|
program_transform_name = s,x,x,
|
||||||
psdir = ${docdir}
|
psdir = ${docdir}
|
||||||
sbindir = ${exec_prefix}/sbin
|
sbindir = ${exec_prefix}/sbin
|
||||||
@@ -373,15 +384,14 @@ $(srcdir)/makefile.in: $(srcdir)/makefile.am $(am__configure_deps)
|
|||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu makefile'; \
|
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu makefile'; \
|
||||||
$(am__cd) $(top_srcdir) && \
|
$(am__cd) $(top_srcdir) && \
|
||||||
$(AUTOMAKE) --gnu makefile
|
$(AUTOMAKE) --gnu makefile
|
||||||
.PRECIOUS: makefile
|
|
||||||
makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
|
makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
|
||||||
@case '$?' in \
|
@case '$?' in \
|
||||||
*config.status*) \
|
*config.status*) \
|
||||||
echo ' $(SHELL) ./config.status'; \
|
echo ' $(SHELL) ./config.status'; \
|
||||||
$(SHELL) ./config.status;; \
|
$(SHELL) ./config.status;; \
|
||||||
*) \
|
*) \
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
|
||||||
esac;
|
esac;
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||||
@@ -394,8 +404,8 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|||||||
$(am__aclocal_m4_deps):
|
$(am__aclocal_m4_deps):
|
||||||
|
|
||||||
./include/config.h: ./include/stamp-h1
|
./include/config.h: ./include/stamp-h1
|
||||||
@if test ! -f $@; then rm -f ./include/stamp-h1; else :; fi
|
@test -f $@ || rm -f ./include/stamp-h1
|
||||||
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) ./include/stamp-h1; else :; fi
|
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) ./include/stamp-h1
|
||||||
|
|
||||||
./include/stamp-h1: $(top_srcdir)/./include/config.in $(top_builddir)/config.status
|
./include/stamp-h1: $(top_srcdir)/./include/config.in $(top_builddir)/config.status
|
||||||
@rm -f ./include/stamp-h1
|
@rm -f ./include/stamp-h1
|
||||||
@@ -544,7 +554,10 @@ distclean-tags:
|
|||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||||
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(BUILT_SOURCES)
|
||||||
|
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||||
|
|
||||||
|
distdir-am: $(DISTFILES)
|
||||||
$(am__remove_distdir)
|
$(am__remove_distdir)
|
||||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||||
@@ -609,7 +622,7 @@ distdir: $(DISTFILES)
|
|||||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||||
|| chmod -R a+r "$(distdir)"
|
|| chmod -R a+r "$(distdir)"
|
||||||
dist-gzip: distdir
|
dist-gzip: distdir
|
||||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
|
||||||
$(am__post_remove_distdir)
|
$(am__post_remove_distdir)
|
||||||
|
|
||||||
dist-bzip2: distdir
|
dist-bzip2: distdir
|
||||||
@@ -625,11 +638,17 @@ dist-xz: distdir
|
|||||||
$(am__post_remove_distdir)
|
$(am__post_remove_distdir)
|
||||||
|
|
||||||
dist-tarZ: distdir
|
dist-tarZ: distdir
|
||||||
|
@echo WARNING: "Support for distribution archives compressed with" \
|
||||||
|
"legacy program 'compress' is deprecated." >&2
|
||||||
|
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
||||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||||
$(am__post_remove_distdir)
|
$(am__post_remove_distdir)
|
||||||
|
|
||||||
dist-shar: distdir
|
dist-shar: distdir
|
||||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
@echo WARNING: "Support for shar distribution archives is" \
|
||||||
|
"deprecated." >&2
|
||||||
|
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
||||||
|
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
|
||||||
$(am__post_remove_distdir)
|
$(am__post_remove_distdir)
|
||||||
|
|
||||||
dist-zip: distdir
|
dist-zip: distdir
|
||||||
@@ -647,7 +666,7 @@ dist dist-all:
|
|||||||
distcheck: dist
|
distcheck: dist
|
||||||
case '$(DIST_ARCHIVES)' in \
|
case '$(DIST_ARCHIVES)' in \
|
||||||
*.tar.gz*) \
|
*.tar.gz*) \
|
||||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
|
||||||
*.tar.bz2*) \
|
*.tar.bz2*) \
|
||||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||||
*.tar.lz*) \
|
*.tar.lz*) \
|
||||||
@@ -657,22 +676,23 @@ distcheck: dist
|
|||||||
*.tar.Z*) \
|
*.tar.Z*) \
|
||||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||||
*.shar.gz*) \
|
*.shar.gz*) \
|
||||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
|
||||||
*.zip*) \
|
*.zip*) \
|
||||||
unzip $(distdir).zip ;;\
|
unzip $(distdir).zip ;;\
|
||||||
esac
|
esac
|
||||||
chmod -R a-w $(distdir)
|
chmod -R a-w $(distdir)
|
||||||
chmod u+w $(distdir)
|
chmod u+w $(distdir)
|
||||||
mkdir $(distdir)/_build $(distdir)/_inst
|
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
|
||||||
chmod a-w $(distdir)
|
chmod a-w $(distdir)
|
||||||
test -d $(distdir)/_build || exit 0; \
|
test -d $(distdir)/_build || exit 0; \
|
||||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||||
&& am__cwd=`pwd` \
|
&& am__cwd=`pwd` \
|
||||||
&& $(am__cd) $(distdir)/_build \
|
&& $(am__cd) $(distdir)/_build/sub \
|
||||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
&& ../../configure \
|
||||||
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
||||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||||
|
--srcdir=../.. --prefix="$$dc_install_base" \
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||||
@@ -852,6 +872,8 @@ uninstall-am: uninstall-includeHEADERS
|
|||||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||||
tags tags-am uninstall uninstall-am uninstall-includeHEADERS
|
tags tags-am uninstall uninstall-am uninstall-includeHEADERS
|
||||||
|
|
||||||
|
.PRECIOUS: makefile
|
||||||
|
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
|||||||
168553
src/PyCafe37.cpp
Normal file
168553
src/PyCafe37.cpp
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,27 +1,38 @@
|
|||||||
bitshuffle/bitshuffle.lo: bitshuffle/bitshuffle.c \
|
bitshuffle/bitshuffle.lo: bitshuffle/bitshuffle.c \
|
||||||
/usr/include/stdc-predef.h bitshuffle/bitshuffle.h /usr/include/stdlib.h \
|
/usr/include/stdc-predef.h bitshuffle/bitshuffle.h /usr/include/stdlib.h \
|
||||||
/usr/include/features.h /usr/include/sys/cdefs.h \
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
/usr/include/gnu/stubs-64.h \
|
/usr/include/gnu/stubs-64.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h \
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h \
|
||||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
/usr/include/bits/byteswap.h /usr/include/bits/types.h \
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
/usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
/usr/include/bits/stdlib-float.h bitshuffle/bitshuffle_core.h \
|
/usr/include/bits/pthreadtypes-arch.h /usr/include/alloca.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdint.h \
|
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
|
||||||
|
bitshuffle/bitshuffle_core.h \
|
||||||
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdint.h \
|
||||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
bitshuffle/bitshuffle_internals.h bitshuffle/iochain.h \
|
/usr/include/bits/stdint-uintn.h bitshuffle/bitshuffle_internals.h \
|
||||||
.././include/lz4.h /usr/include/stdio.h /usr/include/libio.h \
|
bitshuffle/iochain.h .././include/lz4.h /usr/include/stdio.h \
|
||||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdarg.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdarg.h \
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||||
/usr/include/bits/stdio.h /usr/include/string.h /usr/include/xlocale.h \
|
/usr/include/bits/stdio.h /usr/include/string.h \
|
||||||
/usr/include/bits/string.h /usr/include/bits/string2.h
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h
|
||||||
|
|
||||||
/usr/include/stdc-predef.h:
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
@@ -29,62 +40,88 @@ bitshuffle/bitshuffle.h:
|
|||||||
|
|
||||||
/usr/include/stdlib.h:
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/bits/libc-header-start.h:
|
||||||
|
|
||||||
/usr/include/features.h:
|
/usr/include/features.h:
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
/usr/include/sys/cdefs.h:
|
||||||
|
|
||||||
/usr/include/bits/wordsize.h:
|
/usr/include/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/bits/long-double.h:
|
||||||
|
|
||||||
/usr/include/gnu/stubs.h:
|
/usr/include/gnu/stubs.h:
|
||||||
|
|
||||||
/usr/include/gnu/stubs-64.h:
|
/usr/include/gnu/stubs-64.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h:
|
||||||
|
|
||||||
/usr/include/bits/waitflags.h:
|
/usr/include/bits/waitflags.h:
|
||||||
|
|
||||||
/usr/include/bits/waitstatus.h:
|
/usr/include/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdint-intn.h:
|
||||||
|
|
||||||
/usr/include/endian.h:
|
/usr/include/endian.h:
|
||||||
|
|
||||||
/usr/include/bits/endian.h:
|
/usr/include/bits/endian.h:
|
||||||
|
|
||||||
/usr/include/bits/byteswap.h:
|
/usr/include/bits/byteswap.h:
|
||||||
|
|
||||||
/usr/include/bits/types.h:
|
/usr/include/bits/uintn-identity.h:
|
||||||
|
|
||||||
/usr/include/bits/typesizes.h:
|
|
||||||
|
|
||||||
/usr/include/bits/byteswap-16.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
/usr/include/sys/select.h:
|
||||||
|
|
||||||
/usr/include/bits/select.h:
|
/usr/include/bits/select.h:
|
||||||
|
|
||||||
/usr/include/bits/sigset.h:
|
/usr/include/bits/types/sigset_t.h:
|
||||||
|
|
||||||
/usr/include/bits/time.h:
|
/usr/include/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
/usr/include/sys/sysmacros.h:
|
/usr/include/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
/usr/include/bits/pthreadtypes.h:
|
/usr/include/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
/usr/include/bits/stdlib-float.h:
|
/usr/include/bits/stdlib-float.h:
|
||||||
|
|
||||||
bitshuffle/bitshuffle_core.h:
|
bitshuffle/bitshuffle_core.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdint.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdint.h:
|
||||||
|
|
||||||
/usr/include/stdint.h:
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
/usr/include/bits/wchar.h:
|
/usr/include/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdint-uintn.h:
|
||||||
|
|
||||||
bitshuffle/bitshuffle_internals.h:
|
bitshuffle/bitshuffle_internals.h:
|
||||||
|
|
||||||
bitshuffle/iochain.h:
|
bitshuffle/iochain.h:
|
||||||
@@ -93,13 +130,19 @@ bitshuffle/iochain.h:
|
|||||||
|
|
||||||
/usr/include/stdio.h:
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
/usr/include/libio.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdarg.h:
|
||||||
|
|
||||||
/usr/include/_G_config.h:
|
/usr/include/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
/usr/include/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdarg.h:
|
/usr/include/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
/usr/include/bits/stdio_lim.h:
|
/usr/include/bits/stdio_lim.h:
|
||||||
|
|
||||||
@@ -109,8 +152,8 @@ bitshuffle/iochain.h:
|
|||||||
|
|
||||||
/usr/include/string.h:
|
/usr/include/string.h:
|
||||||
|
|
||||||
/usr/include/xlocale.h:
|
/usr/include/bits/types/locale_t.h:
|
||||||
|
|
||||||
/usr/include/bits/string.h:
|
/usr/include/bits/types/__locale_t.h:
|
||||||
|
|
||||||
/usr/include/bits/string2.h:
|
/usr/include/strings.h:
|
||||||
|
|||||||
@@ -1,89 +1,127 @@
|
|||||||
bitshuffle/bitshuffle_core.lo: bitshuffle/bitshuffle_core.c \
|
bitshuffle/bitshuffle_core.lo: bitshuffle/bitshuffle_core.c \
|
||||||
/usr/include/stdc-predef.h bitshuffle/bitshuffle_core.h \
|
/usr/include/stdc-predef.h bitshuffle/bitshuffle_core.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdint.h \
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdint.h \
|
||||||
/usr/include/stdint.h /usr/include/features.h /usr/include/sys/cdefs.h \
|
/usr/include/stdint.h /usr/include/bits/libc-header-start.h \
|
||||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
/usr/include/features.h /usr/include/sys/cdefs.h \
|
||||||
/usr/include/gnu/stubs-64.h /usr/include/bits/wchar.h \
|
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
|
||||||
/usr/include/stdlib.h \
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h \
|
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h /usr/include/stdlib.h \
|
||||||
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h \
|
||||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
/usr/include/bits/byteswap.h /usr/include/bits/types.h \
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
/usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
/usr/include/bits/types/timer_t.h /usr/include/endian.h \
|
||||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
/usr/include/bits/endian.h /usr/include/bits/byteswap.h \
|
||||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||||
/usr/include/bits/stdlib-float.h bitshuffle/bitshuffle_internals.h \
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
bitshuffle/iochain.h /usr/include/stdio.h /usr/include/libio.h \
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
/usr/include/_G_config.h /usr/include/wchar.h \
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdarg.h \
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
|
||||||
|
bitshuffle/bitshuffle_internals.h bitshuffle/iochain.h \
|
||||||
|
/usr/include/stdio.h \
|
||||||
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||||
/usr/include/bits/stdio.h /usr/include/string.h /usr/include/xlocale.h \
|
/usr/include/bits/stdio.h /usr/include/string.h \
|
||||||
/usr/include/bits/string.h /usr/include/bits/string2.h \
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/emmintrin.h \
|
/usr/include/strings.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/xmmintrin.h \
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/emmintrin.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/mmintrin.h \
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/xmmintrin.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/mm_malloc.h
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/mmintrin.h \
|
||||||
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/mm_malloc.h
|
||||||
|
|
||||||
/usr/include/stdc-predef.h:
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
bitshuffle/bitshuffle_core.h:
|
bitshuffle/bitshuffle_core.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdint.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdint.h:
|
||||||
|
|
||||||
/usr/include/stdint.h:
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/bits/libc-header-start.h:
|
||||||
|
|
||||||
/usr/include/features.h:
|
/usr/include/features.h:
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
/usr/include/sys/cdefs.h:
|
||||||
|
|
||||||
/usr/include/bits/wordsize.h:
|
/usr/include/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/bits/long-double.h:
|
||||||
|
|
||||||
/usr/include/gnu/stubs.h:
|
/usr/include/gnu/stubs.h:
|
||||||
|
|
||||||
/usr/include/gnu/stubs-64.h:
|
/usr/include/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/typesizes.h:
|
||||||
|
|
||||||
/usr/include/bits/wchar.h:
|
/usr/include/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdint-uintn.h:
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h:
|
||||||
|
|
||||||
/usr/include/bits/waitflags.h:
|
/usr/include/bits/waitflags.h:
|
||||||
|
|
||||||
/usr/include/bits/waitstatus.h:
|
/usr/include/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/timer_t.h:
|
||||||
|
|
||||||
/usr/include/endian.h:
|
/usr/include/endian.h:
|
||||||
|
|
||||||
/usr/include/bits/endian.h:
|
/usr/include/bits/endian.h:
|
||||||
|
|
||||||
/usr/include/bits/byteswap.h:
|
/usr/include/bits/byteswap.h:
|
||||||
|
|
||||||
/usr/include/bits/types.h:
|
/usr/include/bits/uintn-identity.h:
|
||||||
|
|
||||||
/usr/include/bits/typesizes.h:
|
|
||||||
|
|
||||||
/usr/include/bits/byteswap-16.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
/usr/include/sys/select.h:
|
||||||
|
|
||||||
/usr/include/bits/select.h:
|
/usr/include/bits/select.h:
|
||||||
|
|
||||||
/usr/include/bits/sigset.h:
|
/usr/include/bits/types/sigset_t.h:
|
||||||
|
|
||||||
/usr/include/bits/time.h:
|
/usr/include/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
/usr/include/sys/sysmacros.h:
|
/usr/include/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
/usr/include/bits/pthreadtypes.h:
|
/usr/include/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
/usr/include/bits/stdlib-float.h:
|
/usr/include/bits/stdlib-float.h:
|
||||||
|
|
||||||
bitshuffle/bitshuffle_internals.h:
|
bitshuffle/bitshuffle_internals.h:
|
||||||
@@ -92,13 +130,19 @@ bitshuffle/iochain.h:
|
|||||||
|
|
||||||
/usr/include/stdio.h:
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
/usr/include/libio.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stdarg.h:
|
||||||
|
|
||||||
/usr/include/_G_config.h:
|
/usr/include/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
/usr/include/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stdarg.h:
|
/usr/include/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
/usr/include/bits/stdio_lim.h:
|
/usr/include/bits/stdio_lim.h:
|
||||||
|
|
||||||
@@ -108,16 +152,16 @@ bitshuffle/iochain.h:
|
|||||||
|
|
||||||
/usr/include/string.h:
|
/usr/include/string.h:
|
||||||
|
|
||||||
/usr/include/xlocale.h:
|
/usr/include/bits/types/locale_t.h:
|
||||||
|
|
||||||
/usr/include/bits/string.h:
|
/usr/include/bits/types/__locale_t.h:
|
||||||
|
|
||||||
/usr/include/bits/string2.h:
|
/usr/include/strings.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/emmintrin.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/emmintrin.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/xmmintrin.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/xmmintrin.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/mmintrin.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/mmintrin.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/mm_malloc.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/mm_malloc.h:
|
||||||
|
|||||||
@@ -1,68 +1,100 @@
|
|||||||
bitshuffle/iochain.lo: bitshuffle/iochain.c /usr/include/stdc-predef.h \
|
bitshuffle/iochain.lo: bitshuffle/iochain.c /usr/include/stdc-predef.h \
|
||||||
/usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \
|
/usr/include/stdlib.h /usr/include/bits/libc-header-start.h \
|
||||||
/usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \
|
/usr/include/features.h /usr/include/sys/cdefs.h \
|
||||||
/usr/include/gnu/stubs-64.h \
|
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h \
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h \
|
||||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
/usr/include/bits/byteswap.h /usr/include/bits/types.h \
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
/usr/include/bits/typesizes.h /usr/include/bits/byteswap-16.h \
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
/usr/include/sys/types.h /usr/include/time.h /usr/include/sys/select.h \
|
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||||
/usr/include/bits/select.h /usr/include/bits/sigset.h \
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
/usr/include/bits/time.h /usr/include/sys/sysmacros.h \
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
/usr/include/bits/pthreadtypes.h /usr/include/alloca.h \
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
/usr/include/bits/stdlib-float.h bitshuffle/iochain.h
|
/usr/include/bits/pthreadtypes-arch.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
|
||||||
|
bitshuffle/iochain.h
|
||||||
|
|
||||||
/usr/include/stdc-predef.h:
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/bits/libc-header-start.h:
|
||||||
|
|
||||||
/usr/include/features.h:
|
/usr/include/features.h:
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
/usr/include/sys/cdefs.h:
|
||||||
|
|
||||||
/usr/include/bits/wordsize.h:
|
/usr/include/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/bits/long-double.h:
|
||||||
|
|
||||||
/usr/include/gnu/stubs.h:
|
/usr/include/gnu/stubs.h:
|
||||||
|
|
||||||
/usr/include/gnu/stubs-64.h:
|
/usr/include/gnu/stubs-64.h:
|
||||||
|
|
||||||
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/include/stddef.h:
|
/afs/psi.ch/sys/psi.x86_64_slp6/Programming/gcc/8.5.0/lib/gcc/x86_64-pc-linux-gnu/8.5.0/include/stddef.h:
|
||||||
|
|
||||||
/usr/include/bits/waitflags.h:
|
/usr/include/bits/waitflags.h:
|
||||||
|
|
||||||
/usr/include/bits/waitstatus.h:
|
/usr/include/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdint-intn.h:
|
||||||
|
|
||||||
/usr/include/endian.h:
|
/usr/include/endian.h:
|
||||||
|
|
||||||
/usr/include/bits/endian.h:
|
/usr/include/bits/endian.h:
|
||||||
|
|
||||||
/usr/include/bits/byteswap.h:
|
/usr/include/bits/byteswap.h:
|
||||||
|
|
||||||
/usr/include/bits/types.h:
|
/usr/include/bits/uintn-identity.h:
|
||||||
|
|
||||||
/usr/include/bits/typesizes.h:
|
|
||||||
|
|
||||||
/usr/include/bits/byteswap-16.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
/usr/include/sys/select.h:
|
||||||
|
|
||||||
/usr/include/bits/select.h:
|
/usr/include/bits/select.h:
|
||||||
|
|
||||||
/usr/include/bits/sigset.h:
|
/usr/include/bits/types/sigset_t.h:
|
||||||
|
|
||||||
/usr/include/bits/time.h:
|
/usr/include/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
/usr/include/sys/sysmacros.h:
|
/usr/include/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
/usr/include/bits/pthreadtypes.h:
|
/usr/include/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
/usr/include/bits/stdlib-float.h:
|
/usr/include/bits/stdlib-float.h:
|
||||||
|
|
||||||
bitshuffle/iochain.h:
|
bitshuffle/iochain.h:
|
||||||
|
|||||||
39
src/cafe.cpp
39
src/cafe.cpp
@@ -30,20 +30,6 @@
|
|||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
bool MUTEX=true;
|
|
||||||
bool CHECK_CONSISTENCY_CA_STATE=true;
|
|
||||||
bool SF_WITH_PULSE_ID = false;
|
|
||||||
|
|
||||||
vector<PVGroup> PVGroupV;
|
|
||||||
vector<PVGroup> PVGroupPseudo;
|
|
||||||
vector<deviceCollection> deviceCollectionV;
|
|
||||||
vector<string> globalChannelList;
|
|
||||||
map<vector<unsigned int>, string> groupPseudoMap;
|
|
||||||
|
|
||||||
cafeGroup_set gs;
|
|
||||||
cafeConduit_set cs;
|
|
||||||
epicsMutex cafeMutex;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
int CAFE::wfExpress(const unsigned int handle) {
|
int CAFE::wfExpress(const unsigned int handle) {
|
||||||
int status = ICAFE_NORMAL;
|
int status = ICAFE_NORMAL;
|
||||||
@@ -82,13 +68,18 @@ int CAFE::wfExpress(const unsigned int handle, const unsigned int nelem, dbr_ch
|
|||||||
if (it_handle != handle_index.end())
|
if (it_handle != handle_index.end())
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
std::cout << "Initiate Callback =============" << std::endl;
|
std::cout << "Initiate Callback =============" << std::endl;
|
||||||
status=(*it_handle).getWithCallback(CALLBACK_CAFE::handlerGet);
|
status=(*it_handle).getWithCallback(CALLBACK_CAFE::handlerGet);
|
||||||
ca_flush_io();
|
ca_flush_io();
|
||||||
for (int i=0; i <20; ++i) {
|
for (int i=0; i <20; ++i) {
|
||||||
|
|
||||||
sleep(0.05);
|
#if HAVE_BOOST_THREAD
|
||||||
|
boost::this_thread::sleep_for(boost::chrono::milliseconds(50));
|
||||||
|
#else
|
||||||
|
#if HAVE_LINUX
|
||||||
|
sleep(0.05);
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
//std::cout << "iscb done " << cafeGranules.isGetCallbackDone(handle) << std::endl;
|
//std::cout << "iscb done " << cafeGranules.isGetCallbackDone(handle) << std::endl;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -986,7 +977,15 @@ int CAFE::get(const unsigned int handle, PVDataHolder & pvd)
|
|||||||
}
|
}
|
||||||
if ((status=cafeGranules.channelExecuteGet(handle)) != ICAFE_NORMAL)
|
if ((status=cafeGranules.channelExecuteGet(handle)) != ICAFE_NORMAL)
|
||||||
{
|
{
|
||||||
|
std::cout << "HANDLE " << handle << __METHOD__ << std::endl;
|
||||||
|
|
||||||
(*it_handle).getPVDataHolder(pvd);
|
(*it_handle).getPVDataHolder(pvd);
|
||||||
|
std::cout << "BELEM " << pvd.nelem << __METHOD__ << std::endl;
|
||||||
|
std::cout << pvd.getAsFloat(0) << std::endl;
|
||||||
|
if (pvd.nelem > 1) {
|
||||||
|
std::cout << "////" << pvd.getAsFloat(1) << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
pvd.status=status;
|
pvd.status=status;
|
||||||
pvd.alarmStatus=-1;
|
pvd.alarmStatus=-1;
|
||||||
pvd.alarmSeverity=-1;
|
pvd.alarmSeverity=-1;
|
||||||
@@ -5238,7 +5237,13 @@ int CAFE::supplementHandlesV(std::vector<unsigned int> hV)
|
|||||||
for (int ij=0; ij<20; ++ij) {
|
for (int ij=0; ij<20; ++ij) {
|
||||||
if (!initCallbackComplete(allHandles) ) {
|
if (!initCallbackComplete(allHandles) ) {
|
||||||
//cout << "Will wait for " << ij << " " << (1+ij)*0.1 << " ======= SECONDS ==== " << endl;
|
//cout << "Will wait for " << ij << " " << (1+ij)*0.1 << " ======= SECONDS ==== " << endl;
|
||||||
usleep(100000); //tenth of a sec and loop over 2 sec
|
#if HAVE_BOOST_THREAD
|
||||||
|
boost::this_thread::sleep_for(boost::chrono::microseconds(100000)); //tenth of a sec and loop over 2 sec
|
||||||
|
#else
|
||||||
|
#if HAVE_LINUX
|
||||||
|
usleep(100000); //tenth of a sec and loop over 2 sec
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -204,7 +204,6 @@ void ChannelCreatePolicy::callbackHandlerCreate(struct connection_handler_args a
|
|||||||
cafeStatus.report(status);
|
cafeStatus.report(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Check if any monitors for this channel are to be started.....
|
// Check if any monitors for this channel are to be started.....
|
||||||
// If monitors are to be started, then start the monitors
|
// If monitors are to be started, then start the monitors
|
||||||
// pass on handler functions
|
// pass on handler functions
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
/// \version CAFE 1.6.0
|
/// \version CAFE 1.6.0
|
||||||
///
|
///
|
||||||
|
|
||||||
#include <epicsMutex.h>
|
//#include <epicsMutex.h>
|
||||||
|
|
||||||
#include <connect.h>
|
#include <connect.h>
|
||||||
#include <conduitFriends.h>
|
#include <conduitFriends.h>
|
||||||
@@ -27,7 +27,23 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
bool MUTEX=true;
|
||||||
|
bool CHECK_CONSISTENCY_CA_STATE=true;
|
||||||
|
bool SF_WITH_PULSE_ID = false;
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
vector<PVGroup> PVGroupV;
|
||||||
|
vector<PVGroup> PVGroupPseudo;
|
||||||
|
vector<deviceCollection> deviceCollectionV;
|
||||||
|
vector<string> globalChannelList;
|
||||||
|
map<vector<unsigned int>, string> groupPseudoMap;
|
||||||
|
|
||||||
|
cafeGroup_set gs;
|
||||||
|
cafeConduit_set cs;
|
||||||
|
epicsMutex cafeMutex;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//epicsMutex cafeMutex;
|
//epicsMutex cafeMutex;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -197,7 +213,7 @@ int Connect::createChannel(unsigned int handle, const char * pv, chid &pCh)
|
|||||||
{
|
{
|
||||||
|
|
||||||
#if HAVE_BOOST_THREAD
|
#if HAVE_BOOST_THREAD
|
||||||
boost::this_thread::sleep_for(boost::chrono::microseconds(microSedcondsWait));
|
boost::this_thread::sleep_for(boost::chrono::microseconds(microSecondsWait));
|
||||||
#else
|
#else
|
||||||
#if HAVE_LINUX
|
#if HAVE_LINUX
|
||||||
usleep(microSecondsWait);
|
usleep(microSecondsWait);
|
||||||
|
|||||||
228
src/makefile
228
src/makefile
@@ -1,7 +1,7 @@
|
|||||||
# makefile.in generated by automake 1.13.4 from makefile.am.
|
# makefile.in generated by automake 1.16.1 from makefile.am.
|
||||||
# src/makefile. Generated from makefile.in by configure.
|
# src/makefile. Generated from makefile.in by configure.
|
||||||
|
|
||||||
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
# This Makefile.in is free software; the Free Software Foundation
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
@@ -15,7 +15,17 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
am__is_gnu_make = { \
|
||||||
|
if test -z '$(MAKELEVEL)'; then \
|
||||||
|
false; \
|
||||||
|
elif test -n '$(MAKE_HOST)'; then \
|
||||||
|
true; \
|
||||||
|
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||||
|
true; \
|
||||||
|
else \
|
||||||
|
false; \
|
||||||
|
fi; \
|
||||||
|
}
|
||||||
am__make_running_with_option = \
|
am__make_running_with_option = \
|
||||||
case $${target_option-} in \
|
case $${target_option-} in \
|
||||||
?) ;; \
|
?) ;; \
|
||||||
@@ -76,15 +86,13 @@ POST_INSTALL = :
|
|||||||
NORMAL_UNINSTALL = :
|
NORMAL_UNINSTALL = :
|
||||||
PRE_UNINSTALL = :
|
PRE_UNINSTALL = :
|
||||||
POST_UNINSTALL = :
|
POST_UNINSTALL = :
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
build_triplet = x86_64-pc-linux-gnu
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
host_triplet = x86_64-pc-linux-gnu
|
||||||
#am__append_1 = PyCafe.cpp
|
#am__append_1 = PyCafe.cpp
|
||||||
#am__append_2 = zbsCafeService.cpp zbsDataHolders.cpp \
|
#am__append_2 = zbsCafeService.cpp zbsDataHolders.cpp \
|
||||||
# bitshuffle/bitshuffle_core.c bitshuffle/bitshuffle.c bitshuffle/iochain.c
|
# bitshuffle/bitshuffle_core.c bitshuffle/bitshuffle.c bitshuffle/iochain.c
|
||||||
|
|
||||||
subdir = src
|
subdir = src
|
||||||
DIST_COMMON = $(srcdir)/makefile.in $(srcdir)/makefile.am \
|
|
||||||
$(top_srcdir)/./depcomp
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||||
@@ -92,6 +100,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
|||||||
$(top_srcdir)/configure.ac
|
$(top_srcdir)/configure.ac
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||||
$(ACLOCAL_M4)
|
$(ACLOCAL_M4)
|
||||||
|
DIST_COMMON = $(srcdir)/makefile.am $(am__DIST_COMMON)
|
||||||
mkinstalldirs = $(install_sh) -d
|
mkinstalldirs = $(install_sh) -d
|
||||||
CONFIG_HEADER = $(top_builddir)/./include/config.h
|
CONFIG_HEADER = $(top_builddir)/./include/config.h
|
||||||
CONFIG_CLEAN_FILES =
|
CONFIG_CLEAN_FILES =
|
||||||
@@ -173,7 +182,25 @@ am__v_at_0 = @
|
|||||||
am__v_at_1 =
|
am__v_at_1 =
|
||||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)/./include
|
DEFAULT_INCLUDES = -I. -I$(top_builddir)/./include
|
||||||
depcomp = $(SHELL) $(top_srcdir)/./depcomp
|
depcomp = $(SHELL) $(top_srcdir)/./depcomp
|
||||||
am__depfiles_maybe = depfiles
|
am__maybe_remake_depfiles = depfiles
|
||||||
|
am__depfiles_remade = ./$(DEPDIR)/PyCafe.Plo ./$(DEPDIR)/cafe.Plo \
|
||||||
|
./$(DEPDIR)/cafeCache.Plo ./$(DEPDIR)/cafeGroup.Plo \
|
||||||
|
./$(DEPDIR)/cafeVectors.Plo ./$(DEPDIR)/cafeXML.Plo \
|
||||||
|
./$(DEPDIR)/callbackHandlerCreate.Plo \
|
||||||
|
./$(DEPDIR)/callbackHandlerMonitor.Plo ./$(DEPDIR)/conduit.Plo \
|
||||||
|
./$(DEPDIR)/conduitGroup.Plo ./$(DEPDIR)/connect.Plo \
|
||||||
|
./$(DEPDIR)/connectCallbacks.Plo ./$(DEPDIR)/connectGroup.Plo \
|
||||||
|
./$(DEPDIR)/exceptionsHelper.Plo ./$(DEPDIR)/granules.Plo \
|
||||||
|
./$(DEPDIR)/handleHelper.Plo ./$(DEPDIR)/helper.Plo \
|
||||||
|
./$(DEPDIR)/loadCollectionXMLParser.Plo \
|
||||||
|
./$(DEPDIR)/loadGroupXMLParser.Plo \
|
||||||
|
./$(DEPDIR)/methodCallbacks.Plo ./$(DEPDIR)/policyHelper.Plo \
|
||||||
|
./$(DEPDIR)/restorePVGroupXMLParser.Plo \
|
||||||
|
./$(DEPDIR)/transpose.Plo ./$(DEPDIR)/zbsCafeService.Plo \
|
||||||
|
./$(DEPDIR)/zbsDataHolders.Plo \
|
||||||
|
bitshuffle/$(DEPDIR)/bitshuffle.Plo \
|
||||||
|
bitshuffle/$(DEPDIR)/bitshuffle_core.Plo \
|
||||||
|
bitshuffle/$(DEPDIR)/iochain.Plo
|
||||||
am__mv = mv -f
|
am__mv = mv -f
|
||||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||||
@@ -237,8 +264,9 @@ am__define_uniq_tagged_files = \
|
|||||||
done | $(am__uniquify_input)`
|
done | $(am__uniquify_input)`
|
||||||
ETAGS = etags
|
ETAGS = etags
|
||||||
CTAGS = ctags
|
CTAGS = ctags
|
||||||
|
am__DIST_COMMON = $(srcdir)/makefile.in $(top_srcdir)/./depcomp
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.13
|
ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.16
|
||||||
AMTAR = $${TAR-tar}
|
AMTAR = $${TAR-tar}
|
||||||
|
|
||||||
#if HAVE_PYCAFE_EXT_
|
#if HAVE_PYCAFE_EXT_
|
||||||
@@ -248,22 +276,22 @@ AMTAR = $${TAR-tar}
|
|||||||
#if HAVE_PYTHON_
|
#if HAVE_PYTHON_
|
||||||
#libcafe_la_SOURCES += pycafe/PyCafe.cpp
|
#libcafe_la_SOURCES += pycafe/PyCafe.cpp
|
||||||
#endif
|
#endif
|
||||||
AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml -I$(top_srcdir)/include
|
AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I$(top_srcdir)/include
|
||||||
AM_DEFAULT_VERBOSITY = 1
|
AM_DEFAULT_VERBOSITY = 1
|
||||||
AM_LDFLAGS = -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib
|
AM_LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64
|
||||||
AR = ar
|
AR = ar
|
||||||
AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf
|
AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf
|
||||||
AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader
|
AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader
|
||||||
AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.13
|
AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.16
|
||||||
AWK = gawk
|
AWK = gawk
|
||||||
CAFE_CPPFLAGS = -I$(top_srcdir)/include
|
CAFE_CPPFLAGS = -I$(top_srcdir)/include
|
||||||
CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc
|
CC = /opt/psi/Programming/gcc/10.4.0/bin/gcc
|
||||||
CCDEPMODE = depmode=gcc3
|
CCDEPMODE = depmode=gcc3
|
||||||
CFLAGS = -g -O2
|
CFLAGS = -g -O2
|
||||||
CPP = /opt/psi/Programming/gcc/7.3.0/bin/gcc -E
|
CPP = /opt/psi/Programming/gcc/10.4.0/bin/gcc -E
|
||||||
CPPFLAGS = -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.7/latest/include/qt -I/opt/gfa/python-3.7/latest/include/qt/QtCore -I/opt/gfa/python-3.7/latest/include/qt/QtXml
|
CPPFLAGS = -fexceptions -fPIC -std=c++1z -z nodefs -I/usr/local/epics/base-7.0.8/include/ -I/usr/local/epics/base-7.0.8/include/os/Linux -I/usr/local/epics/base-7.0.8/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include
|
||||||
CXX = /opt/psi/Programming/gcc/7.3.0/bin/g++
|
CXX = /opt/psi/Programming/gcc/10.4.0/bin/g++
|
||||||
CXXCPP = /opt/psi/Programming/gcc/7.3.0/bin/g++ -E
|
CXXCPP = /opt/psi/Programming/gcc/10.4.0/bin/g++ -E
|
||||||
CXXDEPMODE = depmode=gcc3
|
CXXDEPMODE = depmode=gcc3
|
||||||
CXXFLAGS = -g -O2
|
CXXFLAGS = -g -O2
|
||||||
CYGPATH_W = echo
|
CYGPATH_W = echo
|
||||||
@@ -285,9 +313,9 @@ INSTALL_PROGRAM = ${INSTALL}
|
|||||||
INSTALL_SCRIPT = ${INSTALL}
|
INSTALL_SCRIPT = ${INSTALL}
|
||||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||||
LD = /usr/bin/ld -m elf_x86_64
|
LD = /usr/bin/ld -m elf_x86_64
|
||||||
LDFLAGS = -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.7/latest/lib -Wl,-rpath,/opt/gfa/python-3.7/latest/lib
|
LDFLAGS = -L/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.8/lib/RHEL8-x86_64
|
||||||
LIBOBJS =
|
LIBOBJS =
|
||||||
LIBS = -lQt5Xml -lQt5Core
|
LIBS =
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||||
LIPO =
|
LIPO =
|
||||||
LN_S = ln -s
|
LN_S = ln -s
|
||||||
@@ -305,23 +333,23 @@ OTOOL64 =
|
|||||||
PACKAGE = cafe
|
PACKAGE = cafe
|
||||||
PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch
|
PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch
|
||||||
PACKAGE_NAME = CAFE
|
PACKAGE_NAME = CAFE
|
||||||
PACKAGE_STRING = CAFE 1.18.0
|
PACKAGE_STRING = CAFE 1.20.1
|
||||||
PACKAGE_TARNAME = cafe
|
PACKAGE_TARNAME = cafe
|
||||||
PACKAGE_URL =
|
PACKAGE_URL =
|
||||||
PACKAGE_VERSION = 1.18.0
|
PACKAGE_VERSION = 1.20.1
|
||||||
PATH_SEPARATOR = :
|
PATH_SEPARATOR = :
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
SED = /usr/bin/sed
|
SED = /usr/bin/sed
|
||||||
SET_MAKE =
|
SET_MAKE =
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
STRIP = strip
|
STRIP = strip
|
||||||
VERSION = 1.18.0
|
VERSION = 1.20.1
|
||||||
abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/src
|
abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/src
|
||||||
abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/src
|
abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/src
|
||||||
abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
||||||
abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp
|
||||||
ac_ct_AR = ar
|
ac_ct_AR = ar
|
||||||
ac_ct_CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc
|
ac_ct_CC = /opt/psi/Programming/gcc/10.4.0/bin/gcc
|
||||||
ac_ct_CXX =
|
ac_ct_CXX =
|
||||||
ac_ct_DUMPBIN =
|
ac_ct_DUMPBIN =
|
||||||
am__include = include
|
am__include = include
|
||||||
@@ -330,27 +358,27 @@ am__quote =
|
|||||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||||
am__untar = $${TAR-tar} xf -
|
am__untar = $${TAR-tar} xf -
|
||||||
bindir = ${exec_prefix}/bin
|
bindir = ${exec_prefix}/bin
|
||||||
build = x86_64-unknown-linux-gnu
|
build = x86_64-pc-linux-gnu
|
||||||
build_alias =
|
build_alias =
|
||||||
build_cpu = x86_64
|
build_cpu = x86_64
|
||||||
build_os = linux-gnu
|
build_os = linux-gnu
|
||||||
build_vendor = unknown
|
build_vendor = pc
|
||||||
builddir = .
|
builddir = .
|
||||||
datadir = ${datarootdir}
|
datadir = ${datarootdir}
|
||||||
datarootdir = ${prefix}/share
|
datarootdir = ${prefix}/share
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||||
dvidir = ${docdir}
|
dvidir = ${docdir}
|
||||||
exec_prefix = ${prefix}
|
exec_prefix = ${prefix}
|
||||||
host = x86_64-unknown-linux-gnu
|
host = x86_64-pc-linux-gnu
|
||||||
host_alias =
|
host_alias =
|
||||||
host_cpu = x86_64
|
host_cpu = x86_64
|
||||||
host_os = linux-gnu
|
host_os = linux-gnu
|
||||||
host_vendor = unknown
|
host_vendor = pc
|
||||||
htmldir = ${docdir}
|
htmldir = ${docdir}
|
||||||
includedir = ${prefix}/include
|
includedir = ${prefix}/include
|
||||||
infodir = ${datarootdir}/info
|
infodir = ${datarootdir}/info
|
||||||
install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh
|
install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh
|
||||||
libdir = /opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0/lib/RHEL7-x86_64
|
libdir = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0/lib/RHEL8-x86_64
|
||||||
libexecdir = ${exec_prefix}/libexec
|
libexecdir = ${exec_prefix}/libexec
|
||||||
localedir = ${datarootdir}/locale
|
localedir = ${datarootdir}/locale
|
||||||
localstatedir = ${prefix}/var
|
localstatedir = ${prefix}/var
|
||||||
@@ -358,7 +386,7 @@ mandir = ${datarootdir}/man
|
|||||||
mkdir_p = $(MKDIR_P)
|
mkdir_p = $(MKDIR_P)
|
||||||
oldincludedir = /usr/include
|
oldincludedir = /usr/include
|
||||||
pdfdir = ${docdir}
|
pdfdir = ${docdir}
|
||||||
prefix = /opt/gfa/cafe/cpp/cafe-1.18.0-gcc-7.3.0
|
prefix = /opt/gfa/cafe/cpp/cafe-1.21.0-gcc-10.4.0
|
||||||
program_transform_name = s,x,x,
|
program_transform_name = s,x,x,
|
||||||
psdir = ${docdir}
|
psdir = ${docdir}
|
||||||
sbindir = ${exec_prefix}/sbin
|
sbindir = ${exec_prefix}/sbin
|
||||||
@@ -377,8 +405,8 @@ lib_LTLIBRARIES = libcafe.la
|
|||||||
#1st: current-age
|
#1st: current-age
|
||||||
#2nd: age
|
#2nd: age
|
||||||
#3rd: revision
|
#3rd: revision
|
||||||
#1.9.1 1.10.2 1.11.0 1.11.1 1.12.0 1.12.1 1.12.2 1.12.4
|
#1.9.2 1.10.2 1.11.0 1.11.1 1.12.0 1.12.1 1.12.2 1.12.4
|
||||||
libcafe_la_LDFLAGS = -version-info 19:0:18
|
libcafe_la_LDFLAGS = -version-info 22:0:21
|
||||||
libcafe_la_SOURCES = cafe.cpp cafeCache.cpp cafeGroup.cpp \
|
libcafe_la_SOURCES = cafe.cpp cafeCache.cpp cafeGroup.cpp \
|
||||||
cafeVectors.cpp cafeXML.cpp callbackHandlerCreate.cpp \
|
cafeVectors.cpp cafeXML.cpp callbackHandlerCreate.cpp \
|
||||||
callbackHandlerMonitor.cpp conduit.cpp connect.cpp \
|
callbackHandlerMonitor.cpp conduit.cpp connect.cpp \
|
||||||
@@ -404,14 +432,13 @@ $(srcdir)/makefile.in: $(srcdir)/makefile.am $(am__configure_deps)
|
|||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/makefile'; \
|
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/makefile'; \
|
||||||
$(am__cd) $(top_srcdir) && \
|
$(am__cd) $(top_srcdir) && \
|
||||||
$(AUTOMAKE) --gnu src/makefile
|
$(AUTOMAKE) --gnu src/makefile
|
||||||
.PRECIOUS: makefile
|
|
||||||
makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
|
makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
|
||||||
@case '$?' in \
|
@case '$?' in \
|
||||||
*config.status*) \
|
*config.status*) \
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||||
*) \
|
*) \
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||||
esac;
|
esac;
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||||
@@ -481,34 +508,40 @@ mostlyclean-compile:
|
|||||||
distclean-compile:
|
distclean-compile:
|
||||||
-rm -f *.tab.c
|
-rm -f *.tab.c
|
||||||
|
|
||||||
include ./$(DEPDIR)/PyCafe.Plo
|
include ./$(DEPDIR)/PyCafe.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/cafe.Plo
|
include ./$(DEPDIR)/cafe.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/cafeCache.Plo
|
include ./$(DEPDIR)/cafeCache.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/cafeGroup.Plo
|
include ./$(DEPDIR)/cafeGroup.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/cafeVectors.Plo
|
include ./$(DEPDIR)/cafeVectors.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/cafeXML.Plo
|
include ./$(DEPDIR)/cafeXML.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/callbackHandlerCreate.Plo
|
include ./$(DEPDIR)/callbackHandlerCreate.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/callbackHandlerMonitor.Plo
|
include ./$(DEPDIR)/callbackHandlerMonitor.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/conduit.Plo
|
include ./$(DEPDIR)/conduit.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/conduitGroup.Plo
|
include ./$(DEPDIR)/conduitGroup.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/connect.Plo
|
include ./$(DEPDIR)/connect.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/connectCallbacks.Plo
|
include ./$(DEPDIR)/connectCallbacks.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/connectGroup.Plo
|
include ./$(DEPDIR)/connectGroup.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/exceptionsHelper.Plo
|
include ./$(DEPDIR)/exceptionsHelper.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/granules.Plo
|
include ./$(DEPDIR)/granules.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/handleHelper.Plo
|
include ./$(DEPDIR)/handleHelper.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/helper.Plo
|
include ./$(DEPDIR)/helper.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/loadCollectionXMLParser.Plo
|
include ./$(DEPDIR)/loadCollectionXMLParser.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/loadGroupXMLParser.Plo
|
include ./$(DEPDIR)/loadGroupXMLParser.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/methodCallbacks.Plo
|
include ./$(DEPDIR)/methodCallbacks.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/policyHelper.Plo
|
include ./$(DEPDIR)/policyHelper.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/restorePVGroupXMLParser.Plo
|
include ./$(DEPDIR)/restorePVGroupXMLParser.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/transpose.Plo
|
include ./$(DEPDIR)/transpose.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/zbsCafeService.Plo
|
include ./$(DEPDIR)/zbsCafeService.Plo # am--include-marker
|
||||||
include ./$(DEPDIR)/zbsDataHolders.Plo
|
include ./$(DEPDIR)/zbsDataHolders.Plo # am--include-marker
|
||||||
include bitshuffle/$(DEPDIR)/bitshuffle.Plo
|
include bitshuffle/$(DEPDIR)/bitshuffle.Plo # am--include-marker
|
||||||
include bitshuffle/$(DEPDIR)/bitshuffle_core.Plo
|
include bitshuffle/$(DEPDIR)/bitshuffle_core.Plo # am--include-marker
|
||||||
include bitshuffle/$(DEPDIR)/iochain.Plo
|
include bitshuffle/$(DEPDIR)/iochain.Plo # am--include-marker
|
||||||
|
|
||||||
|
$(am__depfiles_remade):
|
||||||
|
@$(MKDIR_P) $(@D)
|
||||||
|
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||||
|
|
||||||
|
am--depfiles: $(am__depfiles_remade)
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||||
@@ -617,7 +650,10 @@ cscopelist-am: $(am__tagged_files)
|
|||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(BUILT_SOURCES)
|
||||||
|
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||||
|
|
||||||
|
distdir-am: $(DISTFILES)
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||||
list='$(DISTFILES)'; \
|
list='$(DISTFILES)'; \
|
||||||
@@ -692,7 +728,34 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
|||||||
mostlyclean-am
|
mostlyclean-am
|
||||||
|
|
||||||
distclean: distclean-am
|
distclean: distclean-am
|
||||||
-rm -rf ./$(DEPDIR) bitshuffle/$(DEPDIR)
|
-rm -f ./$(DEPDIR)/PyCafe.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafe.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafeCache.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafeGroup.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafeVectors.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafeXML.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/callbackHandlerCreate.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/callbackHandlerMonitor.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/conduit.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/conduitGroup.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/connect.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/connectCallbacks.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/connectGroup.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/exceptionsHelper.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/granules.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/handleHelper.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/helper.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/loadCollectionXMLParser.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/loadGroupXMLParser.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/methodCallbacks.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/policyHelper.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/restorePVGroupXMLParser.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/transpose.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/zbsCafeService.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/zbsDataHolders.Plo
|
||||||
|
-rm -f bitshuffle/$(DEPDIR)/bitshuffle.Plo
|
||||||
|
-rm -f bitshuffle/$(DEPDIR)/bitshuffle_core.Plo
|
||||||
|
-rm -f bitshuffle/$(DEPDIR)/iochain.Plo
|
||||||
-rm -f makefile
|
-rm -f makefile
|
||||||
distclean-am: clean-am distclean-compile distclean-generic \
|
distclean-am: clean-am distclean-compile distclean-generic \
|
||||||
distclean-tags
|
distclean-tags
|
||||||
@@ -738,7 +801,34 @@ install-ps-am:
|
|||||||
installcheck-am:
|
installcheck-am:
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
maintainer-clean: maintainer-clean-am
|
||||||
-rm -rf ./$(DEPDIR) bitshuffle/$(DEPDIR)
|
-rm -f ./$(DEPDIR)/PyCafe.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafe.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafeCache.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafeGroup.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafeVectors.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/cafeXML.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/callbackHandlerCreate.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/callbackHandlerMonitor.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/conduit.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/conduitGroup.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/connect.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/connectCallbacks.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/connectGroup.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/exceptionsHelper.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/granules.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/handleHelper.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/helper.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/loadCollectionXMLParser.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/loadGroupXMLParser.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/methodCallbacks.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/policyHelper.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/restorePVGroupXMLParser.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/transpose.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/zbsCafeService.Plo
|
||||||
|
-rm -f ./$(DEPDIR)/zbsDataHolders.Plo
|
||||||
|
-rm -f bitshuffle/$(DEPDIR)/bitshuffle.Plo
|
||||||
|
-rm -f bitshuffle/$(DEPDIR)/bitshuffle_core.Plo
|
||||||
|
-rm -f bitshuffle/$(DEPDIR)/iochain.Plo
|
||||||
-rm -f makefile
|
-rm -f makefile
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||||
|
|
||||||
@@ -759,9 +849,9 @@ uninstall-am: uninstall-libLTLIBRARIES
|
|||||||
|
|
||||||
.MAKE: install-am install-strip
|
.MAKE: install-am install-strip
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||||
clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
|
clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
|
||||||
ctags-am distclean distclean-compile distclean-generic \
|
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||||
html-am info info-am install install-am install-data \
|
html-am info info-am install install-am install-data \
|
||||||
install-data-am install-dvi install-dvi-am install-exec \
|
install-data-am install-dvi install-dvi-am install-exec \
|
||||||
@@ -773,6 +863,8 @@ uninstall-am: uninstall-libLTLIBRARIES
|
|||||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||||
tags tags-am uninstall uninstall-am uninstall-libLTLIBRARIES
|
tags tags-am uninstall uninstall-am uninstall-libLTLIBRARIES
|
||||||
|
|
||||||
|
.PRECIOUS: makefile
|
||||||
|
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ lib_LTLIBRARIES = libcafe.la
|
|||||||
#1st: current-age
|
#1st: current-age
|
||||||
#2nd: age
|
#2nd: age
|
||||||
#3rd: revision
|
#3rd: revision
|
||||||
#1.9.1 1.10.2 1.11.0 1.11.1 1.12.0 1.12.1 1.12.2 1.12.4
|
#1.9.2 1.10.2 1.11.0 1.11.1 1.12.0 1.12.1 1.12.2 1.12.4
|
||||||
libcafe_la_LDFLAGS = -version-info 19:0:18
|
libcafe_la_LDFLAGS = -version-info 22:0:21
|
||||||
|
|
||||||
libcafe_la_SOURCES = cafe.cpp cafeCache.cpp cafeGroup.cpp cafeVectors.cpp cafeXML.cpp \
|
libcafe_la_SOURCES = cafe.cpp cafeCache.cpp cafeGroup.cpp cafeVectors.cpp cafeXML.cpp \
|
||||||
callbackHandlerCreate.cpp callbackHandlerMonitor.cpp conduit.cpp connect.cpp connectCallbacks.cpp \
|
callbackHandlerCreate.cpp callbackHandlerMonitor.cpp conduit.cpp connect.cpp connectCallbacks.cpp \
|
||||||
|
|||||||
@@ -327,17 +327,21 @@ void CALLBACK_CAFE::handlerGet( struct event_handler_args args)
|
|||||||
{
|
{
|
||||||
#define __METHOD__ "CALLBACK_CAFE::handlerGet"
|
#define __METHOD__ "CALLBACK_CAFE::handlerGet"
|
||||||
|
|
||||||
if (args.status == ECA_NORMAL)
|
if (args.status != ECA_NORMAL)
|
||||||
{
|
{
|
||||||
if ("X09DA-FE-CCD1:FPICTURE" == ca_name (args.chid) ) {
|
//if ("ARIDI-BPM-01LE:WF-INT-1" == ca_name (args.chid) ) {
|
||||||
|
//if ("X09DA-FE-CCD1:FPICTURE" == ca_name (args.chid) ) {
|
||||||
cout << __FILE__ << "/" << __LINE__ << "/" << __METHOD__ << endl;
|
cout << __FILE__ << "/" << __LINE__ << "/" << __METHOD__ << endl;
|
||||||
cout << "Status=" << args.status << " for channel " << ca_name (args.chid) << endl;
|
cout << "Status=" << args.status << " for channel " << ca_name (args.chid) << endl;
|
||||||
if (RETURN_ON_ERROR == true) return;
|
if (RETURN_ON_ERROR == true) return;
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int _handle = (unsigned long) args.usr; // ca_puser(args.chid);
|
unsigned int _handle = (unsigned long) args.usr; // ca_puser(args.chid);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cafeConduit_set_by_handle & handle_index = cs.get<by_handle> ();
|
cafeConduit_set_by_handle & handle_index = cs.get<by_handle> ();
|
||||||
cafeConduit_set_by_handle::iterator it_handle;
|
cafeConduit_set_by_handle::iterator it_handle;
|
||||||
|
|
||||||
@@ -354,6 +358,7 @@ void CALLBACK_CAFE::handlerGet( struct event_handler_args args)
|
|||||||
handle_index.modify(it_handle, change_eventHandlerArgs (args));
|
handle_index.modify(it_handle, change_eventHandlerArgs (args));
|
||||||
handle_index.modify(it_handle, change_channelRequestStatusGet(channelRequestStatusGet));
|
handle_index.modify(it_handle, change_channelRequestStatusGet(channelRequestStatusGet));
|
||||||
//cout << __METHOD__ << " CALLBACK DONE " << (*it_handle).getChannelRequestStatusGet().getCallbackProgressKind() << endl;
|
//cout << __METHOD__ << " CALLBACK DONE " << (*it_handle).getChannelRequestStatusGet().getCallbackProgressKind() << endl;
|
||||||
|
//cout << "handle/// " << _handle << endl;
|
||||||
if(MUTEX)
|
if(MUTEX)
|
||||||
{
|
{
|
||||||
cafeMutex.unlock();
|
cafeMutex.unlock();
|
||||||
@@ -760,6 +765,7 @@ void CALLBACK_CAFE::handlerGetClassName( struct event_handler_args args)
|
|||||||
cout << __FILE__ << "/" << __LINE__ << "/" << __METHOD__ << endl;
|
cout << __FILE__ << "/" << __LINE__ << "/" << __METHOD__ << endl;
|
||||||
cout << "Status=" << args.status << " for channel " << ca_name (args.chid) << endl;
|
cout << "Status=" << args.status << " for channel " << ca_name (args.chid) << endl;
|
||||||
if (RETURN_ON_ERROR == true) return;
|
if (RETURN_ON_ERROR == true) return;
|
||||||
|
//return;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int _handle = (unsigned long) args.usr; // ca_puser(args.chid);
|
unsigned int _handle = (unsigned long) args.usr; // ca_puser(args.chid);
|
||||||
|
|||||||
Reference in New Issue
Block a user