File tree Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ : solaris.i386 cc wrapper for reasonable ansi C defaults and 32 bit : 2012-05-18 :
2
+
3
+ HOSTTYPE=sol11.i386
4
+
5
+ case " $* " in
6
+ *" -dumpmachine "*) echo $HOSTTYPE; exit ;;
7
+ esac
8
+
9
+ $CC_EXPLICIT -m32 -xc99 -D_XPG6 "$@"
Original file line number Diff line number Diff line change
1
+ : solaris.i386-64 cc wrapper for reasonable ansi C defaults and 64 bit : 2012-05-18 :
2
+
3
+ HOSTTYPE=sol11.i386-64
4
+
5
+ case " $* " in
6
+ *" -dumpmachine "*) echo $HOSTTYPE; exit ;;
7
+ esac
8
+
9
+ $CC_EXPLICIT -m64 -xc99 -D_XPG6 "$@"
Original file line number Diff line number Diff line change
1
+ : solaris.sparc cc wrapper for reasonable ansi C defaults and 32 bit : 2012-05-18 :
2
+
3
+ HOSTTYPE=sol11.sparc
4
+
5
+ case " $* " in
6
+ *" -dumpmachine "*) echo $HOSTTYPE; exit ;;
7
+ esac
8
+
9
+ $CC_EXPLICIT -m32 -xc99 -D_XPG6 "$@"
Original file line number Diff line number Diff line change
1
+ : solaris.sparc-64 cc wrapper for reasonable ansi C defaults and 64 bit : 2012-05-18 :
2
+
3
+ HOSTTYPE=sol11.sparc-64
4
+
5
+ case " $* " in
6
+ *" -dumpmachine "*) echo $HOSTTYPE; exit ;;
7
+ esac
8
+
9
+ $CC_EXPLICIT -m64 -xc99 -D_XPG6 "$@"
You can’t perform that action at this time.
0 commit comments