mirror of
https://github.com/rizinorg/cutter
synced 2026-08-11 16:23:06 -04:00
Move Ubuntu 16.04 sytem dependencies build to GHA. (#2484)
* Move Ubuntu 16.04 sytem dependencies build to GHA. * Downgrade some of the software installed on Github VMs to better match what's available on Ubuntu 16.04 * Disable breakpad tools, we dont use them and some of them require fresh linux kernel for compilation.
This commit is contained in:
parent
ca3d8ce78f
commit
92b28679f2
3 changed files with 91 additions and 44 deletions
|
|
@ -1,9 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
git clone https://github.com/google/breakpad.git
|
||||
cd breakpad
|
||||
git clone https://chromium.googlesource.com/linux-syscall-support src/third_party/lss
|
||||
CFLAGS=-w CXXFLAGS=-w ./configure --prefix=`pwd`/prefix && make -j4 && make install || exit 1
|
||||
CFLAGS=-w CXXFLAGS=-w ./configure --disable-tools --prefix=`pwd`/prefix && make -j4 && make install || exit 1
|
||||
|
||||
export CUSTOM_BREAKPAD_PREFIX="`pwd`/prefix"
|
||||
cd ..
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue