Skip to content
Snippets Groups Projects
Commit 04a9a069 authored by Daniel Koester's avatar Daniel Koester
Browse files

Einige Aenderungen in der Organisation

parent 16788010
Branches
Tags
No related merge requests found
......@@ -93,11 +93,14 @@ Some things are already explained in "configure.ac", in which I invested most of
Choosing not to use libtool would require many changes, the first would be to change all "LTLIBRARIES" to "LIBRARIES" in all "Makefile.am"s.
1) mips-sgi-irix6.5:
a) The -lgl and -lGL libraries are required.
a) The -lgl and -lGL libraries are required.
b) The GNU Fortran compiler g77 produced n32-style code, which was not default for
the gcc. Recommended solution:
i) Adding -n32 option to "CFLAGS" and "LDFLAGS"
2) i686-suse-linux:
a) We used MesaGL and a BLAS lib from the SuSE distribution... The BLAS lib needed -lg2c to function properly.
a) We used MesaGL and a BLAS lib from the SuSE distribution... The BLAS lib needed -lg2c to function properly.
3) sparc-sun-SunOS:
a) For the xdr-Routines, the library -lnsl seemed necessary.
b) In our case, "configure" did not automatically recognize the canonical system triplet. Calling "configure --build=sparc" worked.
\ No newline at end of file
a) For the xdr-Routines, the library -lnsl seemed necessary.
b) In our case, "configure" did not automatically recognize the canonical system triplet. Calling "configure --build=sparc" worked.
\ No newline at end of file
......@@ -64,7 +64,13 @@ The default installation path is also the build directory. This can be changed v
Default library mode is static. Change this via
--enable-shared=PKGS.
--enable-shared=??
where ?? is "yes" or "no".
We recommend setting the environment variable "CFLAGS" to blank, so that "configure" does NOT automatically substitute a "-g" debugging option while compiling.
......@@ -60,23 +60,9 @@ AC_TYPE_SIGNAL
# look for X11 library paths AND sets all necessary flags (X_CFLAGS) e.g.
AC_PATH_XTRA
# ******************************************************************************
# Prevent -g from being set here automatically...
# ******************************************************************************
CFLAGS=
FFLAGS=
AM_CFLAGS=
AM_FFLAGS=
# ******************************************************************************
# These are our own tests
# ******************************************************************************
# The -n32 option was needed for SGIs:
# The g77 command produced new 32-bit objects whereas gcc defaulted to old
# 32-bit objects. This caused warnings during making (symbol tables
# destroyed???)
# ******************************************************************************
plot_for_sun=true
plot_for_ibm=false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment