projects
/
blender.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99a1f59
)
Modified ld flags on SunOS changed -O2 to -O
author
Kent Mein <mein@cs.umn.edu>
Mon, 10 Feb 2003 00:18:29 +0000
(
00:18
+0000)
committer
Kent Mein <mein@cs.umn.edu>
Mon, 10 Feb 2003 00:18:29 +0000
(
00:18
+0000)
because sun's compiler does not support -O2.
Kent
release/plugins/bmake
patch
|
blob
|
history
diff --git
a/release/plugins/bmake
b/release/plugins/bmake
index b25ecde08ee0ac84f8abae9299f2237ca7638f30..6d990ad7460b98bbfdadaeb28534bd1a5c3310d1 100644
(file)
--- a/
release/plugins/bmake
+++ b/
release/plugins/bmake
@@
-66,7
+66,7
@@
elif ( test $UNAME = "Linux" ) then
LDFLAGS="-Bshareable";
elif ( test $UNAME = "SunOS" ) then
CC="cc";
- CFLAGS="-O
2
";
+ CFLAGS="-O";
LD="ld";
LDFLAGS="-r";