You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ck/tools/feature.sh

6 lines
282 B

#!/bin/sh
# This will generate the list of feature flags for implemented symbols.
echo '/* DO NOT EDIT. This is auto-generated from feature.sh */'
nm ../regressions/ck_pr/validate/ck_pr_cas|cut -d ' ' -f 3|sed s/ck_pr/ck_f_pr/|awk '/^ck_f_pr/ {print "#define " toupper($1);}'|sort