Fix all building errors

avx_docs
Yi Wang 8 years ago
parent f9f2741fd0
commit 6a9891703c

@ -12,15 +12,15 @@ new_http_archive(
url="https://github.com/google/googletest/archive/release-1.7.0.zip",
sha256="b58cb7547a28b2c718d1e38aee18a3659c9e3ff52440297e965f5edffe34b6d0",
build_file="third_party/gtest.BUILD",
strip_prefix = "googletest-release-1.7.0",
)
strip_prefix="googletest-release-1.7.0", )
# External dependency to gflags. This method comes from
# https://github.com/gflags/example/blob/master/WORKSPACE.
git_repository(
new_git_repository(
name="gflags",
tag="v2.2.0",
remote = "https://github.com/gflags/gflags.git"
remote="https://github.com/gflags/gflags.git",
build_file="third_party/gflags.BUILD",
)
# External dependency to glog. This method comes from
@ -29,5 +29,4 @@ new_git_repository(
name="glog",
remote="https://github.com/google/glog.git",
commit="b6a5e0524c28178985f0d228e9eaa43808dbec3c",
build_file = "third_party/glog.BUILD"
)
build_file="third_party/glog.BUILD")

@ -0,0 +1,12 @@
# Bazel (http://bazel.io/) BUILD file for gflags.
#
# See INSTALL.md for instructions for adding gflags to a Bazel workspace.
licenses(["notice"])
exports_files(["src/gflags_complections.sh", "COPYING.txt"])
load(":bazel/gflags.bzl", "gflags_sources", "gflags_library")
(hdrs, srcs) = gflags_sources(namespace=["google", "gflags"])
gflags_library(hdrs=hdrs, srcs=srcs, threads=0)
gflags_library(hdrs=hdrs, srcs=srcs, threads=1)

@ -3,10 +3,6 @@ licenses(["notice"])
cc_library(
visibility = ["//visibility:public"],
name = "glog",
deps = [
#"//third_party/libunwind:libunwind-k8",
"@gflags//:gflags",
],
includes = [
".",
"src",
@ -24,9 +20,6 @@ cc_library(
"-DHAVE_INTTYPES_H",
"-DHAVE_LIBPTHREAD",
"-DHAVE_SYS_SYSCALL_H",
#"-DHAVE_LIBUNWIND_H",
"-DHAVE_LIB_GFLAGS",
#"-DHAVE_LIB_UNWIND",
"-DHAVE_MEMORY_H",
"-DHAVE_NAMESPACES",
"-DHAVE_PREAD",
@ -51,7 +44,6 @@ cc_library(
#"-fno-sanitize=thread",
#"-fno-sanitize=address",
"-Iexternal/glog/src",
#"-I/usr/local/include", # XXX import libunwind
],
srcs = [
"src/demangle.cc",
@ -71,7 +63,6 @@ cc_library(
"src/demangle.h",
"src/mock-log.h",
"src/stacktrace.h",
#"src/stacktrace_libunwind-inl.h",
"src/symbolize.h",
"src/utilities.h",
"src/base/commandlineflags.h",
@ -79,10 +70,6 @@ cc_library(
"src/base/mutex.h",
"src/glog/log_severity.h",
],
linkopts = [
#"-pthread",
#"-L/usr/local/lib -lunwind",
],
)
genrule(

@ -0,0 +1,11 @@
licenses(["notice"]) # Apache 2.0
cc_test(
name = "glog_test",
srcs = ["glog_test.cc"],
copts = ["-Iexternal/gtest/include"],
deps =[
"@gtest//:gtest",
"@glog//:glog",
],
)

@ -0,0 +1,9 @@
#include <iostream>
#include <string>
#include "glog/logging.h"
#include "gtest/gtest.h"
TEST(GlogTest, Logging) {
LOG(INFO) << "Hello world";
}
Loading…
Cancel
Save