mirror of https://github.com/PurpleI2P/i2pd.git
Browse Source
Rework CPU extensions detection code and build with AES-NI and AVX support by defaultpull/1553/merge
R4SAS
4 years ago
committed by
GitHub
26 changed files with 209 additions and 238 deletions
@ -0,0 +1,20 @@ |
|||||||
|
name: Build on OSX |
||||||
|
|
||||||
|
on: [push, pull_request] |
||||||
|
|
||||||
|
jobs: |
||||||
|
build: |
||||||
|
name: With USE_UPNP=${{ matrix.with_upnp }} |
||||||
|
runs-on: macOS-latest |
||||||
|
strategy: |
||||||
|
fail-fast: true |
||||||
|
matrix: |
||||||
|
with_upnp: ['yes', 'no'] |
||||||
|
steps: |
||||||
|
- uses: actions/checkout@v2 |
||||||
|
- name: install packages |
||||||
|
run: | |
||||||
|
brew update |
||||||
|
brew install boost miniupnpc openssl@1.1 |
||||||
|
- name: build application |
||||||
|
run: make HOMEBREW=1 USE_UPNP=${{ matrix.with_upnp }} PREFIX=$GITHUB_WORKSPACE/output -j3 |
@ -1,20 +0,0 @@ |
|||||||
name: Build on Ubuntu |
|
||||||
|
|
||||||
on: [push, pull_request] |
|
||||||
|
|
||||||
jobs: |
|
||||||
build: |
|
||||||
name: With QT GUI |
|
||||||
runs-on: ubuntu-16.04 |
|
||||||
steps: |
|
||||||
- uses: actions/checkout@v2 |
|
||||||
- name: install packages |
|
||||||
run: | |
|
||||||
sudo add-apt-repository ppa:mhier/libboost-latest |
|
||||||
sudo apt-get update |
|
||||||
sudo apt-get install build-essential qt5-default libqt5gui5 libboost1.74-dev libminiupnpc-dev libssl-dev zlib1g-dev |
|
||||||
- name: build application |
|
||||||
run: | |
|
||||||
cd qt/i2pd_qt |
|
||||||
qmake |
|
||||||
make -j3 |
|
@ -1,15 +0,0 @@ |
|||||||
Index: i2pd/Makefile
|
|
||||||
===================================================================
|
|
||||||
--- i2pd.orig/Makefile
|
|
||||||
+++ i2pd/Makefile
|
|
||||||
@@ -13,8 +13,8 @@ DAEMON_SRC_DIR := daemon
|
|
||||||
|
|
||||||
include filelist.mk |
|
||||||
|
|
||||||
-USE_AESNI := yes
|
|
||||||
-USE_AVX := yes
|
|
||||||
+USE_AESNI := no
|
|
||||||
+USE_AVX := no
|
|
||||||
USE_STATIC := no |
|
||||||
USE_MESHNET := no |
|
||||||
USE_UPNP := no |
|
@ -1,2 +1 @@ |
|||||||
01-tune-build-opts.patch |
01-fix-1210.patch |
||||||
02-fix-1210.patch |
|
||||||
|
Loading…
Reference in new issue