-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
drwxr-xr-x root/root usr/ | ||
drwxr-xr-x root/root usr/bin/ | ||
-rwxr-xr-x root/root usr/bin/c17 | ||
drwxr-xr-x root/root usr/share/ | ||
drwxr-xr-x root/root usr/share/man/ | ||
drwxr-xr-x root/root usr/share/man/man1/ | ||
-rw-r--r-- root/root usr/share/man/man1/c17.1.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
6b31e3839813eb482b86fc4cc0ffe97b c17.1 | ||
40f3b5497a43f4764c766bd3a9628c7f c17.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Description: Shell wrapper script to ISO/IEC 9899:2018 C compiler | ||
# URL: https://zeppe-lin.github.io/ | ||
|
||
name=c17 | ||
version=0.1 | ||
release=1 | ||
source="c17.sh c17.1" | ||
|
||
build() { | ||
# Thanks to NetBSD for manual page. | ||
install -m 0755 -D $SRC/c17.sh $PKG/usr/bin/c17 | ||
install -m 0644 -D $SRC/c17.1 $PKG/usr/share/man/man1/c17.1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
.\" $NetBSD: c17.1,v 1.1 2024/10/28 17:55:12 nia Exp $ | ||
.\" | ||
.\" Copyright (c) 1999-2024 The NetBSD Foundation, Inc. | ||
.\" All rights reserved. | ||
.\" | ||
.\" Redistribution and use in source and binary forms, with or without | ||
.\" modification, are permitted provided that the following conditions | ||
.\" are met: | ||
.\" 1. Redistributions of source code must retain the above copyright | ||
.\" notice, this list of conditions and the following disclaimer. | ||
.\" 2. Redistributions in binary form must reproduce the above copyright | ||
.\" notice, this list of conditions and the following disclaimer in the | ||
.\" documentation and/or other materials provided with the distribution. | ||
.\" | ||
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | ||
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | ||
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
.\" POSSIBILITY OF SUCH DAMAGE. | ||
.\" | ||
.Dd October 28, 2024 | ||
.Dt C17 1 | ||
.Os | ||
.Sh NAME | ||
.Nm c17 | ||
.Nd ISO (2017) C compiler | ||
.Sh SYNOPSIS | ||
.Nm | ||
.Op Fl pedantic | ||
.Op Fl pedantic-errors | ||
.Op Fl D_ANSI_SOURCE | ||
.Op Ar options ... | ||
.Sh DESCRIPTION | ||
Calls the C compiler (cc) with the given | ||
.Ar options , | ||
using a C language environment compatible with the | ||
.St -p1003.1-2024 | ||
specification. | ||
.Pp | ||
The following options are available: | ||
.Bl -tag -width "-pedantic-errorsxx" | ||
.It Fl pedantic | ||
Issue extra warnings defined by ANSI for use of non-ANSI features. | ||
.It Fl pedantic-errors | ||
Issue errors instead of warnings that normally would be presented by | ||
.Fl pedantic . | ||
.It Fl D_ANSI_SOURCE | ||
Tell the system header file set to use an ANSI-conformant "clean" namespace. | ||
.El | ||
.Sh SEE ALSO | ||
.Xr cc 1 | ||
.Sh STANDARDS | ||
.Nm | ||
conforms to | ||
.St -p1003.1-2024 . | ||
.\".Sh HISTORY | ||
.\".Nm | ||
.\"first appeared in | ||
.\".Nx 11.0 . | ||
.Sh BUGS | ||
Since | ||
.Nm | ||
is a shell wrapper script to | ||
.Ar cc , | ||
compile errors are prefixed by | ||
.Dq cc: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
exec /usr/bin/cc -std=c17 "$@" |