aros-development-team / AROS

Main AROS repository for active development. Contains the main Operating System components and Build System.
http://www.aros.org
Other
366 stars 60 forks source link

iostream hangs on m68k (thx bsek) #36

Open wawatok opened 4 years ago

wawatok commented 4 years ago

the following code doesnt output anything and doesnt complete on m68k. it is tested working on x86_64.

#include <iostream> int main(int argc, char** argv) { std::cout << "test" << std::endl; return 0; }

wawatok commented 4 years ago

has been tested with gcc 6.5.0 and 9.1.0 on m68k so far.