Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
68e6b23f
Commit
68e6b23f
authored
Mar 24, 1999
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chris Herborth: the new compiler in R4.1 needs some new options to work...
parent
061f7866
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
266 additions
and
254 deletions
+266
-254
BeOS/ar-fake
BeOS/ar-fake
+4
-1
BeOS/linkmodule
BeOS/linkmodule
+4
-1
configure
configure
+254
-251
configure.in
configure.in
+4
-1
No files found.
BeOS/ar-fake
View file @
68e6b23f
...
...
@@ -57,7 +57,10 @@ build_lib() {
case
$BE_HOST_CPU
in
ppc
)
AR_CC
=
"mwcc -xms -export pragma -nodup"
case
$(
uname
-r
)
in
4.0
*
)
AR_CC
=
"mwcc -xms -export pragma -nodup"
;;
*
)
AR_CC
=
"mwcc -shared -export pragma -nodup"
;;
esac
GLUE_LOC
=
/boot/develop/lib/ppc
AR_GLUE
=
"
${
GLUE_LOC
}
/glue-noinit.a
${
GLUE_LOC
}
/init_term_dyn.o
${
GLUE_LOC
}
/start_dyn.o"
;;
...
...
BeOS/linkmodule
View file @
68e6b23f
...
...
@@ -53,7 +53,10 @@ case $BE_HOST_CPU in
# Boy, do we need a lot of crap...
GLUE_LOC
=
/boot/develop/lib/ppc
GLUE
=
"
${
GLUE_LOC
}
/glue-noinit.a
${
GLUE_LOC
}
/init_term_dyn.o"
CC
=
"mwcc -xms -export pragma -nodup"
case
$(
uname
-r
)
in
4.0
*
)
CC
=
"mwcc -xms -export pragma -nodup"
;;
*
)
CC
=
"mwcc -shared -export pragma -nodup"
;;
esac
;;
x86
)
...
...
configure
View file @
68e6b23f
This diff is collapsed.
Click to expand it.
configure.in
View file @
68e6b23f
...
...
@@ -120,7 +120,10 @@ AC_ARG_WITH(gcc, [--without-gcc never use gcc], [
ppc)
CC="mwcc -I$PWD/BeOS"
without_gcc=yes
OPT="-DUSE_DL_EXPORT -O7 -opt schedule604"
case `uname -r` in
4.0*) OPT="-DUSE_DL_EXPORT -O7 -opt schedule604 -export pragma" ;;
*) OPT="-DUSE_DL_EXPORT -O2 -proc 604e -export pragma" ;;
esac
CCSHARED=-UUSE_DL_EXPORT
LDFLAGS="$LDFLAGS -nodup"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment