commit | 1f76a28315d815bf72e6c5c122e273440a1f5bc4 | [log] [tgz] |
---|---|---|
author | Michal Vasko <mvasko@cesnet.cz> | Tue Aug 04 16:16:53 2015 +0200 |
committer | Michal Vasko <mvasko@cesnet.cz> | Tue Aug 04 16:16:53 2015 +0200 |
tree | ead926898e530cbc1b40c808898287304dd56b91 | |
parent | cc9e12ebbf97f3dc0b20ff58e06deed525f6f3be [diff] |
resolve FEATURE leafref schema resolution This required changes (in name mainly) to the leafref data resolution functions.
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 .