-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INIT: Add Solaris 11 compiler wrappers (Solaris patch 005-compiler)
This upstreams a Solaris patch: https://github.com/oracle/solaris-userland/blob/master/components/ksh93/patches/005-compiler.patch
- Loading branch information
Showing
4 changed files
with
36 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,9 @@ | ||
: solaris.i386 cc wrapper for reasonable ansi C defaults and 32 bit : 2012-05-18 : | ||
|
||
HOSTTYPE=sol11.i386 | ||
|
||
case " $* " in | ||
*" -dumpmachine "*) echo $HOSTTYPE; exit ;; | ||
esac | ||
|
||
$CC_EXPLICIT -m32 -xc99 -D_XPG6 "$@" |
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,9 @@ | ||
: solaris.i386-64 cc wrapper for reasonable ansi C defaults and 64 bit : 2012-05-18 : | ||
|
||
HOSTTYPE=sol11.i386-64 | ||
|
||
case " $* " in | ||
*" -dumpmachine "*) echo $HOSTTYPE; exit ;; | ||
esac | ||
|
||
$CC_EXPLICIT -m64 -xc99 -D_XPG6 "$@" |
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,9 @@ | ||
: solaris.sparc cc wrapper for reasonable ansi C defaults and 32 bit : 2012-05-18 : | ||
|
||
HOSTTYPE=sol11.sparc | ||
|
||
case " $* " in | ||
*" -dumpmachine "*) echo $HOSTTYPE; exit ;; | ||
esac | ||
|
||
$CC_EXPLICIT -m32 -xc99 -D_XPG6 "$@" |
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,9 @@ | ||
: solaris.sparc-64 cc wrapper for reasonable ansi C defaults and 64 bit : 2012-05-18 : | ||
|
||
HOSTTYPE=sol11.sparc-64 | ||
|
||
case " $* " in | ||
*" -dumpmachine "*) echo $HOSTTYPE; exit ;; | ||
esac | ||
|
||
$CC_EXPLICIT -m64 -xc99 -D_XPG6 "$@" |