from 5-NOV WITH_CLANG_IS_CC in /etc/src.conf is no longer needed, right?

2012-11-09 Thread Anton Shterenlikht
Hi

I'm on 242801 amd64.
I understand from [1] that WITH_CLANG_IS_CC
is no longer needed in /etc/src.conf.
Yet I somehow still get cc,c++,cpp all GCC binaries, e.g.

# /usr/bin/cc --version
cc (GCC) 4.2.1 20070831 patched [FreeBSD]

I'm missing something else.

Please advise

Thanks
Anton

[1] http://lists.freebsd.org/pipermail/freebsd-current/2012-November/037458.html

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: from 5-NOV WITH_CLANG_IS_CC in /etc/src.conf is no longer needed, right?

2012-11-09 Thread Dimitry Andric

On 2012-11-09 09:27, Anton Shterenlikht wrote:

I'm on 242801 amd64.
I understand from [1] that WITH_CLANG_IS_CC
is no longer needed in /etc/src.conf.
Yet I somehow still get cc,c++,cpp all GCC binaries, e.g.

# /usr/bin/cc --version
cc (GCC) 4.2.1 20070831 patched [FreeBSD]


Please post your make.conf and src.conf files.  You may have something
in there which overrides the new defaults.
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: from 5-NOV WITH_CLANG_IS_CC in /etc/src.conf is no longer needed, right?

2012-11-09 Thread Anton Shterenlikht
From d...@freebsd.org Fri Nov  9 14:11:18 2012

On 2012-11-09 09:27, Anton Shterenlikht wrote:
 I'm on 242801 amd64.
 I understand from [1] that WITH_CLANG_IS_CC
 is no longer needed in /etc/src.conf.
 Yet I somehow still get cc,c++,cpp all GCC binaries, e.g.

 # /usr/bin/cc --version
 cc (GCC) 4.2.1 20070831 patched [FreeBSD]

Please post your make.conf and src.conf files.  You may have something
in there which overrides the new defaults.

# cat /etc/src.conf
PORTS_MODULES=net/bwn-firmware-kmod
# cat /etc/make.conf
SENDMAIL_CFLAGS+=   -I/usr/local/include -DSASL=2
SENDMAIL_LDFLAGS+=  -L/usr/local/lib
SENDMAIL_LDADD+=-lsasl2
WITH_PKGNG=yes
PERL_VERSION=5.16.2
#

Thanks
Anton


___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: from 5-NOV WITH_CLANG_IS_CC in /etc/src.conf is no longer needed, right?

2012-11-09 Thread Christer Solskogen
On Fri, Nov 9, 2012 at 8:47 PM, Anton Shterenlikht me...@bristol.ac.uk wrote:
 From d...@freebsd.org Fri Nov  9 14:11:18 2012

 On 2012-11-09 09:27, Anton Shterenlikht wrote:
  I'm on 242801 amd64.
  I understand from [1] that WITH_CLANG_IS_CC
  is no longer needed in /etc/src.conf.
  Yet I somehow still get cc,c++,cpp all GCC binaries, e.g.
 
  # /usr/bin/cc --version
  cc (GCC) 4.2.1 20070831 patched [FreeBSD]

 Please post your make.conf and src.conf files.  You may have something
 in there which overrides the new defaults.

 # cat /etc/src.conf
 PORTS_MODULES=net/bwn-firmware-kmod
 # cat /etc/make.conf
 SENDMAIL_CFLAGS+=   -I/usr/local/include -DSASL=2
 SENDMAIL_LDFLAGS+=  -L/usr/local/lib
 SENDMAIL_LDADD+=-lsasl2
 WITH_PKGNG=yes
 PERL_VERSION=5.16.2
 #


Sure you are running a current enough CURRENT?

-- 
chs,
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: from 5-NOV WITH_CLANG_IS_CC in /etc/src.conf is no longer needed, right?

2012-11-09 Thread Anton Shterenlikht
From christer.solsko...@gmail.com Fri Nov  9 20:40:46 2012

 On 2012-11-09 09:27, Anton Shterenlikht wrote:
  I'm on 242801 amd64.
  I understand from [1] that WITH_CLANG_IS_CC
  is no longer needed in /etc/src.conf.
  Yet I somehow still get cc,c++,cpp all GCC binaries, e.g.
 
  # /usr/bin/cc --version
  cc (GCC) 4.2.1 20070831 patched [FreeBSD]

 Please post your make.conf and src.conf files.  You may have 
something
 in there which overrides the new defaults.

 # cat /etc/src.conf
 PORTS_MODULES=net/bwn-firmware-kmod
 # cat /etc/make.conf
 SENDMAIL_CFLAGS+=   -I/usr/local/include -DSASL=2
 SENDMAIL_LDFLAGS+=  -L/usr/local/lib
 SENDMAIL_LDADD+=-lsasl2
 WITH_PKGNG=yes
 PERL_VERSION=5.16.2
 #


Sure you are running a current enough CURRENT?

sure...
just forgot installworld...

# cc --version
FreeBSD clang version 3.2 (trunk 162107) 20120817
Target: x86_64-unknown-freebsd10.0
Thread model: posix
#

After 10 years of using freebsd,
I fucked up again... really embarrased,
sorry

Anton

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: from 5-NOV WITH_CLANG_IS_CC in /etc/src.conf is no longer needed, right?

2012-11-09 Thread Chuck Burns

On 11/9/2012 2:44 PM, Anton Shterenlikht wrote:

From christer.solsko...@gmail.com Fri Nov  9 20:40:46 2012

 On 2012-11-09 09:27, Anton Shterenlikht wrote:
  I'm on 242801 amd64.
  I understand from [1] that WITH_CLANG_IS_CC
  is no longer needed in /etc/src.conf.
  Yet I somehow still get cc,c++,cpp all GCC binaries, e.g.
 
  # /usr/bin/cc --version
  cc (GCC) 4.2.1 20070831 patched [FreeBSD]

 Please post your make.conf and src.conf files.  You may have 
something
 in there which overrides the new defaults.

 # cat /etc/src.conf
 PORTS_MODULES=net/bwn-firmware-kmod
 # cat /etc/make.conf
 SENDMAIL_CFLAGS+=   -I/usr/local/include -DSASL=2
 SENDMAIL_LDFLAGS+=  -L/usr/local/lib
 SENDMAIL_LDADD+=-lsasl2
 WITH_PKGNG=yes
 PERL_VERSION=5.16.2
 #


Sure you are running a current enough CURRENT?

sure...
just forgot installworld...

# cc --version
FreeBSD clang version 3.2 (trunk 162107) 20120817
Target: x86_64-unknown-freebsd10.0
Thread model: posix
#

After 10 years of using freebsd,
I fucked up again... really embarrased,
sorry

Anton

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Just remember, if you can't laugh at yourself for dumb misakes, there 
will always be someone willing to do it for you! :) Glad you figured it 
out.. now the obligatory LOL! :)


--
Chuck Burns brea...@gmail.com
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org