Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] [Installation] Obsolete SUMO on Debian

Hi,

this was the original error

(4) Followed instructions from here or there (the second is simply more detailed)
      a. I have cmake v 3.7.2, python 3.7.3, g++ v 6.3.0, libxerces-c-dev v 3.1.4+debian-2+deb9u2, libfox-1.6-dev v 1.6.53-1, libgdal-dev v 2.1.2+dfsg-5, libproj-dev v 4.9.3-1, libgl2ps-dev v 1.3.9-4
      b. tried both with g++ and clang
      c. make -j $(nproc) gives many repetitions of the following two errors

fatal error: cassert: No such file or directory
 #include <cassert>
                   ^

fatal error: cctype: No such file or directory
 #include <cctype>
                  ^
compilation terminated.

The two includes cassert and and cctype are part of libstdc++6.dev  (see https://packages.ubuntu.com/search?suite=bionic&arch=any&mode=exactfilename&searchon=contents&keywords=cctype)

@smariani:

What is the output of

  find /usr/include -name cctype

? It should be something like

  /usr/include/c++/6/tr1/cctype
  /usr/include/c++/6/cctype

if not, you might want to reinstall li8bstdc++6.dev

  sudo apt-get install --reinstall libstdc++-6-dev

Regards, Harald

Am 17.02.21 um 17:57 schrieb Michael Behrisch:
Hi,
I think the build should work even with gcc 4.8, so please try to find which package provides the missing headers. StackOverflow mentions build-essential as a good candidate.

Best regards,
Michael

Am 10.02.21 um 11:28 schrieb smariani:
I know, but unfortunately I have not total freedom over the server...will try
;D



--
Sent from: http://sumo-user-mailing-list.90755.n8.nabble.com/
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

Back to the top