Building mod_jk module on Solaris 10 (Intel Platform)

Hi,
I am trying to build a mod_jk module on a Sun Blade 1500 (Solaris 10 Intel Platform). I downloaded the most recent tomcat connector I could find (jakarta-tomcat-connectors-current-src.tar.gz) and have attempted to build it, but I have received the following error:
Making all in common
/bin/bash /var/apache2/build/libtool silent mode=compile gcc -I/usr/apache2/include -g -O2 -O -xarch=386 -xchip=pentium -xspace -Xa -xildoff -DSSL_EXPERIMENTAL -DSSL_ENGINE -DHAVE_APR -I/usr/share/src/apache2/srclib/apr/include -I/usr/share/src/apache2/srclib/apr-util/include -g -O2 -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -I /include -I /include/ -c jk_ajp12_worker.c -o jk_ajp12_worker.lo
gcc: unrecognized option `-Xa'
gcc: unrecognized option `-KPIC'
gcc: language ildoff not recognized
gcc: jk_ajp12_worker.c: linker input file unused because linking not done
mv: cannot access .libs/jk_ajp12_worker.lo
*** Error code 2
make: Fatal error: Command failed for target `jk_ajp12_worker.lo'
Current working directory /tomcat-connect/jakarta-tomcat-connectors-1.2.15-src/jk/native/common
*** Error code 1
The following command caused the error:
set fnord $MAKEFLAGS; amf=$2; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='common apache-2.0'; for subdir in $list; do \
echo "Making $target in $subdir"; \
if test "$subdir" = "."; then \
dot_seen=yes; \
local_target="$target-am"; \
else \
local_target="$target"; \
fi; \
(cd $subdir && make $local_target) \
|| case "$amf" in *=*) exit 1;; k) fail=yes;; *) exit 1;; esac; \
done; \
if test "$dot_seen" = "no"; then \
make "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Anyone have any idea what the problem may be?

I'm not familiar with what you are trying to accomplish,
I'm more of a hardware person, but...
Sun Blade 1500 systems are NOT x86 architecture.
They are UltraSPARC-IIIi systems.
Could that be contributing to what you see?
SB1500(Silver) in the SSH
SB1500(Red) in the SSH

Similar Messages

  • CAN I INSTALL SOLARIS 10 INTEL PLATFORM ON MY PC

    Can anybody guide me whether i can install solaris 10 intel platform on my pc having following configuration
    1. Processor = AMD SEMPRON 2500+ 64-BIT.
    2. MainBoard = ASUS K8V-MX.
    3. RAM-= 512 MB DDR PC3200
    4. Display = Onboard VIA/S3G Unichrome Pro IGP.
    5. LAN = Onboard VIA RHINE II Fast Ethernet Adapter.
    6. Monitor = 17" LG CRT, Model = Studioworks 700S
    7. Sony DVD- ROM.
    8. Samsung DVD-RW.
    9. HDD = 40 GB Samsung 7200 RPM.
    If anybody knows let me know at my e-mail [email protected]

    I don't think you will have many problems in this platform, but I'm not 100% sure.
    What I recommend you is to get the VMWare and try there. VMWare is a software where you can create a virtual machine running under windows. In this virtual machine you could install solaris 10 (and any other OS you want to test in your computer). I have my Solaris 10 running under VMWare with excellent results (Laptop with Intel Celeron processor)... where I have VMWare installed in Windows!

  • Confusing error building existing code on Solaris 10 Intel (AMD64)

    I have Solaris 10 on AMD64, using the bundled GCC
    gcc version 3.4.3 (csl-sol210-3_4-branch+sol_rpath)
    I'm attempting to build part of our large C++ application and am getting a strange link error:
    ld: fatal: relocation error: file: ./obj_g/amd64-solaris10-gcc40/mksdic.o section: .rel.debug_info symbol: : relocation against a discarded symbol,
            symbol is part of discarded section: .gnu.linkonce.t._ZNK18CompressedADFSARep21get_transition_vectorEv
    collect2: ld returned 1 exit statusThe mangled symbol (containing ADFSARep) refers to a member function in the code.
    Googling for this error only returns hits on people attempting to bootstrap GCC itself, and comes down to an incompatibility between Solaris ld and GNU ld. From what I've read elsewhere the recommendation is to use GNU as but Sun ld, so I'm completely confused.
    Simple C++ programs work fine, of course. The executable in question uses several .o files as well as a number of static libraries. However, I can get a similar error if I construct a command-line that just links two of the object files without including any of the static libraries.
    I also tried with GCC 4.0.x, same result.
    Any and all help and suggestions are appreciated.
    Tom Emerson

    Try to ask your question in Solaris 10 x86 forum, since the question seems to be amd64 specific.
    Also, could you provide (if possible) those two c++ files source which object files fail to link along with the command line.
    As a side note, would you consider an option to migrate your project to SunStudio?

  • How to execute Java program in Solaris 8 (Intel Platform).

    Hello All,
    I have installed Solaris 8 on my Intel based PC. JDk 1.1 and JDK 1.2 is installed by default. When I compile any Java applet or Application, it successfull complies but when I try run that applet or application (java Appletname or applicationname), It gives the error message .... File not found...Check whether file exist in the directory or not.
    Can someone tell me the reason of this error and how to correct it. Where to set the CLASSPATh etc. under Solaris 8 for successful compilation and run of programs. I do not have any problem under Windows/2000.
    Thanks in advance,
    Amoid

    [amoyeed],
    Hello All,
    I have installed Solaris 8 on my Intel based PC. JDk
    1.1 and JDK 1.2 is installed by default. When I
    compile any Java applet or Application, it successfull
    compliesI will assume that you executed this command:
    #javac <java source code filename>.java
    In order to find out which version of the javac you are using to compile the program, execute the following:
    #/usr/bin/which javac
    The output will tell the exact path to the javac binary file.
    but when I try run that applet or application
    (java Appletname or applicationname), It gives the
    error message .... File not found...Check whether file
    exist in the directory or not.You probably have not set the current directory to your environment variable PATH for the Unix shell that you are using.
    You can do the following:
    #java ./<standalone application or applet name>
    Can someone tell me the reason of this error and how
    to correct it. Where to set the CLASSPATh etc. under
    Solaris 8 for successful compilation and run of
    programs.In the shell environment settings file. Which Unix shell are you using? Bourne, Korn or C?
    I do not have any problem under Windows/2000.
    Thanks in advance,
    AmoidHTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Install Solaris 8, Intel platform

    I have the two installation CD:s OK. Installation starts OK. I can chose "Solaris interactive", but
    here comes the problems: a lot of (all?) undefined symbols like:
    /kernel/drv/ipsecesp: undefined symbol:' xxx'
    and the boot process stops with "tmpfs mount failed".
    What to do ?

    Where did u get your oracle817 version for intel solaris?
    in cdrom top dir, the runInstaller is just a shell script, and
    there is a binary program in install dir, try to run that
    program and give out the result?

  • Solaris 8 intel platform problem

    I configured a wrong vga/video and monitor for my solaris. Now when it restarts, it comes at a place with message "Starting Desktop login at display 0" and hangs at this place. I can telnet my system from any other system and can work from there but cannot work from the original solaris machine as it hangs here. Now I want to change the VGA options , how can I do that. IS there any option which I use when solaris boots up?
    KIndly guid

    Hi
    Initailly when the Solaris is booting up , it would prompt you to press "Esc" if any of the hardware is changed and waits apprx. 5 sec. At this point if you press "Esc" key it would start the loading of the drivers and you would be able to see the screens where you can change the VGA drivers and also add any third party drivers if any.
    Hope that helps.

  • Oracle 8i form Solaris Intel Platform

    Can anybody help me on Where from can i download Oracle 8i for Solaris on intel platform. Please mail me on [email protected]
    Thanks
    Sudesh.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by bhrigu nagal ([email protected]):
    its available on the oracle site http://technet.oracle.com/software/products/oracle8i/software_index.htm <HR></BLOCKQUOTE>
    Thanks Bhrigu.
    I have checked this site and i also downloaded the version 8.1.7 for solaris. when i try to run the ./runInstaller file it gives me a error as "Syntax error on line number 1" and returns back to $prompt. I was told that this is the version only for Sun Sparc Solaris. There is no 8i version for Solaris 8 on intel platform.
    Is that right ??.. or do U have some more information on that. probably anybody has tried that or so ??..
    Thanks
    Sudesh.
    null

  • Oracle for Sun Solaris (Intel Platform)

    I want to know that if oracle for sun solaris 8 (intel platform) is available and anyone has installed it. On OTN only oracle for sun solaris (For SPARC ) is available for download.
    if anyone know it for solaris 8 (intel platform) then please tell me where to get it from.
    rohit
    [email protected]
    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name ORACLE 9I DATABASE
    - Filename
    - Date/Time 5 JULY 2K2
    - Browser + Version IE 6
    - O/S + Version SUN SOLARIS
    - Error Msg

    I didn't see anything on the Sun site, but the disk arrived with my Solaris media. I have installed it on one machine (you need to create the "oracle" user id, the "dba" group, and you must set the tunable parameters for shared memory to install the software and example database.)
    I tried to install a second machine and the Oracle installer terminates half way through without errors. I'm still working that issue.

  • Oracle 9i for solaris 8(intel x86 platform)

    I want to know that if oracle for sun solaris 8 (intel platform) is available and anyone has installed it. On OTN only oracle for sun solaris (For SPARC ) is available for download.
    if anyone know it for solaris 8 (intel platform) then please tell me where to get it from.
    rohit
    [email protected]
    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    - Date/Time
    - Browser + Version
    - O/S + Version
    - Error Msg

    This forum is for Forms questions. You should ask your question on the appropriate forum.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Acrobat Reader for Sun Solarisu Intel platform

    Is there a version of Acrobat Reader there I can use on Solaris 8 Intel platform?? Thank you very much for your pointer!!

    Mozilla is much better but they haven't posted a download. I've produced a 1.0 and sent it to [email protected] but they haven't replied or posted it. I also have a 1.1a build ready when they finish processing the 1.0. I'll try some other mozilla.org email addresses when I get a chance to see if I can find out what happened.

  • Solaris 8 (Intel) Crash & Burn

    Having troubles installing Solaris 8 (Intel Platform) on a Gateway PC (PIII 733 MHz, 128 MB RAM, 20 GB HD). Seems no matter what I do, using web start or using interactive install, the screen goes all white and the system hangs just after the following information is displayed during the boot process:
    SunOS Release 5.8 Version Generic-xxxxxxx 32-bit
    Copyright 1983-2000 Sun Microsystems, Inc. All rights reserved.
    Then next thing displayed is a cursor flashing in the upper left corner of the screen with the entire screen being white. I never get the next line as indicated in the install docs ("Configuring /dev and /devices").
    I have tried using DOS fdisk to create a 24 MB partition set active and formatted. That seems to work fine to boot into DOS, but I can't seem to get past this part of the install.
    Any suggestions?
    ...Steve

    Just an idea:
    After installing the latest kernel + usb patches a system built around
    an ASUS P2B showed similar behaviour: Soon after the screen is
    cleared during the boot sequence the machine hung. Before installing
    these patches the machine was running without problem.
    The problem was a disabled USB IRQ in the bios setup. The system has
    no USB peripherals connected, so the USB IRQ was disabled in the
    BIOS (in an
    attempt to free some IRQs - which is actually nonsense in a PCI
    system; some old habit from good old ISA PCs). Re-enabling the
    USB IRQ in the BIOS fixed the solaris boot problem. Probably the
    solaris 8 USB drivers had detected the USB bus and started scanning
    for devices there; and that hung the machine due to non working USB controller IRQs.
    Maybe you have a similar problem...

  • Oracle into Solaris for Intel

    Does the Oracle database for Solaris for SunSPARC, works into a
    Solaris for Intel?
    Do you know, where I can download an Oracle for Solaris for
    Intel?
    That Oracle database version is the only one, wich is not in the
    OTN download page.

    I bought Sun Solaris 8 (Intel platform) from SUN - you just have to pay the media & shipping fees. Oracle 8i (for Intel Sun Solaris8) was included in the package .
    Check on www.sun.com for more details.
    Ciao

  • Porting Solaris on Intel machines

    Is there any site/book available regarding porting code from
    Solaris Sun Workstations running Ultras to Solaris on Intel
    platforms? Any information would be higly appreciated.
    I am looking for solaris 2.6.
    Thanks,
    Deepthy

    <pre>
    I don't think there is any specific book which just describes
    porting code from Sun Ultra to Intel. But you can refer "Solaris
    porting guide" by SunSoft which has a section on issues with
    various arcitectures. Like, X86 being Little-endian and sparc being
    big-endian. I have done a similar kind of work earlier. Basically
    two issues are of concern: 1. endianess issue 2. alignment issue
    Since you are porting code from ultra to Intel i don't think
    you need to worry about alignment issues. Look for endianess issues
    That should be sufficient </pre>

  • Sun Compiler on Solaris for Intel

    Is Sun Workshop C++ compiler with RogueWave library available on
    Solaris for Intel platform?

    I believe this is the case with Workshop 6, which is downloadable as a Beta from the developer connection website, but I haven't checked.
    http://soldc.sun.com/workshop6ea I think is the URL.

  • Solaris 8 does not boot in Intel Platform

    I got free Solaris 8 CD for Intel Platform. I installed it in a PC with Intel 133 cpu. It cannot boot up after it is installed. When I boot, it just keeps rebooting system and get an error says, "File Can not be synchronized". I know I made some mistake during installation. My PC has a 3COM network car but it is not connect to any network. During installation, I told that I connect to network and give a non-exist ip address.
    My question is how do I reinstall it? I have tried to delete everything in hard drive but no luck to get installation start again.
    The other problem I see is that the scan program tells me that there is an IDE card lack of resources and conflicts with another IDE card.
    Could some one tell me how to make Solaris 8 working on my Intel Platform PC?
    Thanks,
    Cindy

    I'm trying to install Solaris 8 using the Device Configuration Assistant diskette in order to boot from the CD Drive. The whole boot process goes through as described in the documentation but at the time that is trying to copy files to the HD in order to porceed with the install, I get the following error message:
    <pre>
    No Disks that meet the citeria in the Solaris
    installer documentation found.
    Please check the system or try another installation option
    </pre>
    When the software is checking for drivers/hardware, it recognizes the HD, but it seems that when trying to boot it doesn't. The documentation makes reference to fdisk and partitioning but I am not given the oportunity to do it at any time.
    Any help would be greatly appreciated.

Maybe you are looking for