Skip to content

Commit a3a0e1c

Browse files
committed
aix gcc librados port
Signed-off-by: Rohan Mars <[email protected]>
1 parent 90a37c7 commit a3a0e1c

18 files changed

+394
-20
lines changed

README.aix

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
2+
The AIX build will only build the librados library.
3+
4+
Build Prerequisites
5+
===================
6+
7+
The following AIX packages are required for developing and compilation, they have been installed via the AIX-rpm (rpm) packages:
8+
9+
AIX-rpm
10+
tcl
11+
tk
12+
expect
13+
curl
14+
readline
15+
libpng
16+
mpfr
17+
m4
18+
autoconf
19+
gettext
20+
less
21+
perl
22+
gdbm
23+
pcre
24+
rsync
25+
zlib
26+
gcc-cpp
27+
libffi
28+
pkg-config
29+
libiconv
30+
glib2
31+
info
32+
libidn
33+
openldap
34+
python-tools
35+
bzip2
36+
python
37+
sed
38+
grep
39+
libtool
40+
nspr
41+
nss-util
42+
sqlite
43+
nss-softokn
44+
nss-softokn-freebl
45+
libstdc++
46+
gmp
47+
coreutils
48+
nss
49+
nss-tools
50+
nss-sysinit
51+
nspr-devel
52+
nss-util-devel
53+
nss-softokn-devel
54+
nss-softokn-freebl-devel
55+
nss-devel
56+
make
57+
libsigsegv
58+
automake
59+
libmpc
60+
libgcc
61+
gcc
62+
libstdc++-devel
63+
gcc-c++
64+
adns
65+
tcsh
66+
bash
67+
getopt
68+
db4
69+
expat
70+
tcl
71+
freetype2
72+
fontconfig
73+
libXrender
74+
libXft
75+
tk
76+
python-libs
77+
tkinter
78+
gdb
79+
git
80+
81+
82+
Download and Compile Boost 1.59 (or higher)
83+
84+
Building Ceph
85+
=============
86+
87+
export CXX="c++ -maix64"
88+
export CFLAGS="-g -maix64"
89+
export OBJECT_MODE=64
90+
export LDFLAGS="-L/usr/lib64 -L/opt/freeware/lib64 -L<pathtoboost>/boost_1_59_0/stage/lib -Wl,-brtl -Wl,-bbigtoc"
91+
export CXXFLAGS="-I/opt/freeware/include -I<pathtoboost>/boost_1_59_0"
92+
93+
./autogen.sh
94+
./configure --disable-server --without-fuse --without-tcmalloc --without-libatomic-ops --without-libaio --without-libxfs
95+
cd src
96+
gmake librados.la
97+

README.solaris

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ Download and Compile Boost 1.59 (or higher)
2020
Building Ceph
2121
=============
2222

23-
export LDFLAGS="-L<pathtoboost>/boost_1_59_0/stage/lib"
24-
export CPPFLAGS="-I<pathtoboost>/boost/boost_1_59_0"
23+
export LDFLAGS="-m64 -L<pathtoboost>/stage/lib -L/usr/lib/mps/64"
24+
export CPPFLAGS="-m64 -I<pathtoboost>"
25+
export CXXFLAGS="-m64"
26+
export CFLAGS="-m64"
2527

2628
./autogen.sh
2729
./configure --disable-server --without-fuse --without-tcmalloc --without-libatomic-ops --without-libaio --without-libxfs

configure.ac

+17-3
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,15 @@ freebsd*)
7070
solaris*)
7171
solaris="yes"
7272
;;
73+
aix*)
74+
aix="yes"
75+
;;
7376
esac
7477
AM_CONDITIONAL(LINUX, test x"$linux" = x"yes")
7578
AM_CONDITIONAL(FREEBSD, test x"$freebsd" = x"yes")
7679
AM_CONDITIONAL(DARWIN, test x"$darwin" = x"yes")
7780
AM_CONDITIONAL(SOLARIS, test x"$solaris" = x"yes")
81+
AM_CONDITIONAL(AIX, test x"$aix" = x"yes")
7882

7983
# Checks for programs.
8084
AC_PROG_CXX
@@ -266,6 +270,8 @@ AC_CHECK_CC_FLAG([-Wtype-limits], [WARN_TYPE_LIMITS])
266270
AC_CHECK_CC_FLAG([-Wignored-qualifiers], [WARN_IGNORED_QUALIFIERS])
267271
AC_CHECK_CC_FLAG([-Werror=format-security], [WARN_ERROR_FORMAT_SECURITY])
268272

273+
AC_CHECK_CC_FLAG([-rdynamic], [RDYNAMIC_FLAG])
274+
269275
# Check for compiler VTA support
270276
AX_CHECK_COMPILE_FLAG([-fvar-tracking-assignments], [HAS_VTA_SUPPORT=1], [HAS_VTA_SUPPORT=0])
271277
AM_CONDITIONAL(COMPILER_HAS_VTA, [test "$HAS_VTA_SUPPORT" = 1])
@@ -963,6 +969,7 @@ AC_CHECK_HEADERS([ \
963969
sys/cdefs.h \
964970
syslog.h \
965971
utime.h \
972+
execinfo.h
966973
])
967974

968975
# name_to_handle_at
@@ -1000,9 +1007,16 @@ AC_CHECK_MEMBER([struct stat.st_mtimespec.tv_nsec],
10001007
[Define if you have struct stat.st_mtimespec.tv_nsec])])
10011008

10021009
# splice/tee
1003-
AC_CHECK_FUNC([splice],
1004-
[AC_DEFINE([CEPH_HAVE_SPLICE], [], [splice(2) is supported])],
1005-
[])
1010+
case "${target_os}" in
1011+
aix*)
1012+
# AIX splice() is something else
1013+
;;
1014+
*)
1015+
AC_CHECK_FUNC([splice],
1016+
[AC_DEFINE([CEPH_HAVE_SPLICE], [], [splice(2) is supported])],
1017+
[])
1018+
;;
1019+
esac
10061020

10071021
# F_SETPIPE_SZ in fcntl.h
10081022
AC_MSG_CHECKING([for F_SETPIPE_SZ in fcntl.h])

src/Makefile-env.am

+12-7
Original file line numberDiff line numberDiff line change
@@ -118,28 +118,30 @@ AM_COMMON_CFLAGS = \
118118
-fno-strict-aliasing \
119119
-fsigned-char
120120
if !CLANG
121-
AM_COMMON_CFLAGS += -rdynamic
121+
AM_COMMON_CFLAGS += ${RDYNAMIC_FLAG}
122122
endif
123123
if SOLARIS
124124
AM_COMMON_CFLAGS += -Wno-unused-local-typedefs
125125
endif
126126

127-
AM_CFLAGS = $(AM_COMMON_CFLAGS) $(HARDENING_CFLAGS)
127+
AM_CFLAGS = $(AM_COMMON_CFLAGS)
128+
if LINUX
129+
AM_CFLAGS += $(HARDENING_CFLAGS)
130+
endif
128131
AM_CPPFLAGS = $(AM_COMMON_CPPFLAGS)
129132
AM_CXXFLAGS = \
130133
@AM_CXXFLAGS@ \
131134
$(AM_COMMON_CFLAGS) \
132135
-ftemplate-depth-1024 \
133136
-Wnon-virtual-dtor \
134-
-Wno-invalid-offsetof $(HARDENING_CFLAGS)
137+
-Wno-invalid-offsetof
138+
if LINUX
139+
AM_CXXFLAGS += $(HARDENING_CFLAGS)
140+
endif
135141
if !CLANG
136142
AM_CXXFLAGS += -Wstrict-null-sentinel
137143
endif
138144

139-
# solaris harding
140-
if SOLARIS
141-
AM_CXXFLAGS += -lssp_nonshared
142-
endif
143145

144146
# note: this is position dependant, it affects the -l options that
145147
# come after it on the command line. when you use ${AM_LDFLAGS} in
@@ -153,6 +155,9 @@ AM_LDFLAGS =
153155
if LINUX
154156
AM_LDFLAGS += -Wl,--as-needed $(HARDENING_LDFLAGS)
155157
endif
158+
if AIX
159+
AM_LDFLAGS += -Wl,-brtl -Wl,-bexpfull
160+
endif
156161

157162
if USE_BOOST_SPIRIT_OLD_HDR
158163
AM_CXXFLAGS += -DUSE_BOOST_SPIRIT_OLD_HDR

src/common/BackTrace.h

+4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
#define CEPH_BACKTRACE_H
33

44
#include <iosfwd>
5+
#ifdef HAVE_EXECINFO_H
56
#include <execinfo.h>
7+
#endif
68
#include <stdlib.h>
79

810
namespace ceph {
@@ -16,8 +18,10 @@ struct BackTrace {
1618
char **strings;
1719

1820
BackTrace(int s) : skip(s) {
21+
#ifdef HAVE_EXECINFO_H
1922
size = backtrace(array, max);
2023
strings = backtrace_symbols(array, size);
24+
#endif
2125
}
2226
~BackTrace() {
2327
free(strings);

src/common/Makefile.am

+5
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ libcommon_internal_la_SOURCES += \
8989
common/solaris_errno.cc
9090
endif
9191

92+
if AIX
93+
libcommon_internal_la_SOURCES += \
94+
common/aix_errno.cc
95+
endif
96+
9297
if WITH_RBD
9398
if LINUX
9499
libcommon_internal_la_SOURCES += \

src/common/MemoryModel.cc

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include "MemoryModel.h"
55
#include "common/config.h"
66
#include "debug.h"
7+
#include <malloc.h>
78

89
#include <fstream>
910

src/common/addr_parsing.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <stdio.h>
1717
#include <stdlib.h>
1818
#include <string.h>
19-
#if defined(__FreeBSD__)
19+
#if defined(__FreeBSD__) || defined(_AIX)
2020
#include <sys/socket.h>
2121
#include <netinet/in.h>
2222
#endif

0 commit comments

Comments
 (0)