Difference between revisions of "GiNaC"
From CBLFS
Jump to navigationJump to searchWeibullguy (talk | contribs) |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 5: | Line 5: | ||
|} | |} | ||
− | + | ---- | |
− | GiNaC is being developed to become a replacement engine for xloops. GiNaCs design is contrary to other computer algebra systems as it does not try to provide extensive algebraic capabilities with a simple programming language. Rather, GiNaC accepts a given language (C++) and extends it by a set of algebraic capabilities. | + | {{Package-Introduction|GiNaC is being developed to become a replacement engine for xloops. GiNaCs design is contrary to other computer algebra systems as it does not try to provide extensive algebraic capabilities with a simple programming language. Rather, GiNaC accepts a given language (C++) and extends it by a set of algebraic capabilities.|http://www.ginac.de}} |
− | |||
− | |||
== Dependencies == | == Dependencies == | ||
Line 49: | Line 47: | ||
Compile the package: | Compile the package: | ||
+ | CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \ | ||
./configure --prefix=/usr --libdir=/usr/lib32 && | ./configure --prefix=/usr --libdir=/usr/lib32 && | ||
make | make | ||
Line 55: | Line 54: | ||
make install && | make install && | ||
− | mv -v /usr/bin/ginac-config{,- | + | mv -v /usr/bin/ginac-config{,-n32} |
=== 64Bit === | === 64Bit === | ||
+ | |||
Compile the package: | Compile the package: | ||
+ | CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \ | ||
./configure --prefix=/usr --libdir=/usr/lib64 && | ./configure --prefix=/usr --libdir=/usr/lib64 && | ||
make | make | ||
Line 66: | Line 67: | ||
make install && | make install && | ||
− | mv -v /usr/bin/ginac-config{,- | + | mv -v /usr/bin/ginac-config{,-64} && |
+ | ln -sfv multiarch_wrapper /usr/bin/ginac-config | ||
== Contents == | == Contents == | ||
− | {| style="text-align: left | + | {|style="text-align: left" |
|-valign="top" | |-valign="top" | ||
!Installed Directories: | !Installed Directories: | ||
Line 79: | Line 81: | ||
|-valign="top" | |-valign="top" | ||
!Installed Libraries: | !Installed Libraries: | ||
− | |libginac. | + | |libginac.so, libginac.la, libginac.a |
+ | |-valign="top" | ||
+ | !Symlinks: | ||
+ | |None | ||
|} | |} | ||
Line 95: | Line 100: | ||
|Tool that is used to determine the compiler and linker flags that should be used to compile and link programs that use GiNaC. | |Tool that is used to determine the compiler and linker flags that should be used to compile and link programs that use GiNaC. | ||
|} | |} | ||
+ | |||
+ | [[Category:Science_Engineering]] |
Latest revision as of 10:21, 18 August 2008
Download Source: | http://www.ginac.de/ginac-1.4.1.tar.bz2 |
---|
Contents
Introduction to GiNaC
GiNaC is being developed to become a replacement engine for xloops. GiNaCs design is contrary to other computer algebra systems as it does not try to provide extensive algebraic capabilities with a simple programming language. Rather, GiNaC accepts a given language (C++) and extends it by a set of algebraic capabilities.
Project Homepage: http://www.ginac.de
Dependencies
Required
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \ ./configure --prefix=/usr && make
Install the package:
make install && mv -v /usr/bin/ginac-config{,-32}
N32
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \ ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package:
make install && mv -v /usr/bin/ginac-config{,-n32}
64Bit
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \ ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package:
make install && mv -v /usr/bin/ginac-config{,-64} && ln -sfv multiarch_wrapper /usr/bin/ginac-config
Contents
Installed Directories: | /usr/include/ginac |
---|---|
Installed Programs: | ginsh, viewgar, ginac-config |
Installed Libraries: | libginac.so, libginac.la, libginac.a |
Symlinks: | None |
Short Descriptions
ginsh: | The GiNaC Interactive Shell. |
---|---|
viewgar: | Displays the contents of GiNaC archive files. |
ginac-config: | Tool that is used to determine the compiler and linker flags that should be used to compile and link programs that use GiNaC. |