> 
> Ah, so it contains
>  dealii_parameter_gui.xcodeproj
> but not Makefile. But we want the latter. Can you try to do ./reconfigure and 
> see if running 'make' in config/ does the trick?

ok, i ran ./reconfigure. 

i then ran make in contrib/ (not config/) and i get the following:

make[3]: Nothing to be done for `default_tbb'.
***Unknown option --unix
Usage: /usr/bin/qmake [mode] [options] [files]

Options:
   * You can place any variable assignment in options and it will be     *
   * processed as if it was in [files]. These assignments will be parsed *
   * before [files].                                                     *
  -unix          Run in unix mode
  -win32         Run in win32 mode
  -macx          Run in Mac OS X mode

make: [parameter_gui] Error 1 (ignored)

This arises as the option in the contrib/ Makfile is set as:

ifneq ($(QMAKE),)
parameter_gui:
        @-cd parameter_gui ; \
                $(QMAKE) -Wnone QMAKE_CXX=$(CXX) --unix 
QMAKE_CXXFLAGS="$(CXXFLAGS.o)" QMAKE_CXXFLAGS_RELEASE="" && \
                $(MAKE)
 
So it seems to be complaining about one of two things. Either an extra "-" or 
the "unix" option.
If I set the option to "-unix" and run make:

make[1]: *** No targets specified and no makefile found.  Stop.
make: [parameter_gui] Error 2 (ignored)

If I set the option to "-macx" and run make:

make[1]: *** No targets specified and no makefile found.  Stop.
make: [parameter_gui] Error 2 (ignored)

If I use "--" it moans about unknown options. Any ideas here?


>> SYNOPSIS
>>     mktemp [-d] [-q] [-t prefix] [-u] template ...
>>     mktemp [-d] [-q] [-u] -t prefix
> 
> How lovely -- completely incompatible with unix. Try again, I think it should 
> work now.

great! this works. thanks

Regards
Andrew


> 
> Best
> W.
> 
> -------------------------------------------------------------------------
> Wolfgang Bangerth                email:            [email protected]
>                                 www: http://www.math.tamu.edu/~bangerth/

_______________________________________________
dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii

Reply via email to