commit | 6764bb3c156e1c5fb5325c4c262530a9287e1e8c | [log] [tgz] |
---|---|---|
author | Radek Krejci <rkrejci@cesnet.cz> | Fri Jul 03 15:16:04 2015 +0200 |
committer | Radek Krejci <rkrejci@cesnet.cz> | Fri Jul 03 15:16:04 2015 +0200 |
tree | 4a67e68bb51a1e130b0d583afef20c12af0e5bf4 | |
parent | 60ba9a60cc2184872eeff2c957a62e638ea2150b [diff] |
yin parser FEATURE Support NACM's extensions default-deny-write and default-deny-all Not a general solution for extensions, it is just hardcoded and flags set by the extension are stored in schema tree.
libyang is YANG data modelling language parser and toolkit written (and providing API) in C.
$ cmake . $ make # make install
There are two build modes:
The Debug
mode is currently used as the default one. to switch to the Release
mode, enter at the command line:
$ cmake -D CMAKE_BUILD_TYPE:String="Release" .
Set CC variable:
$ CC=/usr/bin/clang cmake .
Note that, with CMake, if you want to change the compiler or its options after you already ran CMake, you need to clear its cache first. For your convenience, this action is available as cclean
target of the Makefile:
$ make cclean $ CC=gcc CFLAGS='-fstack-protector-strong -Wa,--noexecstack' cmake .