Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Debug Flag To Examples Build.sh files to avoid conflict #314

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cachelib/external/fizz
Submodule fizz updated 45 files
+1 −1 build/deps/github_hashes/facebook/folly-rev.txt
+56 −4 shim/BUCK
+17 −0 shim/antlir/fbpkg/fbpkg.bzl
+33 −0 shim/build_defs/auto_headers.bzl
+13 −0 shim/build_defs/config.bzl
+9 −0 shim/build_defs/cpp_benchmark.bzl
+10 −0 shim/build_defs/cpp_binary.bzl
+10 −0 shim/build_defs/cpp_unittest.bzl
+9 −0 shim/build_defs/custom_rule.bzl
+11 −0 shim/build_defs/cython_library.bzl
+5 −0 shim/build_defs/export_files.bzl
+4 −0 shim/build_defs/native_rules.bzl
+10 −0 shim/build_defs/prebuilt_cpp_library.bzl
+12 −0 shim/build_defs/python_library.bzl
+12 −0 shim/build_defs/python_unittest.bzl
+41 −0 shim/lib/dicts.bzl
+236 −0 shim/lib/new_sets.bzl
+242 −0 shim/lib/paths.bzl
+63 −0 shim/lib/shell.bzl
+210 −18 shim/shims.bzl
+14 −0 shim/third-party/binutils/BUCK
+34 −0 shim/third-party/boost/BUCK
+20 −0 shim/third-party/boost/boost.bzl
+15 −0 shim/third-party/bzip2/BUCK
+16 −0 shim/third-party/double_conversion/BUCK
+15 −0 shim/third-party/fmt/BUCK
+15 −0 shim/third-party/gflags/BUCK
+36 −0 shim/third-party/glibc/BUCK
+16 −0 shim/third-party/glog/BUCK
+22 −0 shim/third-party/googletest/BUCK
+16 −0 shim/third-party/jemalloc/BUCK
+15 −0 shim/third-party/libaio/BUCK
+16 −0 shim/third-party/libdwarf/BUCK
+15 −0 shim/third-party/libevent/BUCK
+15 −0 shim/third-party/libgcc/BUCK
+16 −0 shim/third-party/libsodium/BUCK
+15 −0 shim/third-party/lz4/BUCK
+22 −0 shim/third-party/openssl/BUCK
+17 −0 shim/third-party/python/BUCK
+12 −0 shim/third-party/range-v3/BUCK
+12 −0 shim/third-party/snappy/BUCK
+66 −0 shim/third-party/third_party.bzl
+16 −0 shim/third-party/xz/BUCK
+16 −0 shim/third-party/zlib/BUCK
+15 −0 shim/third-party/zstd/BUCK
2 changes: 1 addition & 1 deletion cachelib/external/folly
2 changes: 1 addition & 1 deletion examples/simple_cache/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ CLCMAKE="$CLBASE/cachelib/cmake"
# After ensuring we are in the correct directory, set the installation prefix"
PREFIX="$CLBASE/opt/cachelib/"

CMAKE_PARAMS="-DCMAKE_INSTALL_PREFIX='$PREFIX' -DCMAKE_MODULE_PATH='$CLCMAKE'"
CMAKE_PARAMS="-DCMAKE_INSTALL_PREFIX='$PREFIX' -DCMAKE_MODULE_PATH='$CLCMAKE' -DCMAKE_BUILD_TYPE=Debug"

CMAKE_PREFIX_PATH="$PREFIX/lib/cmake:$PREFIX/lib64/cmake:$PREFIX/lib:$PREFIX/lib64:$PREFIX:${CMAKE_PREFIX_PATH:-}"
export CMAKE_PREFIX_PATH
Expand Down