Compiling Samba using IBM's C compiler - IBM: AIX (2024)

INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!

  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Us!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Tek-Tips Posting Policies

Contact US

thread52-1169692

ForumSearchFAQsLinksMVPs

Compiling Samba using IBM's C compiler

Compiling Samba using IBM's C compiler

clund (TechnicalUser)

(OP)

Has anybody here had any success using IBM's C compiler to compile Samba?
I have heard that it's supposed to produce a (measurably) faster binary compared to GCC but nobody seems to have working instructions for getting it done.

When I run the compile it produces a lot of errors like this:
"cc: 1501-218 file nsswitch/wb_common.po contains an incorrect file suffix"

When I use GCC then I don't see any errors like that.

Replies continue below

Recommended for you

RE: Compiling Samba using IBM's C compiler

macazu (Programmer)

HelloYou can download CIFS SAMBA AIX at www.bullfreeware.com or Ibm site I think that this binairies version probably is build with Vis.. Ag..I have making some tests with gnu g++ and Ibm products with sameprogram it is big work for small result (at link ld controlis hardto drive in two sideswith originalsource Gcc) (several coffee take and the long night... withcomputeur noisethat in add) . The two products are veryperformant....<< "(with the errors messages !!!!)" << endl;Happy new year , (only Samba music has no errors....)

RE: Compiling Samba using IBM's C compiler

Mag0007 (MIS)

when you run ./configure, can you paste us the configure.log?

Maybe its missing a dependency. Looks like a LOCALE issue....

RE: Compiling Samba using IBM's C compiler

clund (TechnicalUser)

(OP)

Here's part of the output when I run configure:

checking whether building shared libraries actually works... cc: 1501-218 file shlib.po contains an incorrect file suffix
yes

There're no relevant warnings/errors in the config.log file ... grepping through the file leads to one relevant (?) line:
PICSUFFIX='po'

Not sure what to do next...

RE: Compiling Samba using IBM's C compiler

Mag0007 (MIS)

Can you please paste the 3 lines before and after this error?

So, far it looks like a missing openssh library...

RE: Compiling Samba using IBM's C compiler

clund (TechnicalUser)

(OP)

I don't think it has anything to do with openssh ... I'm just running:
./configure --prefix=/usr/local

Using xlc I get the above errors ... if I use GCC then everything works just fine. And both are being run on the same fresh, basic AIX5.3 install (nothing except what comes with the base install + the two compilers). It has something to do with the .po suffix...

There's a bug (with a little more detail) posted on Samba's site about this issue:
https://bugzilla.samba.org/show_bug.cgi?id=3102

RE: Compiling Samba using IBM's C compiler

clund (TechnicalUser)

(OP)

And here's the section of the config.log where the error/warning occurs:

|builtin and then its argument prototype would still apply.*/
| char extattr_set_link ();
| /* The GNU C library defines this for functions which it implements
|to always fail with ENOSYS.Some functions are actually named
|something starting with __ and the normal name is an alias.*/
| #if defined (__stub_extattr_set_link) || defined (__stub___extattr_set_link)
| choke me
| #else
| char (*f) () = extattr_set_link;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != extattr_set_link;
|;
|return 0;
| }
configure:25231: result: no
configure:25261: checking ability to build shared libraries
configure:25638: result: true
configure:25640: checking linker flags for shared libraries
configure:25642: result: -Wl,-bexpall,-bM:SRE,-bnoentry,-berok
configure:25644: checking compiler flags for position-independent code
configure:25646: result: -O2
configure:25653: checking whether building shared libraries actually works
configure:25670: result: yes
configure:25679: checking for long long
configure:25698: cc -o conftest -O -D_SAMBA_BUILD_ -D_LINUX_SOURCE_COMPAT -qmaxmem=32000conftest.
c>&5
configure:25701: $? = 0
configure:25703: ./conftest
configure:25706: $? = 0
configure:25720: result: yes
configure:25734: checking for LL suffix on long long integers
configure:25756: cc -c -O -D_SAMBA_BUILD_ -D_LINUX_SOURCE_COMPAT -qmaxmem=32000conftest.c >&5
configure:25762: $? = 0
configure:25766: test -z
|| test ! -s conftest.err

RE: Compiling Samba using IBM's C compiler

Mag0007 (MIS)

Samba probally won't compile for xlc. It probally has GNUized code Compiling Samba using IBM's C compiler - IBM: AIX (1)

RE: Compiling Samba using IBM's C compiler

clund (TechnicalUser)

(OP)

Well, thanks for talking a look at it Mag0007.

I'll be upgrading to the latest version of xlc in the not too distant future (I'm currently on v6.0) and it's supposed to be more compatible with "GNUized code" so that may solve my problem.

RE: Compiling Samba using IBM's C compiler

macazu (Programmer)

IBM AIX 4.3.2 ppc avec gcc 3.2.3 :
CFLAGS="-O2 -mcpu=powerpc -Wa,-many " CXX=gcc CXXFLAGS="-O2 -mcpu=powerpc -Wa,-many -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/samba --with-extra-charsets=complex --enable-thread-safe-client --enable-local-infile --with-named-z-libs=no --disable-shared

***********************************

IBM AIX 4.3.3 ppc avec xlC_r (IBM Visual Age C/C++ 6.0) :
CC=xlc_r CFLAGS="-ma -O2 -qstrict -qoptimize=2 -qmaxmem=8192" CXX=xlC_r CXXFLAGS ="-ma -O2 -qstrict -qoptimize=2 -qmaxmem=8192" ./configure --prefix=/usr/local/samba --localstatedir=/usr/local/samba/data --libexecdir=/usr/local/samba/bin --with-extra-charsets=complex --enable-thread-safe-client --enable-local-infile --with-named-z-libs=no --disable-shared --with-innodb

***********************************

IBM AIX 5.1.0 ppc avec gcc 3.3 :
CFLAGS="-O2 -mcpu=powerpc -Wa,-many" CXX=gcc CXXFLAGS="-O2 -mcpu=powerpc -Wa,-many -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/samba --with-extra-charsets=complex --with-server-suffix="-pro" --enable-thread-safe-client --enable-local-infile --with-named-z-libs=no --disable-shared

**********************************************

IBM AIX 5.2.0 ppc avec xlC_r (IBM Visual Age C/C++ 6.0) :
CC=xlc_r CFLAGS="-ma -O2 -qstrict -qoptimize=2 -qmaxmem=8192" CXX=xlC_r CXXFLAGS="-ma -O2 -qstrict -qoptimize=2 -qmaxmem=8192" ./configure --prefix=/usr/local/samba --localstatedir=/usr/local/samba/data --libexecdir=/usr/local/samba/bin --with-extra-charsets=complex --enable-thread-safe-client --enable-local-infile --with-named-z-libs=no --disable-shared --with-embedded-server --with-innodb

********************************************

RE: Compiling Samba using IBM's C compiler

clund (TechnicalUser)

(OP)

Thank you macazu ... what version of Samba is this supposed to work with?
I tried it on the latest stable (3.0.21a) and it bombed when it tried to compile smbd.

RE: Compiling Samba using IBM's C compiler

macazu (Programmer)

Probably is 3.0.7-5 of the dvd sources Suse 9.2I have take this file in the sharedinternal user VisualAge on my networkI have not verify is just for you can see the difference with two sample configuration.The Samba VisualAge is running on this computer.I have create duplicate file with it.
When I see the man I can take exact specific information forSAMBA.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login


Close Box

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

  • Compiling Samba using IBM's C compiler - IBM: AIX (2)Talk To Other Members
  • Notification Of Responses To Questions
  • Favorite Forums One Click Access
  • Keyword Search Of All Posts, And More...

Register now while it's still free!

Already a member? Close this window and log in.

Join UsClose

Compiling Samba using IBM's C compiler - IBM: AIX (2024)
Top Articles
Best Prepaid Phone Plans | 5G Nationwide & More | Verizon Prepaid
Gme Iborrow
Antisis City/Antisis City Gym
No Hard Feelings Showtimes Near Metropolitan Fiesta 5 Theatre
Washu Parking
Uti Hvacr
855-392-7812
Wordscapes Level 5130 Answers
Steamy Afternoon With Handsome Fernando
Cumberland Maryland Craigslist
What happens if I deposit a bounced check?
Shaniki Hernandez Cam
Www Thechristhospital Billpay
Canelo Vs Ryder Directv
Day Octopus | Hawaii Marine Life
Www.paystubportal.com/7-11 Login
The Rise of Breckie Hill: How She Became a Social Media Star | Entertainment
Slag bij Plataeae tussen de Grieken en de Perzen
How Much Is Tj Maxx Starting Pay
The Murdoch succession drama kicks off this week. Here's everything you need to know
The most iconic acting lineages in cinema history
24 Best Things To Do in Great Yarmouth Norfolk
N2O4 Lewis Structure & Characteristics (13 Complete Facts)
Espn Horse Racing Results
CDL Rostermania 2023-2024 | News, Rumors & Every Confirmed Roster
Libinick
CVS Near Me | Columbus, NE
Pjs Obits
Transactions (zipForm Edition) | Lone Wolf | Real Estate Forms Software
Espn Horse Racing Results
Touchless Car Wash Schaumburg
Haunted Mansion Showtimes Near Epic Theatres Of West Volusia
Koninklijk Theater Tuschinski
Mynahealthcare Login
Tu Housing Portal
Christmas Days Away
Lincoln Financial Field, section 110, row 4, home of Philadelphia Eagles, Temple Owls, page 1
15 Downer Way, Crosswicks, NJ 08515 - MLS NJBL2072416 - Coldwell Banker
Vitals, jeden Tag besser | Vitals Nahrungsergänzungsmittel
Selfservice Bright Lending
Trizzle Aarp
Ticket To Paradise Showtimes Near Regal Citrus Park
Sukihana Backshots
2007 Peterbilt 387 Fuse Box Diagram
Puretalkusa.com/Amac
sacramento for sale by owner "boats" - craigslist
Sand Castle Parents Guide
Panolian Batesville Ms Obituaries 2022
Cara Corcione Obituary
Paradise leaked: An analysis of offshore data leaks
Used Auto Parts in Houston 77013 | LKQ Pick Your Part
Itsleaa
Latest Posts
Article information

Author: Reed Wilderman

Last Updated:

Views: 5393

Rating: 4.1 / 5 (52 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Reed Wilderman

Birthday: 1992-06-14

Address: 998 Estell Village, Lake Oscarberg, SD 48713-6877

Phone: +21813267449721

Job: Technology Engineer

Hobby: Swimming, Do it yourself, Beekeeping, Lapidary, Cosplaying, Hiking, Graffiti

Introduction: My name is Reed Wilderman, I am a faithful, bright, lucky, adventurous, lively, rich, vast person who loves writing and wants to share my knowledge and understanding with you.