Commit 862be4e1 authored by Yiming Jing's avatar Yiming Jing

Link MesaLink in bazel if enabled

parent 4adb6894
...@@ -11,10 +11,10 @@ env: ...@@ -11,10 +11,10 @@ env:
- PURPOSE=unittest - PURPOSE=unittest
- PURPOSE=compile-with-cmake - PURPOSE=compile-with-cmake
- PURPOSE=compile-with-bazel - PURPOSE=compile-with-bazel
- PURPOSE=compile USE_MESALINK=yes - PURPOSE=compile USE_MESALINK=true
- PURPOSE=unittest USE_MESALINK=yes - PURPOSE=unittest USE_MESALINK=true
- PURPOSE=compile-with-cmake USE_MESALINK=yes - PURPOSE=compile-with-cmake USE_MESALINK=true
- PURPOSE=compile-with-bazel USE_MESALINK=yes - PURPOSE=compile-with-bazel USE_MESALINK=true
before_script: before_script:
- ulimit -c unlimited -S # enable core dumps - ulimit -c unlimited -S # enable core dumps
......
...@@ -10,6 +10,12 @@ config_setting( ...@@ -10,6 +10,12 @@ config_setting(
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )
config_setting(
name = "with_mesalink",
define_values = {"with_mesalink": "true"},
visibility = ["//visibility:public"],
)
config_setting( config_setting(
name = "with_thrift", name = "with_thrift",
define_values = {"with_thrift": "true"}, define_values = {"with_thrift": "true"},
...@@ -46,6 +52,9 @@ COPTS = [ ...@@ -46,6 +52,9 @@ COPTS = [
] + select({ ] + select({
":with_glog": ["-DBRPC_WITH_GLOG=1"], ":with_glog": ["-DBRPC_WITH_GLOG=1"],
"//conditions:default": ["-DBRPC_WITH_GLOG=0"], "//conditions:default": ["-DBRPC_WITH_GLOG=0"],
}) + select({
":with_mesalink": ["-DUSE_MESALINK"],
"//conditions:default": [""],
}) + select({ }) + select({
":with_thrift": ["-DENABLE_THRIFT_FRAMED_PROTOCOL=1"], ":with_thrift": ["-DENABLE_THRIFT_FRAMED_PROTOCOL=1"],
"//conditions:default": [""], "//conditions:default": [""],
...@@ -54,7 +63,7 @@ COPTS = [ ...@@ -54,7 +63,7 @@ COPTS = [
LINKOPTS = [ LINKOPTS = [
"-lpthread", "-lpthread",
"-ldl", "-ldl",
"-lz", "-lz",
"-lssl", "-lssl",
"-lcrypto", "-lcrypto",
] + select({ ] + select({
...@@ -73,6 +82,11 @@ LINKOPTS = [ ...@@ -73,6 +82,11 @@ LINKOPTS = [
"//conditions:default": [ "//conditions:default": [
"-lrt", "-lrt",
], ],
}) + select({
":with_mesalink": [
"-lmesalink",
],
"//conditions:default": [],
}) + select({ }) + select({
":with_thrift": [ ":with_thrift": [
"-lthriftnb", "-lthriftnb",
...@@ -236,7 +250,7 @@ objc_library( ...@@ -236,7 +250,7 @@ objc_library(
"src/butil/atomicops.h", "src/butil/atomicops.h",
"src/butil/atomicops_internals_atomicword_compat.h", "src/butil/atomicops_internals_atomicword_compat.h",
"src/butil/atomicops_internals_mac.h", "src/butil/atomicops_internals_mac.h",
"src/butil/base_export.h", "src/butil/base_export.h",
"src/butil/basictypes.h", "src/butil/basictypes.h",
"src/butil/build_config.h", "src/butil/build_config.h",
"src/butil/compat.h", "src/butil/compat.h",
...@@ -270,7 +284,7 @@ objc_library( ...@@ -270,7 +284,7 @@ objc_library(
"src/butil/strings/sys_string_conversions.h", "src/butil/strings/sys_string_conversions.h",
"src/butil/synchronization/lock.h", "src/butil/synchronization/lock.h",
"src/butil/time/time.h", "src/butil/time/time.h",
"src/butil/time.h", "src/butil/time.h",
"src/butil/third_party/dynamic_annotations/dynamic_annotations.h", "src/butil/third_party/dynamic_annotations/dynamic_annotations.h",
"src/butil/threading/platform_thread.h", "src/butil/threading/platform_thread.h",
"src/butil/threading/thread_restrictions.h", "src/butil/threading/thread_restrictions.h",
......
...@@ -146,6 +146,8 @@ if(WITH_MESALINK) ...@@ -146,6 +146,8 @@ if(WITH_MESALINK)
find_library(MESALINK_LIB NAMES mesalink) find_library(MESALINK_LIB NAMES mesalink)
if((NOT MESALINK_INCLUDE_PATH) OR (NOT MESALINK_LIB)) if((NOT MESALINK_INCLUDE_PATH) OR (NOT MESALINK_LIB))
message(FATAL_ERROR "Fail to find MesaLink") message(FATAL_ERROR "Fail to find MesaLink")
else()
message(STATUS "Found MesaLink: ${MESALINK_LIB}")
endif() endif()
include_directories(${MESALINK_INCLUDE_PATH}) include_directories(${MESALINK_INCLUDE_PATH})
endif() endif()
......
...@@ -23,7 +23,7 @@ echo "build combination: PURPOSE=$PURPOSE CXX=$CXX CC=$CC" ...@@ -23,7 +23,7 @@ echo "build combination: PURPOSE=$PURPOSE CXX=$CXX CC=$CC"
init_make_config() { init_make_config() {
EXTRA_BUILD_OPTS="" EXTRA_BUILD_OPTS=""
if [ "$USE_MESALINK" = "yes" ]; then if [ "$USE_MESALINK" = "true" ]; then
EXTRA_BUILD_OPTS="$EXTRA_BUILD_OPTS --with-mesalink" EXTRA_BUILD_OPTS="$EXTRA_BUILD_OPTS --with-mesalink"
fi fi
...@@ -42,7 +42,7 @@ elif [ "$PURPOSE" = "unittest" ]; then ...@@ -42,7 +42,7 @@ elif [ "$PURPOSE" = "unittest" ]; then
elif [ "$PURPOSE" = "compile-with-cmake" ]; then elif [ "$PURPOSE" = "compile-with-cmake" ]; then
rm -rf bld && mkdir bld && cd bld && cmake -DWITH_MESALINK="$USE_MESALINK" .. && make -j4 rm -rf bld && mkdir bld && cd bld && cmake -DWITH_MESALINK="$USE_MESALINK" .. && make -j4
elif [ "$PURPOSE" = "compile-with-bazel" ]; then elif [ "$PURPOSE" = "compile-with-bazel" ]; then
bazel build -j 12 -c opt --copt -DHAVE_ZLIB=1 //... bazel build -j 12 -c opt --define with_mesalink="$USE_MESALINK" --copt -DHAVE_ZLIB=1 //...
else else
echo "Unknown purpose=\"$PURPOSE\"" echo "Unknown purpose=\"$PURPOSE\""
fi fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment