Thread overview
Suppress startup banner on LINK.exe
Jul 31, 2004
Matthew
Jul 31, 2004
Walter
Jul 31, 2004
Matthew
Jul 31, 2004
Matthew
Jul 31, 2004
Walter
Jul 31, 2004
Walter
Jul 31, 2004
Matthew
July 31, 2004
I've a feeling I asked about this last year, but have no recollection of the answer, if any.

Is there a switch to suppress the startup banner on LINK? /SILENT doesn't seem to do it. Those three lines are doing nothing but stealing real estate from my myriad compilation/linking problems.



July 31, 2004
"Matthew" <admin.hat@stlsoft.dot.org> wrote in message news:cef9bd$k1g$1@digitaldaemon.com...
> I've a feeling I asked about this last year, but have no recollection of
the answer, if any.
>
> Is there a switch to suppress the startup banner on LINK? /SILENT doesn't
seem to do it. Those three lines are doing
> nothing but stealing real estate from my myriad compilation/linking
problems.

See www.digitalmars.com/ctg/ctgLinkSwitches.html

Look at /NOLOGO

Man pages on the tools are at www.digitalmars.com/ctg/ctg.html


July 31, 2004
"Matthew" <admin.hat@stlsoft.dot.org> wrote in message news:cef9bd$k1g$1@digitaldaemon.com...
> I've a feeling I asked about this last year, but have no recollection of
the answer, if any.
>
> Is there a switch to suppress the startup banner on LINK? /SILENT doesn't
seem to do it. Those three lines are doing
> nothing but stealing real estate from my myriad compilation/linking
problems.

Here's what I do:

make >log


July 31, 2004
"Walter" <newshound@digitalmars.com> wrote in message news:cefc3l$ko1$3@digitaldaemon.com...
>
> "Matthew" <admin.hat@stlsoft.dot.org> wrote in message news:cef9bd$k1g$1@digitaldaemon.com...
> > I've a feeling I asked about this last year, but have no recollection of
> the answer, if any.
> >
> > Is there a switch to suppress the startup banner on LINK? /SILENT doesn't
> seem to do it. Those three lines are doing
> > nothing but stealing real estate from my myriad compilation/linking
> problems.
>
> Here's what I do:
>
> make >log

Here's what I do:

. . .> cls & make test



July 31, 2004
"Walter" <newshound@digitalmars.com> wrote in message news:cefc3k$ko1$2@digitaldaemon.com...
>
> "Matthew" <admin.hat@stlsoft.dot.org> wrote in message news:cef9bd$k1g$1@digitaldaemon.com...
> > I've a feeling I asked about this last year, but have no recollection of
> the answer, if any.
> >
> > Is there a switch to suppress the startup banner on LINK? /SILENT doesn't
> seem to do it. Those three lines are doing
> > nothing but stealing real estate from my myriad compilation/linking
> problems.
>
> See www.digitalmars.com/ctg/ctgLinkSwitches.html
>
> Look at /NOLOGO
>
> Man pages on the tools are at www.digitalmars.com/ctg/ctg.html

Gah!

Thanks. :)


July 31, 2004
"Matthew" <admin@stlsoft.dot.dot.dot.dot.org> wrote in message news:ceff42$lej$2@digitaldaemon.com...
>
> "Walter" <newshound@digitalmars.com> wrote in message news:cefc3k$ko1$2@digitaldaemon.com...
> >
> > "Matthew" <admin.hat@stlsoft.dot.org> wrote in message news:cef9bd$k1g$1@digitaldaemon.com...
> > > I've a feeling I asked about this last year, but have no recollection of
> > the answer, if any.
> > >
> > > Is there a switch to suppress the startup banner on LINK? /SILENT doesn't
> > seem to do it. Those three lines are doing
> > > nothing but stealing real estate from my myriad compilation/linking
> > problems.
> >
> > See www.digitalmars.com/ctg/ctgLinkSwitches.html
> >
> > Look at /NOLOGO
> >
> > Man pages on the tools are at www.digitalmars.com/ctg/ctg.html
>
> Gah!
>
> Thanks. :)

Doesn't work:

        dmd list_test.obj -oftest_list.exe snn.lib phobos.lib dtl.lib -L/NOLOGO
P:\Programs\dmd\bin\..\..\dm\Compilers\dmbeta\dm\bin\link.exe
list_test,test_list.exe,,snn.lib+phobos.lib+dtl.lib+user32+kernel32/noi/NOLOGO;
OPTLINK (R) for Win32  Release 7.50B1                                    <++ I want rid of this line
Copyright (C) Digital Mars 1989 - 2001  All Rights Reserved        <++ and this one

list_test.obj(list_test)
 Error 42: Symbol Undefined _assert_3std3dtl4list
list_test.obj(list_test)
 Error 42: Symbol Undefined __Interface_3std3dtl9functions10categories10IPredicate
--- errorlevel 2



July 31, 2004
"Matthew" <admin.hat@stlsoft.dot.org> wrote in message news:ceffi4$li5$1@digitaldaemon.com...
> Doesn't work:

So it doesn't. Aagh.