This commit is contained in:
Biryuzovye Kleshni 2018-06-25 05:25:26 +00:00
parent 094cd2c2dd
commit c12b9ec796
2 changed files with 3 additions and 8 deletions

View File

@ -1,12 +1,7 @@
language: python
python:
- "2.7"
addons:
apt:
packages:
- build-essential
- libcap-dev
- libssl-dev
os: osx
install:
- pip install -r requirements.txt
- python setup.py install

View File

@ -1,5 +1,5 @@
CFLAGS += -std=gnu99 -Wall -Wextra -pedantic -O3 -fPIC
LDFLAGS += -shared -Wl,-version-script=main.map
CFLAGS += -std=gnu99 -Wall -Wextra -pedantic -O3 -fPIC -v
LDFLAGS += -shared -Wl,-version-script=main.map -v
libfastsolver.so: main.map common.o pthread.o
$(CC) $(LDFLAGS) -o $@ common.o pthread.o -lpthread -lcrypto