File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed
Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ First I'll tell you how to download or build Fil-C and then I'll tell you how to
113113
114114You can download a Fil-C binary release from [ https://github.com/pizlonator/fil-c/releases ] ( https://github.com/pizlonator/fil-c/releases ) .
115115
116- Then, in the filc-0.673 -linux-x86_64 directory, run:
116+ Then, in the filc-0.674 -linux-x86_64 directory, run:
117117
118118 ./setup.sh
119119
Original file line number Diff line number Diff line change 1- # Fil-C 0.673
1+ # Fil-C 0.674
22
33Fil-C is a fanatically compatible memory-safe implementation of C and C++. Lots
44of software compiles and runs with Fil-C with zero or minimal changes. All
@@ -69,11 +69,11 @@ This has a different effect depending on which binary distribution you
6969selected:
7070
7171- In case of the classic musl-based distribution
72- (` filc-0.673 -linux-x86_64.tar.xz ` ), this sets up Fil-C to run in the current
72+ (` filc-0.674 -linux-x86_64.tar.xz ` ), this sets up Fil-C to run in the current
7373 directory.
7474
7575- In case of the /opt/fil glibc-based distribution
76- (` optfil-0.673 -linux-x86_64.tar.xz ` ), this sets up Fil-C in ` /opt/fil ` .
76+ (` optfil-0.674 -linux-x86_64.tar.xz ` ), this sets up Fil-C in ` /opt/fil ` .
7777
7878If you downloaded Fil-C source, run:
7979
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ std::string getLLVMRevision() {
5858}
5959
6060std::string getClangVendor () {
61- return " Fil-C 0.673 " ;
61+ return " Fil-C 0.674 " ;
6262}
6363
6464std::string getClangFullRepositoryVersion () {
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ extern "C" {
3636
3737/* The convention is that the major version gets multiplied by 10000. So if there was a version
3838 1.23, then FILC_VERSION would be 10023. */
39- #define FILC_VERSION 673u
39+ #define FILC_VERSION 674u
4040
4141/* This header defines standard Fil-C APIs that are not part of C or C++ but are intended to be stable
4242 over time in Fil-C.
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ cd $FILCSRC/optfil
4343
4444. ../libpas/common.sh
4545
46- package_name=optfil-0.673 -$OS -$ARCH
46+ package_name=optfil-0.674 -$OS -$ARCH
4747
4848rm -rf $package_name
4949mkdir -v $package_name
@@ -76,7 +76,7 @@ cp -v audit-LICENSE.txt $package_name/
7676cp -v PAM-LICENSE.txt $package_name /
7777cp -v keyutils-LICENSE.txt $package_name /
7878cp -v krb5-LICENSE.txt $package_name /
79- cp -v libsepol-LICSENSE .txt $package_name /
79+ cp -v libsepol-LICENSE .txt $package_name /
8080cp -v libselinux-LICENSE.txt $package_name /
8181
8282tar -cJf $package_name .tar.xz $package_name
Original file line number Diff line number Diff line change 2525
2626set -e
2727
28- VERSION=" 0.673 "
28+ VERSION=" 0.674 "
2929
3030echo " ================================================================================"
3131echo " Fil-C /opt/fil Distribution"
Original file line number Diff line number Diff line change 2828set -e
2929set -x
3030
31- build_name=filc-0.673 -$OS -$ARCH
31+ build_name=filc-0.674 -$OS -$ARCH
3232
3333rm -rf $build_name
3434
You can’t perform that action at this time.
0 commit comments