platform/upstream/glog.git
7 years agoUpdate github.com/sergiud in AUTHORS/CONTRIBUTORS
Fumitoshi Ukai [Thu, 20 Oct 2016 06:52:27 +0000 (15:52 +0900)]
Update github.com/sergiud in AUTHORS/CONTRIBUTORS

7 years agoMerge pull request #132 from sergiud/cmake-disable-unittests
Fumitoshi Ukai [Wed, 19 Oct 2016 07:40:55 +0000 (16:40 +0900)]
Merge pull request #132 from sergiud/cmake-disable-unittests

cmake: allow to disable building unit tests

7 years agocmake: allow to disable building unit tests
Sergiu Deitsch [Wed, 19 Oct 2016 07:28:19 +0000 (09:28 +0200)]
cmake: allow to disable building unit tests

This commit introduces a CMake `BUILD_TESTING` boolean option that
allows to disable unit tests. This is especially useful in superbuilds
where typically only the main library is built. By default, this option
is enabled.

7 years agoMerge pull request #127 from MinGW-caffe/master
Fumitoshi Ukai [Wed, 19 Oct 2016 07:29:34 +0000 (16:29 +0900)]
Merge pull request #127 from MinGW-caffe/master

try to avoid the error "conflicting declaration 'typedef DWORD pthread_t'" etc. in MinGW

7 years agoAdd MiniLight to AUTHORS/CONTRIBUTORS
Fumitoshi Ukai [Wed, 19 Oct 2016 07:28:53 +0000 (16:28 +0900)]
Add MiniLight to AUTHORS/CONTRIBUTORS

7 years agoMerge pull request #123 from yying/master
Fumitoshi Ukai [Wed, 19 Oct 2016 07:10:39 +0000 (16:10 +0900)]
Merge pull request #123 from yying/master

Set sinks_ to NULL after deletion in LogDestination::DeleteLogDestinations

7 years agoAdd Andy Ying to AUTHORS/CONTRIBUTORS
Fumitoshi Ukai [Wed, 19 Oct 2016 07:09:41 +0000 (16:09 +0900)]
Add Andy Ying to AUTHORS/CONTRIBUTORS

7 years agoMerge pull request #116 from pcc/fix2
Fumitoshi Ukai [Wed, 19 Oct 2016 07:06:38 +0000 (16:06 +0900)]
Merge pull request #116 from pcc/fix2

Fix autotools build.

7 years agoMerge pull request #98 from willyd/relocatable
Fumitoshi Ukai [Wed, 19 Oct 2016 07:02:49 +0000 (16:02 +0900)]
Merge pull request #98 from willyd/relocatable

Added $<BUILD_INTERFACE> to gflags include directory

7 years agoAdd Guillaume Dumont to AUTHORS/CONTRIBUTORS
Fumitoshi Ukai [Wed, 19 Oct 2016 06:59:24 +0000 (15:59 +0900)]
Add Guillaume Dumont to AUTHORS/CONTRIBUTORS

7 years agoMerge pull request #129 from sergiud/cmake-PIC
Fumitoshi Ukai [Wed, 19 Oct 2016 06:52:32 +0000 (15:52 +0900)]
Merge pull request #129 from sergiud/cmake-PIC

cmake: enable position independent code (PIC)

7 years agoMerge pull request #130 from sergiud/cmake-warning-fix
Fumitoshi Ukai [Wed, 19 Oct 2016 06:51:45 +0000 (15:51 +0900)]
Merge pull request #130 from sergiud/cmake-warning-fix

cmake: fixed clang warning propagation to gcc

7 years agocmake: fixed clang warning propagation to gcc
Sergiu Deitsch [Fri, 7 Oct 2016 09:03:19 +0000 (11:03 +0200)]
cmake: fixed clang warning propagation to gcc

7 years agocmake: enable position independent code (PIC)
Sergiu Deitsch [Fri, 7 Oct 2016 08:54:14 +0000 (10:54 +0200)]
cmake: enable position independent code (PIC)

7 years agotry to avoid the error "conflicting declaration 'typedef DWORD
MiniLight [Sun, 2 Oct 2016 16:38:15 +0000 (00:38 +0800)]
try to avoid the error "conflicting declaration 'typedef DWORD
pthread_t'" etc.

7 years agoNULL sinks_ after deletion to prevent dangling pointer
Andy Ying [Sun, 11 Sep 2016 05:16:32 +0000 (01:16 -0400)]
NULL sinks_ after deletion to prevent dangling pointer

7 years agoAdd Peter Collingbourne <pcc@google.com> to CONTRIBUTORS
Fumitoshi Ukai [Thu, 14 Jul 2016 01:47:13 +0000 (10:47 +0900)]
Add Peter Collingbourne <pcc@google.com> to CONTRIBUTORS

7 years agoMerge pull request #115 from pcc/fix1
Fumitoshi Ukai [Thu, 14 Jul 2016 01:44:18 +0000 (10:44 +0900)]
Merge pull request #115 from pcc/fix1

symbolize: Calculate a module's zero VA using program headers.

7 years agoFix autotools build.
Peter Collingbourne [Thu, 23 Jun 2016 01:34:48 +0000 (18:34 -0700)]
Fix autotools build.

It looks like commit 3c49b93 modified the auto-generated file src/config.h.in
to add a definition of macro GOOGLE_GLOG_DLL_DECL. One of the autotools
reverts this change upon running "make", causing the build to fail when a
source file includes demangle.h.

To fix the problem, revert the change to src/config.h.in and include
glog/logging.h from demangle.h which provides a definition of that macro.

7 years agosymbolize: Calculate a module's zero VA using program headers.
Peter Collingbourne [Thu, 23 Jun 2016 01:18:06 +0000 (18:18 -0700)]
symbolize: Calculate a module's zero VA using program headers.

Previously we were using a module's "start address", i.e. the
address at which the module's executable region was mapped, as the
zero virtual address, i.e. the address from which the DSO's virtual
addresses are calculated. This works fine for DSOs created by the
bfd and gold linkers, which will emit a PT_LOAD directive into the
program header which loads the executable region at virtual address
(p_vaddr) and file offset (p_offset) 0.

However, the lld linker may place a read-only region before the
executable region, meaning that both p_vaddr and p_offset for the
executable region are non-zero. This means that any symbols resolved
by the symbolizer are resolved to an incorrect virtual address. To
correctly calculate the address corresponding to virtual address zero,
we need to take into account p_vaddr and p_offset.

Specifically, the calculation starts with the "base address", i.e. the
start address minus the file offset. To get from the base address to
virtual address zero, we first add p_offset. This gives us the mapped
address of the start of the segment, or in other words the mapped
address corresponding to the virtual address of the segment. (Note
that this is distinct from the start address, as p_offset is not
guaranteed to be page aligned.) We then subtract p_vaddr, which takes
us to virtual address zero.

7 years agoCache strlen outside of cycles (PVS-Studio)
dimhotepus [Sat, 30 Apr 2016 11:24:12 +0000 (14:24 +0300)]
Cache strlen outside of cycles (PVS-Studio)

8 years agoMerge pull request #101 from yasushi-saito/master
Fumitoshi Ukai [Fri, 15 Apr 2016 08:05:30 +0000 (17:05 +0900)]
Merge pull request #101 from yasushi-saito/master

Allow permission line in /proc/self/map to be "rwx", not just "r-x".

8 years agoMerge pull request #91 from abdasgupta/master
Fumitoshi Ukai [Wed, 13 Apr 2016 05:00:49 +0000 (14:00 +0900)]
Merge pull request #91 from abdasgupta/master

Added support for PowerPC.

8 years agoMerge pull request #82 from sergiud/cmake-imported-target
Fumitoshi Ukai [Wed, 13 Apr 2016 04:59:08 +0000 (13:59 +0900)]
Merge pull request #82 from sergiud/cmake-imported-target

Better support and documentation for CMake projects that consume glog

8 years agoAllow permission line in /proc/self/map to be "rwx", not just "r-x". At
Yaz Saito on W541 [Mon, 11 Apr 2016 21:35:42 +0000 (14:35 -0700)]
Allow permission line in /proc/self/map to be "rwx", not just "r-x". At
least in Ubuntu14, a binary file that's writable by the process owner
has permission "rwx", not "r-x".

8 years agoAdded $<BUILD_INTERFACE> to gflags include to avoid including the gflags include...
Guillaume Dumont [Tue, 5 Apr 2016 18:02:42 +0000 (14:02 -0400)]
Added $<BUILD_INTERFACE> to gflags include to avoid including the gflags include dir in the glog-targets.cmake

8 years agoMerge pull request #96 from mayah/update-windows
Fumitoshi Ukai [Thu, 31 Mar 2016 08:50:09 +0000 (17:50 +0900)]
Merge pull request #96 from mayah/update-windows

Update src/windows/glog/logging.h to ToT

8 years agoRun src/windows/preprocess.sh
mayah [Thu, 31 Mar 2016 08:29:36 +0000 (17:29 +0900)]
Run src/windows/preprocess.sh

src/windows/glog/logging.h is not generated by the current source.
Let me run src/windows/preprocess.sh and update the source.

8 years agoAdded support for PowerPC.
Abhishek Dasgupta [Wed, 16 Mar 2016 09:28:18 +0000 (05:28 -0400)]
Added support for PowerPC.

8 years agoadded CMake usage instructions
Sergiu Dotenco [Fri, 8 Jan 2016 14:21:24 +0000 (15:21 +0100)]
added CMake usage instructions

8 years agocmake: allow to refer to imported glog target as glog::glog
Sergiu Dotenco [Fri, 8 Jan 2016 13:55:58 +0000 (14:55 +0100)]
cmake: allow to refer to imported glog target as glog::glog

8 years agouse namespace GFLAGS_NAMESPACE instead namespace gflags
Fumitoshi Ukai [Thu, 17 Dec 2015 07:31:55 +0000 (16:31 +0900)]
use namespace GFLAGS_NAMESPACE instead namespace gflags

only signalhandler_unittest.cc uses "using namespace gflags".
others use "using namespace GFLAGS_NAMESPACE", so
signalhandler_unittest.cc does the same way.

fixes #62

8 years agowin: use _fdopen instead of fdopen
Fumitoshi Ukai [Thu, 17 Dec 2015 06:40:25 +0000 (15:40 +0900)]
win: use _fdopen instead of fdopen

The POSIX function fdopen is deprecated.
Use the ISO C++ conformant _fdopen instead.
https://msdn.microsoft.com/library/ms235351.aspx

fixes #73

8 years agowin: FAILED macro can't be used with HANDLE.
Fumitoshi Ukai [Thu, 17 Dec 2015 06:36:40 +0000 (15:36 +0900)]
win: FAILED macro can't be used with HANDLE.

FAILED macro is for HRESULT, not for HANDLE.
FindFirstFile returns INVALID_HANDLE_VALUE when error or not found.
https://msdn.microsoft.com/library/windows/desktop/aa364418(v=vs.85).aspx

fixes #79

8 years agoavoid calling new/malloc in signalhandler.
Fumitoshi Ukai [Thu, 17 Dec 2015 06:26:15 +0000 (15:26 +0900)]
avoid calling new/malloc in signalhandler.

FlushLogFilesUnsafe would be called in FailureSignalHandler,
so should avoid calling new/malloc, which are not signal safe.

fixes #78

8 years agoMerge pull request #74 from yoshisatoyanagisawa/fix_sigabrt_action
Fumitoshi Ukai [Fri, 27 Nov 2015 04:18:55 +0000 (13:18 +0900)]
Merge pull request #74 from yoshisatoyanagisawa/fix_sigabrt_action

Reset SIGABRT action only if FailureSignalHandler is installed.

8 years agoReset SIGABRT action only if FailureSignalHandler is installed.
Yoshisato Yanagisawa [Wed, 18 Nov 2015 06:40:12 +0000 (15:40 +0900)]
Reset SIGABRT action only if FailureSignalHandler is installed.

When I set my own signal handler to SIGABRT, it did not executed
with CHECK.  That is because SIGABRT handler is reset to default
just before glog calls abort.
Let me make it reset only if the handler is what glog installed
i.e. FailureSignalHandler.

8 years agoMerge pull request #58 from ruslo/fix.include
Fumitoshi Ukai [Tue, 10 Nov 2015 08:11:29 +0000 (17:11 +0900)]
Merge pull request #58 from ruslo/fix.include

Fix missing public include directory

8 years agoMerge pull request #56 from rhencke/fix-test
Fumitoshi Ukai [Tue, 10 Nov 2015 08:10:29 +0000 (17:10 +0900)]
Merge pull request #56 from rhencke/fix-test

Fix double-free in unit test on Windows.

8 years agoMerge pull request #51 from flandr/pthread-cmake-build
Fumitoshi Ukai [Tue, 10 Nov 2015 08:05:10 +0000 (17:05 +0900)]
Merge pull request #51 from flandr/pthread-cmake-build

Link libpthread when necessary in CMake builds

8 years agoFix missing public include directory
Ruslan Baratov [Tue, 8 Sep 2015 21:33:31 +0000 (00:33 +0300)]
Fix missing public include directory

Path "<prefix>/include" will not be added to the headers search of dependent
targets without specifying INSTALL_INTERFACE, i.e. compilation
will fail with error:

  "fatal error: 'glog/logging.h' file not found".

8 years agoAdd pthread library to linker list when needed
Nate Rosenblum [Sun, 6 Sep 2015 15:09:29 +0000 (08:09 -0700)]
Add pthread library to linker list when needed

8 years agoFix double-free in unit test on Windows.
Robert Hencke [Sun, 6 Sep 2015 13:53:22 +0000 (09:53 -0400)]
Fix double-free in unit test on Windows.

The LOG_SYSRESULT refers to result twice.  Since, in this test,
result expands to FindClose(handle), the handle was being freed twice.

8 years agoMerge pull request #49 from sergiud/cmake-visibility
Fumitoshi Ukai [Wed, 12 Aug 2015 07:10:40 +0000 (16:10 +0900)]
Merge pull request #49 from sergiud/cmake-visibility

Fixed warning caused by policy CMP0063 introduced in CMake 3.3

8 years agoMerge pull request #47 from sergiud/master
Fumitoshi Ukai [Wed, 12 Aug 2015 07:09:02 +0000 (16:09 +0900)]
Merge pull request #47 from sergiud/master

Allow to disable multithreading support using CMake

8 years agoAdd Teddy Reed to AUTHORS/CONTRIBUTORS
Fumitoshi Ukai [Wed, 12 Aug 2015 07:06:34 +0000 (16:06 +0900)]
Add Teddy Reed to AUTHORS/CONTRIBUTORS

8 years agoMerge pull request #26 from theopolis/feature-mode-flag
Fumitoshi Ukai [Wed, 12 Aug 2015 07:05:28 +0000 (16:05 +0900)]
Merge pull request #26 from theopolis/feature-mode-flag

[#23] Add logfile_mode to control logfile permissions

8 years agocmake: fixed warning caused by policy CMP0063
Sergiu Dotenco [Tue, 11 Aug 2015 16:56:28 +0000 (18:56 +0200)]
cmake: fixed warning caused by policy CMP0063

8 years ago[#23] Add logfile_mode to control logfile permissions
Teddy Reed [Wed, 13 May 2015 06:22:24 +0000 (23:22 -0700)]
[#23] Add logfile_mode to control logfile permissions

8 years agocmake: allow to disable multithreading support
Sergiu Dotenco [Sat, 8 Aug 2015 17:07:07 +0000 (19:07 +0200)]
cmake: allow to disable multithreading support

This commit additionally enables threading for win32 by default.

8 years agoMerge pull request #35 from bsilver8192/fix-mocklog-unused-arguments
Fumitoshi Ukai [Thu, 6 Aug 2015 08:17:55 +0000 (17:17 +0900)]
Merge pull request #35 from bsilver8192/fix-mocklog-unused-arguments

Fix mocklog unused arguments

8 years agoMerge pull request #34 from bsilver8192/fix-macro-redefinition
Fumitoshi Ukai [Thu, 6 Aug 2015 08:15:44 +0000 (17:15 +0900)]
Merge pull request #34 from bsilver8192/fix-macro-redefinition

Fix redefinition of _XOPEN_SOURCE.

8 years agoAdd tomange to AUTHORS/CONTRIBUTORS
Fumitoshi Ukai [Thu, 6 Aug 2015 08:10:21 +0000 (17:10 +0900)]
Add tomange to AUTHORS/CONTRIBUTORS

8 years agoMerge pull request #20 from UbimoLTD/patch-1
Fumitoshi Ukai [Thu, 6 Aug 2015 08:09:02 +0000 (17:09 +0900)]
Merge pull request #20 from UbimoLTD/patch-1

Don't call RAW_VLOG with locking vmodule_lock

SetVLOGLevel locks vmodule_lock however RAW_VLOG at the end also implicitly locks it via InitVLOG3__.
This causes deadlock/segfault.

fixes #29

8 years agoMerge pull request #12 from ukai/fix_leak
Fumitoshi Ukai [Thu, 6 Aug 2015 07:57:51 +0000 (16:57 +0900)]
Merge pull request #12 from ukai/fix_leak

delete LogDestination::sinks_ at DeleteLogDestinations().

fixes #8

8 years agoAdd Sergiu Dotenco to AUTHORS/CONTRIBUTORS
Fumitoshi Ukai [Thu, 6 Aug 2015 07:55:37 +0000 (16:55 +0900)]
Add Sergiu Dotenco to AUTHORS/CONTRIBUTORS

8 years agoMerge pull request #7 from sergiud/master
Fumitoshi Ukai [Thu, 6 Aug 2015 07:53:55 +0000 (16:53 +0900)]
Merge pull request #7 from sergiud/master

Add CMake support. closes #4

8 years agoAdd Michael Tanner and tbennun to AUTORS/CONTRIBUTORS
Fumitoshi Ukai [Thu, 6 Aug 2015 07:45:44 +0000 (16:45 +0900)]
Add Michael Tanner and tbennun to AUTORS/CONTRIBUTORS

8 years agocmake: link to libunwind
Sergiu Dotenco [Tue, 21 Apr 2015 14:11:25 +0000 (16:11 +0200)]
cmake: link to libunwind

8 years agocmake: support gflags in static builds
Sergiu Dotenco [Mon, 20 Apr 2015 20:51:42 +0000 (22:51 +0200)]
cmake: support gflags in static builds

8 years agocmake: disabled 'template argument uses unnamed type' warning
Sergiu Dotenco [Fri, 27 Mar 2015 17:12:24 +0000 (18:12 +0100)]
cmake: disabled 'template argument uses unnamed type' warning

8 years agoadded missing include
Sergiu Dotenco [Thu, 26 Mar 2015 14:57:21 +0000 (15:57 +0100)]
added missing include

8 years agofixed vc 14.0 ctp 6 compilation error
Sergiu Dotenco [Thu, 26 Mar 2015 14:54:33 +0000 (15:54 +0100)]
fixed vc 14.0 ctp 6 compilation error

8 years agodetermine gflags namespace automatically
Sergiu Dotenco [Thu, 26 Mar 2015 14:52:15 +0000 (15:52 +0100)]
determine gflags namespace automatically

8 years agodo not redefine snprintf if it's already available
Sergiu Dotenco [Thu, 26 Mar 2015 14:59:00 +0000 (15:59 +0100)]
do not redefine snprintf if it's already available

8 years agodo not redefine stl logging macros
Sergiu Dotenco [Thu, 26 Mar 2015 14:58:01 +0000 (15:58 +0100)]
do not redefine stl logging macros

8 years agoallow to define TEST_SRC_DIR as a macro
Sergiu Dotenco [Thu, 26 Mar 2015 14:56:33 +0000 (15:56 +0100)]
allow to define TEST_SRC_DIR as a macro

8 years agoallow to use __declspec(noreturn)
Sergiu Dotenco [Thu, 26 Mar 2015 14:55:37 +0000 (15:55 +0100)]
allow to use __declspec(noreturn)

8 years agoexport the Demangle function
Sergiu Dotenco [Thu, 26 Mar 2015 14:50:47 +0000 (15:50 +0100)]
export the Demangle function

8 years agoadded cmake support
Sergiu Dotenco [Thu, 26 Mar 2015 14:48:56 +0000 (15:48 +0100)]
added cmake support

8 years agoFix redefinition of _XOPEN_SOURCE.
Brian Silverman [Tue, 16 Jun 2015 23:50:25 +0000 (16:50 -0700)]
Fix redefinition of _XOPEN_SOURCE.

Under Debian Jessie, I get a warning about redefining _XOPEN_SOURCE
which is easy to fix.

8 years agoFix unused arguments warning in ScopedMockLog.
Brian Silverman [Tue, 16 Jun 2015 23:50:01 +0000 (16:50 -0700)]
Fix unused arguments warning in ScopedMockLog.

8 years agoAdd Brian Silverman to AUTHORS+CONTRIBUTORS.
Brian Silverman [Tue, 16 Jun 2015 23:49:53 +0000 (16:49 -0700)]
Add Brian Silverman to AUTHORS+CONTRIBUTORS.

8 years agoUpdate vlog_is_on.cc
romange [Thu, 30 Apr 2015 17:28:32 +0000 (20:28 +0300)]
Update vlog_is_on.cc

SetVLOGLevel locks vmodule_lock however RAW_VLOG at the end also implicitly locks it via InitVLOG3__.

This causes deadlock/segfault.

9 years agoAdd Abhishek Parmar to the AUTHORS/CONTRIBUTORS files.
Pierre Phaneuf [Thu, 23 Apr 2015 10:41:53 +0000 (11:41 +0100)]
Add Abhishek Parmar to the AUTHORS/CONTRIBUTORS files.

9 years agodon't remove sinks_ elements.
Fumitoshi Ukai [Fri, 10 Apr 2015 15:05:05 +0000 (00:05 +0900)]
don't remove sinks_ elements.

9 years agoGuard GOOGLE_PREDICT_TRUE|FALS with #ifndef to avoid collision with other google...
Abhishek Parmar [Wed, 8 Apr 2015 17:19:06 +0000 (10:19 -0700)]
Guard GOOGLE_PREDICT_TRUE|FALS with #ifndef to avoid collision with other google opensource projects like protobuf.

9 years agodelete LogDestination::sinks_ at DeleteLogDestinations().
Fumitoshi Ukai [Fri, 27 Mar 2015 08:23:20 +0000 (17:23 +0900)]
delete LogDestination::sinks_ at DeleteLogDestinations().

fixes #8 AddLogSink memory leak

9 years agoMerge pull request #10 from jmr/std_vector
Fumitoshi Ukai [Fri, 27 Mar 2015 07:43:58 +0000 (16:43 +0900)]
Merge pull request #10 from jmr/std_vector

LOG_STRING: use std::vector and std::string.

9 years agoLOG_STRING: use std::vector and std::string.
Jesse Rosenstock [Thu, 26 Mar 2015 18:25:14 +0000 (14:25 -0400)]
LOG_STRING: use std::vector and std::string.

Previously, plain vector and string were used.
This assumed that there were "using" directives or
declarations before the macro was used.  This will
not always be the case.

9 years agoMerge pull request #6 from darkwind-mt/master
Fumitoshi Ukai [Thu, 26 Mar 2015 08:51:44 +0000 (17:51 +0900)]
Merge pull request #6 from darkwind-mt/master

Adds color output support for tmux terminals

9 years agoAdds color output support for tmux terminals
Michael Tanner [Mon, 23 Mar 2015 10:56:04 +0000 (10:56 +0000)]
Adds color output support for tmux terminals

9 years agoMerge pull request #2 from tbennun/master
Fumitoshi Ukai [Wed, 18 Mar 2015 05:54:40 +0000 (14:54 +0900)]
Merge pull request #2 from tbennun/master

Fix x64/Debug build on MSVS

9 years agoAdd the typical Google contributors and authors files.
Pierre Phaneuf [Mon, 16 Mar 2015 10:50:32 +0000 (10:50 +0000)]
Add the typical Google contributors and authors files.

Also add a CONTRIBUTING.md, that GitHub will link to in the pull request
creation page.

9 years agoFix x64/Debug build on MSVS
tbennun [Fri, 13 Mar 2015 05:56:59 +0000 (07:56 +0200)]
Fix x64/Debug build on MSVS

9 years agoMerge pull request #1 from ukai/release_0.3.4
Fumitoshi Ukai [Wed, 11 Mar 2015 04:02:27 +0000 (13:02 +0900)]
Merge pull request #1 from ukai/release_0.3.4

glog: release 0.3.4

9 years agoFix for "make rpm" and "make deb"
Fumitoshi Ukai [Tue, 10 Mar 2015 03:44:30 +0000 (12:44 +0900)]
Fix for "make rpm" and "make deb"

9 years agoglog: release 0.3.4
Fumitoshi Ukai [Mon, 9 Mar 2015 02:36:31 +0000 (11:36 +0900)]
glog: release 0.3.4

migrate to https://github.com/google/glog
use autoconf 2.69 / automake 1.14.1

9 years agoFixes for the latest MSVS.
<shinichiro.hamaji@gmail.com> [Tue, 19 Aug 2014 00:36:29 +0000 (00:36 +0000)]
Fixes for the latest MSVS.

- ssize_t
Since Windows does not have ssize_t, we need to include BaseTsd.h and
use SSIZE_t instead.

- include algorithm
MSVS 2013 requests developers to include algorithm when they use
std::min.

By yyanagisawa

git-svn-id: https://google-glog.googlecode.com/svn/trunk@143 eb4d4688-79bd-11dd-afb4-1d65580434c0

10 years agoAdd libc++ support
<shinichiro.hamaji@gmail.com> [Wed, 5 Mar 2014 05:20:24 +0000 (05:20 +0000)]
Add libc++ support

Similar patch was provided in

https://code.google.com/p/google-glog/issues/detail?id=121

git-svn-id: https://google-glog.googlecode.com/svn/trunk@142 eb4d4688-79bd-11dd-afb4-1d65580434c0

10 years agoBuild issues in demangle.cc
<ivanpe@chromium.com> [Sun, 2 Mar 2014 01:37:08 +0000 (01:37 +0000)]
Build issues in demangle.cc

git-svn-id: https://google-glog.googlecode.com/svn/trunk@141 eb4d4688-79bd-11dd-afb4-1d65580434c0

10 years agoAdding a callback mechanism to allow users of google.glog to provide
<ivanpe@chromium.com> [Sat, 1 Mar 2014 00:33:41 +0000 (00:33 +0000)]
Adding a callback mechanism to allow users of google.glog to provide
their own implementation of  OpenObjectFileContainingPcAndGetStartAddress.

GTTF: Make stack trace symbolization code recognize more symbols.
One example is __libc_start_main (easy to check), there may be more.

Include the correct elf header on OpenBSD and Android.

Fix Coverity NO_EFFECT defect. Comparing unsigned greater than or equal zero is always true.

git-svn-id: https://google-glog.googlecode.com/svn/trunk@140 eb4d4688-79bd-11dd-afb4-1d65580434c0

10 years agoAdd StrError and replace posix_strerror_r calls
<shinichiro.hamaji@gmail.com> [Thu, 31 Oct 2013 05:39:43 +0000 (05:39 +0000)]
Add StrError and replace posix_strerror_r calls

For now, we do not remove the declaration of posix_strerror_r,
but we might remove it in future.

git-svn-id: https://google-glog.googlecode.com/svn/trunk@139 eb4d4688-79bd-11dd-afb4-1d65580434c0

10 years agoFix VC build by adding GOOGLE_GLOG_DLL_DECL
<shinichiro.hamaji@gmail.com> [Thu, 31 Oct 2013 05:36:25 +0000 (05:36 +0000)]
Fix VC build by adding GOOGLE_GLOG_DLL_DECL

git-svn-id: https://google-glog.googlecode.com/svn/trunk@138 eb4d4688-79bd-11dd-afb4-1d65580434c0

10 years agoA style fix for C++11
<shinichiro.hamaji@gmail.com> [Mon, 29 Jul 2013 06:27:17 +0000 (06:27 +0000)]
A style fix for C++11

This patch is given by Nico (thanks!)

git-svn-id: https://google-glog.googlecode.com/svn/trunk@137 eb4d4688-79bd-11dd-afb4-1d65580434c0

10 years agoReduce dynamic allocation from 3 to 1 per log message
<shinichiro.hamaji@gmail.com> [Wed, 29 May 2013 14:10:49 +0000 (14:10 +0000)]
Reduce dynamic allocation from 3 to 1 per log message

This patch was contributed in

https://code.google.com/p/google-glog/issues/detail?id=131

by engel. Thanks!

git-svn-id: https://google-glog.googlecode.com/svn/trunk@136 eb4d4688-79bd-11dd-afb4-1d65580434c0

11 years agoAttempt to improve mingw-w64 support
<shinichiro.hamaji@gmail.com> [Mon, 18 Feb 2013 10:56:53 +0000 (10:56 +0000)]
Attempt to improve mingw-w64 support

- Set -Isrc/windows for mingw
- Check existence of sigaction, pread, and pwrite
- Provide alternative implementation of pread and pwrite
- Eliminate symlink code for OS_WINDOWS
- Don't check /proc/self/fd if the OS isn't linux
- Don't use MSVC specific declarations in port.h for mingw

git-svn-id: https://google-glog.googlecode.com/svn/trunk@135 eb4d4688-79bd-11dd-afb4-1d65580434c0

11 years agoSupport unordered_(map|set) by stl_logging
<shinichiro.hamaji@gmail.com> [Mon, 18 Feb 2013 10:45:46 +0000 (10:45 +0000)]
Support unordered_(map|set) by stl_logging

git-svn-id: https://google-glog.googlecode.com/svn/trunk@134 eb4d4688-79bd-11dd-afb4-1d65580434c0

11 years agoRemove .svn directory from the release archive
<shinichiro.hamaji@gmail.com> [Fri, 1 Feb 2013 06:31:49 +0000 (06:31 +0000)]
Remove .svn directory from the release archive

packages/deb is a directory and it may contain .svn

git-svn-id: https://google-glog.googlecode.com/svn/trunk@133 eb4d4688-79bd-11dd-afb4-1d65580434c0

11 years agoRelease glog 0.3.3
<shinichiro.hamaji@gmail.com> [Fri, 1 Feb 2013 06:20:46 +0000 (06:20 +0000)]
Release glog 0.3.3

git-svn-id: https://google-glog.googlecode.com/svn/trunk@132 eb4d4688-79bd-11dd-afb4-1d65580434c0