Skip to content

Commit

Permalink
c17: initial commit, v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Nov 19, 2024
1 parent ad09205 commit 045c0e2
Show file tree
Hide file tree
Showing 5 changed files with 96 additions and 0 deletions.
7 changes: 7 additions & 0 deletions c17/.footprint
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
2 changes: 2 additions & 0 deletions c17/.md5sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
6b31e3839813eb482b86fc4cc0ffe97b c17.1
40f3b5497a43f4764c766bd3a9628c7f c17.sh
13 changes: 13 additions & 0 deletions c17/Pkgfile
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
}
72 changes: 72 additions & 0 deletions c17/c17.1
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: .
2 changes: 2 additions & 0 deletions c17/c17.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
exec /usr/bin/cc -std=c17 "$@"

0 comments on commit 045c0e2

Please sign in to comment.