This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Various updates and fixes to some of the SysV IPC ops and their tests
[perl5.git] / hints / super-ux.sh
CommitLineData
d4bb784c
JH
1# Len Makin <len@hpc.CSIRO.AU>
2
3# No dynamically loaded libraries
4so='none'
5
6case "$optimize" in
7# No compile option -O
8'') optimize='-h2' ;;
9esac
10
11# size_t is 32 bits. Next version of compiler will have -hsize_t64
12# enabling size_t to be 64 bits.
13# Current cc version 4.80 allows -hsubscript64 for 64 bit array subscripts.
14ccflags="$ccflags -hxint -hmath vector -hsubscript64"
15
16case "$usemymalloc" in
17'') # The perl malloc.c SHOULD work
18 usemymalloc='y'
19 ;;
20esac