Archived

This forum has been archived. Please start a new discussion on GitHub.

FreeBSD

JFYI.

I've just successful built ICE on FreeBSD 5.2.1. (Really any 5.x version).
All test has passed.

But I could not built it on FreeBSD 4.x for lack of wchar/wstring support there.

Comments

  • mes
    mes California
    Re: FreeBSD

    Welcome!
    Originally posted by Sem
    I've just successful built ICE on FreeBSD 5.2.1. (Really any 5.x version).
    All test has passed.
    Great, thanks for letting us know. Which compiler version were you using?
    But I could not built it on FreeBSD 4.x for lack of wchar/wstring support there.
    You can work around this by removing Unicode.cpp from src/IceUtil/Makefile, Unicode.h from include/IceUtil/IceUtil.h and then disabling the tests test/IceUtil/inputUtil and test/IceUtil/unicode.

    Cheers,
    - Mark
  • Re: Re: FreeBSD
    Originally posted by mes

    Great, thanks for letting us know. Which compiler version were you using?

    System compiler is:
    % gcc --version
    gcc (GCC) 3.3.3 [FreeBSD] 20031106
    Copyright (C) 2003 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

    You can work around this by removing Unicode.cpp from src/IceUtil/Makefile, Unicode.h from include/IceUtil/IceUtil.h and then disabling the tests test/IceUtil/inputUtil and test/IceUtil/unicode.

    OK. I'll try.