boost1.58 1.58.0+dfsg-3.1ubuntu1 source package in Ubuntu
Changelog
boost1.58 (1.58.0+dfsg-3.1ubuntu1) wily; urgency=medium * Merge with Debian; remaining changes: - Build the MPI packages from separate sources. boost1.58 (1.58.0+dfsg-3.1) unstable; urgency=medium * Non-maintainer upload. * Fix FTBFS of ompl against boost1.58 by gcc5. (Closes: #797281) boost1.58 (1.58.0+dfsg-3) unstable; urgency=medium * Upload to unstable. boost1.58 (1.58.0+dfsg-2) experimental; urgency=medium [ Dimitri John Ledkov ] * Cherry-pick upstream patch to fix FTBFS on sparc. [ Matthias Klose ] * boost-context-use-sysv-not-aapcs.patch: Fix build on AArch64 (Ed Nevill). boost1.58 (1.58.0+dfsg-1) experimental; urgency=medium [ Matthias Klose ] * New upstream release. * d/p/hurd-clock-gettime.patch: Remove, applied upstream. * Update d/documentation-files. * Don't call the compiler with -m{32,64} explicitly. * Build using ICU 55.1 [ Dimitri John Ledkov ] * Include 1.58 known issues patches. -- Matthias Klose <email address hidden> Wed, 14 Oct 2015 13:46:32 +0200
Upload details
- Uploaded by:
- Matthias Klose
- Uploaded to:
- Wily
- Original maintainer:
- Debian Boost Team
- Architectures:
- any all
- Section:
- libs
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section |
---|
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
boost1.58_1.58.0+dfsg.orig.tar.gz | 78.9 MiB | 964372735158eabb748db740649e0310213cd9c1b742175fa0062f5e350e4c28 |
boost1.58_1.58.0+dfsg-3.1ubuntu1.debian.tar.xz | 108.2 KiB | e86b7c64f5dea58d3c5bc9140407c81725047fc4e7deb528d8c68b957f13268b |
boost1.58_1.58.0+dfsg-3.1ubuntu1.dsc | 5.8 KiB | dc6d5c07f864c5bc8de673c7782701444556465b27416d6d49d7f3bbdde065f0 |
Available diffs
Binary packages built by this source
- libboost-atomic1.58-dev: No summary available for libboost-atomic1.58-dev in ubuntu wily.
No description available for libboost-
atomic1. 58-dev in ubuntu wily.
- libboost-atomic1.58-dev-dbgsym: No summary available for libboost-atomic1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
atomic1. 58-dev- dbgsym in ubuntu wily.
- libboost-atomic1.58.0: atomic data types, operations, and memory ordering constraints
This package forms part of the Boost C++ Libraries collection.
.
Boost.Atomic is a library that provides atomic data types and
operations on these data types, as well as memory ordering
constraints required for coordinating multiple threads through atomic
variables. It implements the interface as defined by the C++11
standard, but makes this feature available for platforms lacking
system/compiler support for this particular C++11 feature.
.
Users of this library should already be familiar with concurrency in
general, as well as elementary concepts such as "mutual exclusion".
.
The implementation makes use of processor-specific instructions where
possible (via inline assembler, platform libraries or compiler
intrinsics), and falls back to "emulating" atomic operations through
locking.
- libboost-atomic1.58.0-dbgsym: debug symbols for package libboost-atomic1.58.0
This package forms part of the Boost C++ Libraries collection.
.
Boost.Atomic is a library that provides atomic data types and
operations on these data types, as well as memory ordering
constraints required for coordinating multiple threads through atomic
variables. It implements the interface as defined by the C++11
standard, but makes this feature available for platforms lacking
system/compiler support for this particular C++11 feature.
.
Users of this library should already be familiar with concurrency in
general, as well as elementary concepts such as "mutual exclusion".
.
The implementation makes use of processor-specific instructions where
possible (via inline assembler, platform libraries or compiler
intrinsics), and falls back to "emulating" atomic operations through
locking.
- libboost-chrono1.58-dev: No summary available for libboost-chrono1.58-dev in ubuntu wily.
No description available for libboost-
chrono1. 58-dev in ubuntu wily.
- libboost-chrono1.58-dev-dbgsym: debug symbols for package libboost-chrono1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
The Boost.Chrono library provides:
.
* A means to represent time durations: managed by the generic
duration class . Examples of time durations include days, minutes,
seconds and nanoseconds, which can be represented with a fixed number
of clock ticks per unit. All of these units of time duration are
united with a generic interface by the duration facility.
* A type for representing points in time: time_point. A time_point
represents an epoch plus or minus a duration. The library leaves
epochs unspecified. A time_point is associated with a clock.
* Several clocks, some of which may not be available on a
particular platform: system_clock, steady_clock and
high_resolution_clock. A clock is a pairing of a time_point and
duration, and a function which returns a time_point representing now.
.
To make the timing facilities more generally useful, Boost.Chrono
provides a number of clocks that are thin wrappers around the
operating system's time APIs, thereby allowing the extraction of wall
clock time, user CPU time, system CPU time spent by the process:
.
* process_real_cpu_ clock, captures wall clock CPU time spent by the
current process.
* process_user_cpu_ clock, captures user-CPU time
spent by the current process.
* process_system_ cpu_clock, captures
system-CPU time spent by the current process.
* A tuple-like class
process_cpu_clock, that captures real, user-CPU, and system-CPU
process times together.
* A thread_clock thread steady clock giving
the time spent by the current thread (when supported by a platform).
.
Lastly, Boost.Chrono includes typeof registration for duration and
time_point to permit using emulated auto with C++03 compilers.
- libboost-chrono1.58.0: No summary available for libboost-chrono1.58.0 in ubuntu wily.
No description available for libboost-
chrono1. 58.0 in ubuntu wily.
- libboost-chrono1.58.0-dbgsym: No summary available for libboost-chrono1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
chrono1. 58.0-dbgsym in ubuntu wily.
- libboost-context1.58-dev: No summary available for libboost-context1.58-dev in ubuntu wily.
No description available for libboost-
context1. 58-dev in ubuntu wily.
- libboost-context1.58-dev-dbgsym: debug symbols for package libboost-context1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
Boost.Context is a foundational library that provides a sort of
cooperative multitasking on a single thread. By providing an
abstraction of the current execution state in the current thread,
including the stack (with local variables) and stack pointer, all
registers and CPU flags, and the instruction pointer, a fcontext_t
instance represents a specific point in the application's execution
path. This is useful for building higher-level abstractions, like
coroutines, cooperative threads (userland threads) or an equivalent
to C# keyword yield in C++.
- libboost-context1.58.0: provides a sort of cooperative multitasking on a single thread
This package forms part of the Boost C++ Libraries collection.
.
Boost.Context is a foundational library that provides a sort of
cooperative multitasking on a single thread. By providing an
abstraction of the current execution state in the current thread,
including the stack (with local variables) and stack pointer, all
registers and CPU flags, and the instruction pointer, a fcontext_t
instance represents a specific point in the application's execution
path. This is useful for building higher-level abstractions, like
coroutines, cooperative threads (userland threads) or an equivalent
to C# keyword yield in C++.
- libboost-context1.58.0-dbgsym: No summary available for libboost-context1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
context1. 58.0-dbgsym in ubuntu wily.
- libboost-coroutine1.58-dev: No summary available for libboost-coroutine1.58-dev in ubuntu wily.
No description available for libboost-
coroutine1. 58-dev in ubuntu wily.
- libboost-coroutine1.58-dev-dbgsym: No summary available for libboost-coroutine1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
coroutine1. 58-dev- dbgsym in ubuntu wily.
- libboost-date-time1.58-dev: No summary available for libboost-date-time1.58-dev in ubuntu wily.
No description available for libboost-
date-time1. 58-dev in ubuntu wily.
- libboost-date-time1.58-dev-dbgsym: No summary available for libboost-date-time1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
date-time1. 58-dev- dbgsym in ubuntu wily.
- libboost-date-time1.58.0: No summary available for libboost-date-time1.58.0 in ubuntu wily.
No description available for libboost-
date-time1. 58.0 in ubuntu wily.
- libboost-date-time1.58.0-dbgsym: debug symbols for package libboost-date-time1.58.0
This package forms part of the Boost C++ Libraries collection.
.
These libraries are intended to make programming with dates and times
almost as simple and natural as programming with strings and integers.
- libboost-exception1.58-dev: No summary available for libboost-exception1.58-dev in ubuntu wily.
No description available for libboost-
exception1. 58-dev in ubuntu wily.
- libboost-exception1.58-dev-dbgsym: No summary available for libboost-exception1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
exception1. 58-dev- dbgsym in ubuntu wily.
- libboost-filesystem1.58-dev: filesystem operations (portable paths, iteration over directories, etc) in C++
This package forms part of the Boost C++ Libraries collection.
.
The Boost Filesystem Library provides portable facilities to query and
manipulate paths, files, and directories. The goal is to
facilitate portable script-like operations from within C++ programs.
- libboost-filesystem1.58-dev-dbgsym: debug symbols for package libboost-filesystem1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
The Boost Filesystem Library provides portable facilities to query and
manipulate paths, files, and directories. The goal is to
facilitate portable script-like operations from within C++ programs.
- libboost-filesystem1.58.0: filesystem operations (portable paths, iteration over directories, etc) in C++
This package forms part of the Boost C++ Libraries collection.
.
The Boost Filesystem Library provides portable facilities to query and
manipulate paths, files, and directories. The goal is to
facilitate portable script-like operations from within C++ programs.
- libboost-filesystem1.58.0-dbgsym: debug symbols for package libboost-filesystem1.58.0
This package forms part of the Boost C++ Libraries collection.
.
The Boost Filesystem Library provides portable facilities to query and
manipulate paths, files, and directories. The goal is to
facilitate portable script-like operations from within C++ programs.
- libboost-graph1.58-dev: generic graph components and algorithms in C++
This package forms part of the Boost C++ Libraries collection.
.
Graphs are mathematical abstractions that are useful for solving
many types of problems in computer science. Consequently, these
abstractions must also be represented in computer programs. A
standardized generic interface for traversing graphs is of utmost
importance to encourage reuse of graph algorithms and data structures.
- libboost-graph1.58-dev-dbgsym: debug symbols for package libboost-graph1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
Graphs are mathematical abstractions that are useful for solving
many types of problems in computer science. Consequently, these
abstractions must also be represented in computer programs. A
standardized generic interface for traversing graphs is of utmost
importance to encourage reuse of graph algorithms and data structures.
- libboost-graph1.58.0: No summary available for libboost-graph1.58.0 in ubuntu wily.
No description available for libboost-
graph1. 58.0 in ubuntu wily.
- libboost-graph1.58.0-dbgsym: No summary available for libboost-graph1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
graph1. 58.0-dbgsym in ubuntu wily.
- libboost-iostreams1.58-dev: No summary available for libboost-iostreams1.58-dev in ubuntu wily.
No description available for libboost-
iostreams1. 58-dev in ubuntu wily.
- libboost-iostreams1.58-dev-dbgsym: No summary available for libboost-iostreams1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
iostreams1. 58-dev- dbgsym in ubuntu wily.
- libboost-iostreams1.58.0: Boost.Iostreams Library
This package forms part of the Boost C++ Libraries collection.
.
Boost.Iostreams are a collection of concepts and a set of templates
which turn models of these concepts into C++ standard library streams
and stream buffers.
- libboost-iostreams1.58.0-dbgsym: debug symbols for package libboost-iostreams1.58.0
This package forms part of the Boost C++ Libraries collection.
.
Boost.Iostreams are a collection of concepts and a set of templates
which turn models of these concepts into C++ standard library streams
and stream buffers.
- libboost-locale1.58-dev: No summary available for libboost-locale1.58-dev in ubuntu wily.
No description available for libboost-
locale1. 58-dev in ubuntu wily.
- libboost-locale1.58-dev-dbgsym: No summary available for libboost-locale1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
locale1. 58-dev- dbgsym in ubuntu wily.
- libboost-locale1.58.0: No summary available for libboost-locale1.58.0 in ubuntu wily.
No description available for libboost-
locale1. 58.0 in ubuntu wily.
- libboost-locale1.58.0-dbgsym: No summary available for libboost-locale1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
locale1. 58.0-dbgsym in ubuntu wily.
- libboost-log1.58-dev: No summary available for libboost-log1.58-dev in ubuntu wily.
No description available for libboost-
log1.58- dev in ubuntu wily.
- libboost-log1.58-dev-dbgsym: debug symbols for package libboost-log1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
This library aims to make logging significantly easier for the
application developer. It provides a wide range of out-of-the-box
tools along with public interfaces for extending the library. The
main goals of the library are:
.
* Simplicity. A small example code snippet should be enough to get
the feel of the library and be ready to use its basic features.
* Extensibility. A user should be able to extend functionality of the
library for collecting and storing information into logs.
* Performance. The library should have as little performance impact on
the user's application as possible.
- libboost-log1.58.0: No summary available for libboost-log1.58.0 in ubuntu wily.
No description available for libboost-log1.58.0 in ubuntu wily.
- libboost-log1.58.0-dbgsym: No summary available for libboost-log1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
log1.58. 0-dbgsym in ubuntu wily.
- libboost-math1.58-dev: No summary available for libboost-math1.58-dev in ubuntu wily.
No description available for libboost-
math1.58- dev in ubuntu wily.
- libboost-math1.58-dev-dbgsym: No summary available for libboost-math1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
math1.58- dev-dbgsym in ubuntu wily.
- libboost-math1.58.0: No summary available for libboost-math1.58.0 in ubuntu wily.
No description available for libboost-math1.58.0 in ubuntu wily.
- libboost-math1.58.0-dbgsym: debug symbols for package libboost-math1.58.0
This package forms part of the Boost C++ Libraries collection.
.
This library is divided into three interconnected parts:
* Statistical Distributions: Provides a reasonably comprehensive set of
statistical distributions, upon which higher level statistical tests
can be built.
* Mathematical Special Functions: Provides a small number of high quality
special functions, initially these were concentrated on functions used in
statistical applications along with those in the Technical Report on
C++ Library Extensions.
* Implementation Toolkit: Provides many of the tools required to implement
mathematical special functions.
- libboost-program-options1.58-dev: No summary available for libboost-program-options1.58-dev in ubuntu wily.
No description available for libboost-
program- options1. 58-dev in ubuntu wily.
- libboost-program-options1.58-dev-dbgsym: debug symbols for package libboost-program-options1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
Library to let program developers obtain program options, that is
(name, value) pairs from the user, via conventional methods such as
command line and config file.
- libboost-program-options1.58.0: program options library for C++
This package forms part of the Boost C++ Libraries collection.
.
Library to let program developers obtain program options, that is
(name, value) pairs from the user, via conventional methods such as
command line and config file.
- libboost-program-options1.58.0-dbgsym: No summary available for libboost-program-options1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
program- options1. 58.0-dbgsym in ubuntu wily.
- libboost-python1.58-dev: No summary available for libboost-python1.58-dev in ubuntu wily.
No description available for libboost-
python1. 58-dev in ubuntu wily.
- libboost-python1.58-dev-dbgsym: No summary available for libboost-python1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
python1. 58-dev- dbgsym in ubuntu wily.
- libboost-python1.58.0: Boost.Python Library
This package forms part of the Boost C++ Libraries collection.
.
The Boost Python Library is used to quickly and easily export a C++
library to Python such that the Python interface is very similar to
the C++ interface. It is designed to be minimally intrusive on your
C++ design. In most cases, you should not have to alter your C++
classes in any way in order to use them with Boost.Python. The
system should simply "reflect" your C++ classes and functions into
Python. The major features of Boost.Python include support for:
Subclassing extension types in Python, Overriding virtual functions
in Python, Member function Overloading, Automatic wrapping of
numeric operators among others.
.
One of the python interpreter packages is required to use the
created extensions.
- libboost-python1.58.0-dbgsym: debug symbols for package libboost-python1.58.0
This package forms part of the Boost C++ Libraries collection.
.
The Boost Python Library is used to quickly and easily export a C++
library to Python such that the Python interface is very similar to
the C++ interface. It is designed to be minimally intrusive on your
C++ design. In most cases, you should not have to alter your C++
classes in any way in order to use them with Boost.Python. The
system should simply "reflect" your C++ classes and functions into
Python. The major features of Boost.Python include support for:
Subclassing extension types in Python, Overriding virtual functions
in Python, Member function Overloading, Automatic wrapping of
numeric operators among others.
.
One of the python interpreter packages is required to use the
created extensions.
- libboost-random1.58-dev: Boost Random Number Library
This package forms part of the Boost C++ Libraries collection.
.
The Boost Random Number Library (Boost.Random for short) provides a
variety of generators and distributions to produce random numbers
having useful properties, such as uniform distribution.
- libboost-random1.58-dev-dbgsym: debug symbols for package libboost-random1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
The Boost Random Number Library (Boost.Random for short) provides a
variety of generators and distributions to produce random numbers
having useful properties, such as uniform distribution.
- libboost-random1.58.0: No summary available for libboost-random1.58.0 in ubuntu wily.
No description available for libboost-
random1. 58.0 in ubuntu wily.
- libboost-random1.58.0-dbgsym: debug symbols for package libboost-random1.58.0
This package forms part of the Boost C++ Libraries collection.
.
The Boost Random Number Library (Boost.Random for short) provides a
variety of generators and distributions to produce random numbers
having useful properties, such as uniform distribution.
- libboost-regex1.58-dev: No summary available for libboost-regex1.58-dev in ubuntu wily.
No description available for libboost-
regex1. 58-dev in ubuntu wily.
- libboost-regex1.58-dev-dbgsym: debug symbols for package libboost-regex1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
Regular expressions are a form of pattern-matching that are often
used in text processing; many users will be familiar with the Unix
utilities grep, sed and awk, and the programming language perl, each
of which make extensive use of regular expressions. Traditionally C++
users have been limited to the POSIX C APIs for manipulating regular
expressions, and while regex does provide these APIs, they do not
represent the best way to use the library. For example regex can cope
with wide character strings, or search and replace operations (in a
manner analogous to either sed or perl), something that traditional C
libraries can not do.
- libboost-regex1.58.0: regular expression library for C++
This package forms part of the Boost C++ Libraries collection.
.
Regular expressions are a form of pattern-matching that are often
used in text processing; many users will be familiar with the Unix
utilities grep, sed and awk, and the programming language perl, each
of which make extensive use of regular expressions. Traditionally C++
users have been limited to the POSIX C APIs for manipulating regular
expressions, and while regex does provide these APIs, they do not
represent the best way to use the library. For example regex can cope
with wide character strings, or search and replace operations (in a
manner analogous to either sed or perl), something that traditional C
libraries can not do.
- libboost-regex1.58.0-dbgsym: debug symbols for package libboost-regex1.58.0
This package forms part of the Boost C++ Libraries collection.
.
Regular expressions are a form of pattern-matching that are often
used in text processing; many users will be familiar with the Unix
utilities grep, sed and awk, and the programming language perl, each
of which make extensive use of regular expressions. Traditionally C++
users have been limited to the POSIX C APIs for manipulating regular
expressions, and while regex does provide these APIs, they do not
represent the best way to use the library. For example regex can cope
with wide character strings, or search and replace operations (in a
manner analogous to either sed or perl), something that traditional C
libraries can not do.
- libboost-serialization1.58-dev: No summary available for libboost-serialization1.58-dev in ubuntu wily.
No description available for libboost-
serialization1. 58-dev in ubuntu wily.
- libboost-serialization1.58-dev-dbgsym: No summary available for libboost-serialization1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
serialization1. 58-dev- dbgsym in ubuntu wily.
- libboost-serialization1.58.0: No summary available for libboost-serialization1.58.0 in ubuntu wily.
No description available for libboost-
serialization1. 58.0 in ubuntu wily.
- libboost-serialization1.58.0-dbgsym: No summary available for libboost-serialization1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
serialization1. 58.0-dbgsym in ubuntu wily.
- libboost-signals1.58-dev: No summary available for libboost-signals1.58-dev in ubuntu wily.
No description available for libboost-
signals1. 58-dev in ubuntu wily.
- libboost-signals1.58-dev-dbgsym: debug symbols for package libboost-signals1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
Signals represent callbacks with multiple targets, and are also
called publishers or events in similar systems. Signals are connected
to some set of slots, which are callback receivers (also called event
targets or subscribers), which are called when the signal is
"emitted."
- libboost-signals1.58.0: No summary available for libboost-signals1.58.0 in ubuntu wily.
No description available for libboost-
signals1. 58.0 in ubuntu wily.
- libboost-signals1.58.0-dbgsym: No summary available for libboost-signals1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
signals1. 58.0-dbgsym in ubuntu wily.
- libboost-system1.58-dev: No summary available for libboost-system1.58-dev in ubuntu wily.
No description available for libboost-
system1. 58-dev in ubuntu wily.
- libboost-system1.58-dev-dbgsym: No summary available for libboost-system1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
system1. 58-dev- dbgsym in ubuntu wily.
- libboost-system1.58.0: No summary available for libboost-system1.58.0 in ubuntu wily.
No description available for libboost-
system1. 58.0 in ubuntu wily.
- libboost-system1.58.0-dbgsym: No summary available for libboost-system1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
system1. 58.0-dbgsym in ubuntu wily.
- libboost-test1.58-dev: components for writing and executing test suites
This package forms part of the Boost C++ Libraries collection. The
library contains several components.
.
* Basic execution, error detection, and reporting facility.
* Facilities to monitor program execution and produce error reports.
* Unit test framework to simplify writing test cases.
- libboost-test1.58-dev-dbgsym: No summary available for libboost-test1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
test1.58- dev-dbgsym in ubuntu wily.
- libboost-test1.58.0: No summary available for libboost-test1.58.0 in ubuntu wily.
No description available for libboost-test1.58.0 in ubuntu wily.
- libboost-test1.58.0-dbgsym: No summary available for libboost-test1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
test1.58. 0-dbgsym in ubuntu wily.
- libboost-thread1.58-dev: portable C++ multi-threading
This package forms part of the Boost C++ Libraries collection.
.
Toolkit for writing C++ programs that execute as multiple,
asynchronous, independent, threads-of-execution. Each thread has its
own machine state including program instruction counter and
registers.
- libboost-thread1.58-dev-dbgsym: No summary available for libboost-thread1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
thread1. 58-dev- dbgsym in ubuntu wily.
- libboost-thread1.58.0: No summary available for libboost-thread1.58.0 in ubuntu wily.
No description available for libboost-
thread1. 58.0 in ubuntu wily.
- libboost-thread1.58.0-dbgsym: No summary available for libboost-thread1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
thread1. 58.0-dbgsym in ubuntu wily.
- libboost-timer1.58-dev: No summary available for libboost-timer1.58-dev in ubuntu wily.
No description available for libboost-
timer1. 58-dev in ubuntu wily.
- libboost-timer1.58-dev-dbgsym: debug symbols for package libboost-timer1.58-dev
This package forms part of the Boost C++ Libraries collection.
.
Portable C++ timer classes that answer the question "How long does my
C++ code take to run?" with as little as one #include and one
additional line of code.
.
Class cpu_timer measures wall clock time, user CPU process time, and
system CPU process time. Class auto_cpu_timer is a refinement of
cpu_timer that automatically reports the elapsed times when an
auto_cpu_timer object is destroyed.
- libboost-timer1.58.0: C++ wall clock and CPU process timers
This package forms part of the Boost C++ Libraries collection.
.
Portable C++ timer classes that answer the question "How long does my
C++ code take to run?" with as little as one #include and one
additional line of code.
.
Class cpu_timer measures wall clock time, user CPU process time, and
system CPU process time. Class auto_cpu_timer is a refinement of
cpu_timer that automatically reports the elapsed times when an
auto_cpu_timer object is destroyed.
- libboost-timer1.58.0-dbgsym: No summary available for libboost-timer1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
timer1. 58.0-dbgsym in ubuntu wily.
- libboost-wave1.58-dev: No summary available for libboost-wave1.58-dev in ubuntu wily.
No description available for libboost-
wave1.58- dev in ubuntu wily.
- libboost-wave1.58-dev-dbgsym: No summary available for libboost-wave1.58-dev-dbgsym in ubuntu wily.
No description available for libboost-
wave1.58- dev-dbgsym in ubuntu wily.
- libboost-wave1.58.0: No summary available for libboost-wave1.58.0 in ubuntu wily.
No description available for libboost-wave1.58.0 in ubuntu wily.
- libboost-wave1.58.0-dbgsym: No summary available for libboost-wave1.58.0-dbgsym in ubuntu wily.
No description available for libboost-
wave1.58. 0-dbgsym in ubuntu wily.
- libboost1.58-dbg: No summary available for libboost1.58-dbg in ubuntu wily.
No description available for libboost1.58-dbg in ubuntu wily.
- libboost1.58-dev: No summary available for libboost1.58-dev in ubuntu wily.
No description available for libboost1.58-dev in ubuntu wily.
- libboost1.58-dev-dbgsym: debug symbols for package libboost1.58-dev
The Boost web site provides free, peer-reviewed, portable C++ source
libraries. The emphasis is on libraries which work well with the C++
Standard Library. One goal is to establish "existing practice" and
provide reference implementations so that the Boost libraries are
suitable for eventual standardization. Some of the libraries have
already been proposed for inclusion in the C++ Standards Committee's
upcoming C++ Standard Library Technical Report.
.
This package provides headers for all Boost libraries.
.
Extended precision arithmetic package libmpfrc++-dev or libntl-dev is
required to use the Boost.Multiprecision wrapping of the respective
library.
.
For the following subprojects separate packages exist: chrono,
date-time, exception filesystem, graph, iostreams, locale, math, mpi,
program_options, python, regex, serialization, signals, system, test,
thread, timer, and wave.
- libboost1.58-doc: Boost.org libraries documentation
The Boost web site provides free, peer-reviewed, portable C++ source
libraries. The emphasis is on libraries which work well with the C++
Standard Library. One goal is to establish "existing practice" and
provide reference implementations so that the Boost libraries are
suitable for eventual standardization. Some of the libraries have
already been proposed for inclusion in the C++ Standards Committee's
upcoming C++ Standard Library Technical Report.
.
This is documentation for the boost libraries in HTML format.
Some pages point to header files provided in the corresponding -dev package,
so it is suggested to install the latter as well.
- libboost1.58-tools-dev: No summary available for libboost1.58-tools-dev in ubuntu wily.
No description available for libboost1.
58-tools- dev in ubuntu wily.
- libboost1.58-tools-dev-dbgsym: No summary available for libboost1.58-tools-dev-dbgsym in ubuntu wily.
No description available for libboost1.
58-tools- dev-dbgsym in ubuntu wily.