You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just tried building tidy-html5 on FreeBSD 10 (which ships clang, not gcc) and it fails because the makefile is hardcoded to assume gcc is installed. The POSIX standard says that systems must ship cc, so the correct approach is to call cc and let the OS call the correct compiler with that.
The text was updated successfully, but these errors were encountered:
The latest development branch, develop-500, no longer has any hardcoded make files... it uses cmake to generate the Makefile...
It would be appreciated if you could checkout develop-500 branch, build and test, and hopefully confirm this issue can be closed... Thanks...
Just tried building tidy-html5 on FreeBSD 10 (which ships clang, not gcc) and it fails because the makefile is hardcoded to assume gcc is installed. The POSIX standard says that systems must ship
cc
, so the correct approach is to callcc
and let the OS call the correct compiler with that.The text was updated successfully, but these errors were encountered: