ClickHouse/libs/libmysqlxx/patch.sh

15 lines
336 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Удаляем из библиотеки объектный файл с лишними символами, которые конфликтуют с имеющимися при статической сборке.
LIB=$1
OUT=$2
mkdir -p tmp
cd tmp
ar x $LIB
ar t $LIB | grep -v 'my_new.cc.o' | xargs ar rcs $OUT
cd ..