Правила сборки для ЗОСРВ "Нейтрино" редакции 2020
This commit is contained in:
parent
e8322817a9
commit
cc99c209fd
@ -17,7 +17,7 @@ option(UNIT_TESTING "Build with unit tests" OFF)
|
||||
option(CLIENT_TESTING "Build with client tests; requires openssh" OFF)
|
||||
option(SERVER_TESTING "Build with server tests; requires openssh and dropbear" OFF)
|
||||
option(WITH_BENCHMARKS "Build benchmarks tools" OFF)
|
||||
option(WITH_EXAMPLES "Build examples" ON)
|
||||
option(WITH_EXAMPLES "Build examples" OFF)
|
||||
option(WITH_NACL "Build with libnacl (curve25519)" ON)
|
||||
option(WITH_SYMBOL_VERSIONING "Build with symbol versioning" ON)
|
||||
option(WITH_ABI_BREAK "Allow ABI break" OFF)
|
||||
|
49
README.md
49
README.md
@ -1,45 +1,14 @@
|
||||
[![pipeline status](https://gitlab.com/libssh/libssh-mirror/badges/master/pipeline.svg)](https://gitlab.com/libssh/libssh-mirror/commits/master)
|
||||
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/libssh.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:libssh)
|
||||
Сборка проекта в ЗОСРВ "Нейтрино" редакции 2020
|
||||
===============================================
|
||||
|
||||
Для всех архитектур:
|
||||
|
||||
```
|
||||
_ _ _ _
|
||||
(_) (_) (_) (_)
|
||||
(_) _ (_) _ _ _ _ _ (_) _
|
||||
(_) (_) (_)(_) _ (_)(_) (_)(_) (_)(_) _
|
||||
(_) (_) (_) (_) _ (_) _ (_) (_) (_)
|
||||
(_) (_) (_)(_)(_) (_)(_) (_)(_) (_) (_).org
|
||||
|
||||
The SSH library
|
||||
|
||||
make -j16 install
|
||||
```
|
||||
|
||||
# Why?
|
||||
Только для x86:
|
||||
|
||||
Why not ? :) I've began to work on my own implementation of the ssh protocol
|
||||
because i didn't like the currently public ones.
|
||||
Not any allowed you to import and use the functions as a powerful library,
|
||||
and so i worked on a library-based SSH implementation which was non-existing
|
||||
in the free and open source software world.
|
||||
|
||||
|
||||
# How/Who?
|
||||
|
||||
If you downloaded this file, you must know what it is : a library for
|
||||
accessing ssh client services through C libraries calls in a simple manner.
|
||||
Everybody can use this software under the terms of the LGPL - see the COPYING
|
||||
file
|
||||
|
||||
If you ask yourself how to compile libssh, please read INSTALL before anything.
|
||||
|
||||
# Where ?
|
||||
|
||||
https://www.libssh.org
|
||||
|
||||
# Contributing
|
||||
|
||||
Please read the file 'CONTRIBUTING.md' next to this README file. It explains
|
||||
our copyright policy and how you should send patches for upstream inclusion.
|
||||
|
||||
Have fun and happy libssh hacking!
|
||||
|
||||
The libssh Team
|
||||
```
|
||||
CPULIST=x86 make -j16 install
|
||||
```
|
||||
|
7
common.mk
Normal file
7
common.mk
Normal file
@ -0,0 +1,7 @@
|
||||
ifndef QCONFIG
|
||||
QCONFIG=qconfig.mk
|
||||
endif
|
||||
include $(QCONFIG)
|
||||
|
||||
include $(MKFILES_ROOT)/cmake.mk
|
||||
include $(MKFILES_ROOT)/qtargets.mk
|
2
nto/Makefile
Normal file
2
nto/Makefile
Normal file
@ -0,0 +1,2 @@
|
||||
LIST=CPU
|
||||
include recurse.mk
|
2
nto/aarch64/Makefile
Normal file
2
nto/aarch64/Makefile
Normal file
@ -0,0 +1,2 @@
|
||||
LIST=VARIANT
|
||||
include recurse.mk
|
1
nto/aarch64/o.le/Makefile
Normal file
1
nto/aarch64/o.le/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
2
nto/arm/Makefile
Normal file
2
nto/arm/Makefile
Normal file
@ -0,0 +1,2 @@
|
||||
LIST=VARIANT
|
||||
include recurse.mk
|
1
nto/arm/o.le.v7/Makefile
Normal file
1
nto/arm/o.le.v7/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
1
nto/arm/o.le/Makefile
Normal file
1
nto/arm/o.le/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
2
nto/e2k/Makefile
Normal file
2
nto/e2k/Makefile
Normal file
@ -0,0 +1,2 @@
|
||||
LIST=VARIANT
|
||||
include recurse.mk
|
1
nto/e2k/o.le/Makefile
Normal file
1
nto/e2k/o.le/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
2
nto/mips/Makefile
Normal file
2
nto/mips/Makefile
Normal file
@ -0,0 +1,2 @@
|
||||
LIST=VARIANT
|
||||
include recurse.mk
|
1
nto/mips/o.be/Makefile
Normal file
1
nto/mips/o.be/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
1
nto/mips/o.le.mc/Makefile
Normal file
1
nto/mips/o.le.mc/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
1
nto/mips/o.le/Makefile
Normal file
1
nto/mips/o.le/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
2
nto/ppc/Makefile
Normal file
2
nto/ppc/Makefile
Normal file
@ -0,0 +1,2 @@
|
||||
LIST=VARIANT
|
||||
include recurse.mk
|
1
nto/ppc/o.be.spe/Makefile
Normal file
1
nto/ppc/o.be.spe/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
1
nto/ppc/o.be/Makefile
Normal file
1
nto/ppc/o.be/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
2
nto/x86/Makefile
Normal file
2
nto/x86/Makefile
Normal file
@ -0,0 +1,2 @@
|
||||
LIST=VARIANT
|
||||
include recurse.mk
|
1
nto/x86/o/Makefile
Normal file
1
nto/x86/o/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include ../../../common.mk
|
Loading…
Reference in New Issue
Block a user