Skip to content

cmake/webrtc_aec: use PUBLIC stdc++ linking #4945

cmake/webrtc_aec: use PUBLIC stdc++ linking

cmake/webrtc_aec: use PUBLIC stdc++ linking #4945

Workflow file for this run

name: OpenSSL no-deprecated and LibreSSL
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ssl:
runs-on: ubuntu-latest
strategy:
matrix:
ssl: [libressl, openssl]
steps:
- uses: actions/checkout@v4
- uses: sreimers/pr-dependency-action@v1
with:
name: re
repo: https://github.com/baresip/re
secret: ${{ secrets.GITHUB_TOKEN }}
- name: make re
run: |
for p in re; do
cmake -S $p -B $p/build
cmake --build $p/build -j
done
for p in re; do
mv $p ../.
done
sudo ldconfig
- name: make baresip
run: cmake -B build -DCMAKE_C_FLAGS="-Iassets/${{ matrix.ssl }}/include -Werror" -DCMAKE_EXE_LINKER_FLAGS="-Lassets/${{ matrix.ssl }}" && cmake --build build -j