Good point. Thanks,
nick
On Wed, Jun 19, 2013 at 12:25 PM, Robert Boehne wrote:
> Since the syntax you're using will only support one compiler anyway,
> you might consider creating a shell script to do the actual configure run.
>
> it might look something like this:
>
> #!/bin/sh
> mkdir -p bu
Since the syntax you're using will only support one compiler anyway,
you might consider creating a shell script to do the actual configure run.
it might look something like this:
#!/bin/sh
mkdir -p build
cd build
../configure --prefix=/path/ferinst --other-arguments LDFLAGS='-Xlinker
"-languae
Thanks for the reply. I ended up using
AM_LDFLAGS = -Xcompiler "-language charm++"
For some reason CXXLDFLAGS was not added to the linker command in Makefile.
Thanks again,
nick
On Thu, Jun 6, 2013 at 4:40 PM, Gavin Smith wrote:
> On Thu, Jun 6, 2013 at 8:08 PM, Nicolas Bock
> wrote:
> > H
On Thu, Jun 6, 2013 at 8:08 PM, Nicolas Bock wrote:
> Hi,
>
> The C++ compiler I am using (charmc) needs an additional command line
> argument during the linker stage (-language charm++). I am unsure how to
> best add this argument. The generated makefiles use CXX for compilation and
> CXXLD for l
Hi,
The C++ compiler I am using (charmc) needs an additional command line
argument during the linker stage (-language charm++). I am unsure how to
best add this argument. The generated makefiles use CXX for compilation and
CXXLD for linking, both of which are set to "charmc". How would I change
CX