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
36eb6c73
Commit
36eb6c73
authored
Aug 09, 1996
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New AIX-NOTES
parent
abfd8064
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
61 deletions
+0
-61
Misc/AIX-NOTES
Misc/AIX-NOTES
+0
-61
No files found.
Misc/AIX-NOTES
deleted
100644 → 0
View file @
abfd8064
[Excerpt from an email describing how to build Python on AIX.]
Subject: Re: Python 1.0.0 BETA 5 -- also for Macintosh!
From: se@MI.Uni-Koeln.DE (Stefan Esser)
To: Guido.van.Rossum@cwi.nl
Date: Fri, 7 Jan 1994 17:40:43 +0100
[...]
The following are [...] Instructions
to get a clean compile using gcc and xlc
under AIX 3.2.4.
Since I wanted to make sure that Python compiles
using both compilers and several sets of options
(ANSI and traditional C, optimize on/off) I didn't
try to include bash readline or other optional
modules.
'make test' succeeded using Python compiled with
the AIX C-compiler invoked as 'cc' and with options
'-o -qMEMMAX=4000' and compiled with 'gcc' and
options '-O -Wall'.
There were some problems trying to compile python
using 'gcc -ansi' (because of _AIX no longer being
defined), but I didn't have time to look into this.
Regards,
Stefan Esser
REQUIRED:
---------
1) AIX compilers don't like the LANG env
varaiable set to european locales.
This makes the compiler generate floating
point constants using "," as the decimal
seperator, which the assembler doesnt't
understand (or was it the other way around,
with the assembler expecting "," in float
numbers ???).
Anyway: "LANG=C; export LANG" solves the
problem, as does "LANG=C $(MAKE) ..." in
the master Makefile.
OPTIONAL:
---------
2) The xlc compiler considers "Python/ceval.c"
too complex to optimize, except when invoked
with "-qMEMMAX=4000".
[...]
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