Skip to content

Commit

Permalink
fix(libcudf): remove cache-busting debug line from CFLAGS and CXXFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth committed Feb 28, 2025
1 parent 8413cbe commit 76ce12a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions conda/recipes/libcudf/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ cache:
build:
script:
content: |
# Remove `-fdebug-prefix-map` line from CFLAGS and CXXFLAGS so the
# incrementing version number in the compile line doesn't break the
# cache
set -x
export CFLAGS=$(echo $CFLAGS | sed -E 's@\-fdebug\-prefix\-map[^ ]*@@g')
export CXXFLAGS=$(echo $CXXFLAGS | sed -E 's@\-fdebug\-prefix\-map[^ ]*@@g')
set +x
./build.sh -n -v \
libcudf libcudf_kafka benchmarks tests \
--build_metrics --incl_cache_stats --allgpuarch \
Expand Down

0 comments on commit 76ce12a

Please sign in to comment.