POV-Ray : Newsgroups : povray.unix : cc1plus: error: invalid option `align-double' on HP-UX Server Time
1 Jul 2024 12:56:18 EDT (-0400)
  cc1plus: error: invalid option `align-double' on HP-UX (Message 1 to 8 of 8)  
From: Arjan
Subject: cc1plus: error: invalid option `align-double' on HP-UX
Date: 5 Jun 2004 07:40:00
Message: <web.40c1b018504775cc82cc5b270@news.povray.org>
Hi,

I'm trying to compile POV-Ray 3.5c on a PA-RISC 8600 machine, but I'm
getting some strange errors. Could someone help me out?

I did:

../configure --with-x=no
make

and got this:

.....
No suffix list.
Making all in scripts
No suffix list.
Making all in src
        c++ -DPREFIX="/usr/local"
-DPOV_LIB_DIR="/usr/local/share/povray-3.5" -DCOMPILER_VER=".Linux.gcc"
-DSYSCONFDIR="/usr/local/etc" -DUSE_IO_RESTRICTIONS=""     `if [ "Xgcc" =
"Xgcc" ]; then echo "-Wno-multichar"; fi ` -O3 -finline-functions
-ffast-math -fomit-frame-pointer -funroll-loops -fexpensive-optimizations
-malign-double -foptimize-sibling-calls -minline-all-stringops
-Wno-multichar -c atmosph.cpp
cc1plus: error: invalid option `align-double'
cc1plus: error: invalid option `inline-all-stringops'
*** Error exit code 1

Stop.
*** Error exit code 1

Stop.


Anyone any idea's on how to solve this?

Regards,

Arjan.


Post a reply to this message

From: Christoph Hormann
Subject: Re: cc1plus: error: invalid option `align-double' on HP-UX
Date: 5 Jun 2004 07:55:02
Message: <c9sc5e$4vj$1@chho.imagico.de>
Arjan wrote:
> cc1plus: error: invalid option `align-double'
> cc1plus: error: invalid option `inline-all-stringops'
> 
> 
> Anyone any idea's on how to solve this?

Remove those options from the makefile or wait until POV-Ray 3.6 is 
available as source.

Christoph

-- 
POV-Ray tutorials, include files, Sim-POV,
HCR-Edit and more: http://www.tu-bs.de/~y0013390/
Last updated 01 May. 2004 _____./\/^>_*_<^\/\.______


Post a reply to this message

From: Arjan
Subject: Re: cc1plus: error: invalid option `align-double' on HP-UX
Date: 5 Jun 2004 15:15:00
Message: <web.40c21baa48c2e35482cc5b270@news.povray.org>
Christoph Hormann <chr### [at] gmxde> wrote:
> Arjan wrote:
> > cc1plus: error: invalid option `align-double'
> > cc1plus: error: invalid option `inline-all-stringops'
> >
> >
> > Anyone any idea's on how to solve this?
>
> Remove those options from the makefile or wait until POV-Ray 3.6 is
> available as source.
>
> Christoph
>
> --
> POV-Ray tutorials, include files, Sim-POV,
> HCR-Edit and more: http://www.tu-bs.de/~y0013390/
> Last updated 01 May. 2004 _____.//^>_*_<^/.______

Hi,

Thanks. It did not work immediatly, but after some digging I finally managed
to compile it on the HP-UX machine. Of course I had to install the jpeg,
png, zlib, tiff libraries. These are the changes I made to Makefile
necessary to be able to compile (besides taking out all instances of the
two options).

95,97c95,97
< CFLAGS = -O3 -mcpu=i586 -march=i586 -finline-functions -ffast-math
-fomit-frame-pointer -funroll-loops -fexpensive-optimizations
-malign-double -foptimize-sibling-calls -minline-all-stringops
-Wno-multichar
< CXXFLAGS = $(NOMULTICHAR) -O3 -finline-functions -ffast-math
-fomit-frame-pointer -funroll-loops -fexpensive-optimizations
-malign-double -foptimize-sibling-calls -minline-all-stringops
-Wno-multichar
< LDFLAGS =
---
> CFLAGS = -O3 -finline-functions -ffast-math -fomit-frame-pointer -funroll-loops
-fexpensive-optimizations  -foptimize-sibling-calls  -Wno-multichar -lpthread
> CXXFLAGS = $(NOMULTICHAR) -O3 -finline-functions -ffast-math -fomit-frame-pointer
-funroll-loops -fexpensive-optimizations  -foptimize-sibling-calls  -Wno-multichar
> LDFLAGS = -lpthread

Thanks a lot.

Greetz,

Arjan.


Post a reply to this message

From: Warp
Subject: Re: cc1plus: error: invalid option `align-double' on HP-UX
Date: 5 Jun 2004 16:21:42
Message: <40c22b56@news.povray.org>
Arjan <dj_noresult at hotmail.xcom> wrote:
> Of course I had to install the jpeg,
> png, zlib, tiff libraries.

  This is another thing which has been fixed in the 3.6 unix source
distribution.

-- 
#macro M(A,N,D,L)plane{-z,-9pigment{mandel L*9translate N color_map{[0rgb x]
[1rgb 9]}scale<D,D*3D>*1e3}rotate y*A*8}#end M(-3<1.206434.28623>70,7)M(
-1<.7438.1795>1,20)M(1<.77595.13699>30,20)M(3<.75923.07145>80,99)// - Warp -


Post a reply to this message

From: Patrick Elliott
Subject: Re: cc1plus: error: invalid option `align-double' on HP-UX
Date: 5 Jun 2004 18:53:56
Message: <MPG.1b2bfcd92f4c5715989a68@news.povray.org>
In article <40c22b56@news.povray.org>, war### [at] tagpovrayorg says...
> Arjan <dj_noresult at hotmail.xcom> wrote:
> > Of course I had to install the jpeg,
> > png, zlib, tiff libraries.
> 
>   This is another thing which has been fixed in the 3.6 unix source
> distribution.
> 
What... Someone is going to include the libraries 'with' the application, 
instead of making you hunt around for them...? Are you insane? lol

Sorry, just had to say that. ;)

-- 
void main () {

    call functional_code()
  else
    call crash_windows();
}


Post a reply to this message

From: Arjan
Subject: Re: cc1plus: error: invalid option `align-double' on HP-UX
Date: 6 Jun 2004 03:30:01
Message: <web.40c2c6d748c2e35482cc5b270@news.povray.org>
Patrick Elliott <sha### [at] hotmailcom> wrote:
> In article <40c22b56@news.povray.org>, war### [at] tagpovrayorg says...
> > Arjan <dj_noresult at hotmail.xcom> wrote:
> > > Of course I had to install the jpeg,
> > > png, zlib, tiff libraries.
> >
> >   This is another thing which has been fixed in the 3.6 unix source
> > distribution.
> >
> What... Someone is going to include the libraries 'with' the application,
> instead of making you hunt around for them...? Are you insane? lol
>
> Sorry, just had to say that. ;)
>
> --
> void main () {

>     call functional_code()
>   else
>     call crash_windows();
> }


:-)

Too bad the UNIX generic source is merely Linux on i586 generic from a
compile point of view. Anywayz, I like a good puzzle.

:-)


Arjan.


Post a reply to this message

From: Thorsten Froehlich
Subject: Re: cc1plus: error: invalid option `align-double' on HP-UX
Date: 7 Jun 2004 05:35:12
Message: <40c436d0@news.povray.org>
In article <web.40c2c6d748c2e35482cc5b270@news.povray.org> , "Arjan" 
<dj_noresult at hotmail.xcom> wrote:

> Too bad the UNIX generic source is merely Linux on i586 generic

What else should it be?

    Thorsten

____________________________________________________
Thorsten Froehlich, Duisburg, Germany
e-mail: tho### [at] trfde

Visit POV-Ray on the web: http://mac.povray.org


Post a reply to this message

From: Arjan
Subject: Re: cc1plus: error: invalid option `align-double' on HP-UX
Date: 7 Jun 2004 17:20:00
Message: <web.40c4db5148c2e35482cc5b270@news.povray.org>
"Thorsten Froehlich" <tho### [at] trfde> wrote:
> In article <web.40c2c6d748c2e35482cc5b270@news.povray.org> , "Arjan"
> <dj_noresult at hotmail.xcom> wrote:
>
> > Too bad the UNIX generic source is merely Linux on i586 generic
>
> What else should it be?
>
>     Thorsten
>
> ____________________________________________________
> Thorsten Froehlich, Duisburg, Germany
> e-mail: tho### [at] trfde
>
> Visit POV-Ray on the web: http://mac.povray.org

Generic, portable, I guess, so not specificly aimed at i586 + Linux. I
myself of course would prefer HP-UX, PA-RISC 2.0+ . But as I said, it's not
that big a problem.

Regards,

Arjan.


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.