[LLVMbugs] [Bug 7294] New: Please add Minix to the list of excluded OS in tools/clang/tools/Makefile
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Thu Jun 3 07:46:25 PDT 2010
http://llvm.org/bugs/show_bug.cgi?id=7294
Summary: Please add Minix to the list of excluded OS in
tools/clang/tools/Makefile
Product: new-bugs
Version: trunk
Platform: PC
OS/Version: other
Status: NEW
Severity: normal
Priority: P
Component: new bugs
AssignedTo: unassignedbugs at nondot.org
ReportedBy: reeuwijk at few.vu.nl
CC: llvmbugs at cs.uiuc.edu
The file tools/clang/tools/Makefile
contains the line
ifeq ($(OS), $(filter $(OS), Cygwin MingW))
to avoid compiling the subdirectories libclang and c-index-test on these
operating systems, since Cygwin and MingW do not support dynamic libraries.
Since Minix does not support dynamic libraries either, it would be helpful if
this line was changed to:
ifeq ($(OS), $(filter $(OS), Cygwin MingW Minix))
With this modification (and a few others that are being reported separately),
Minix can compile recent trunk versions of llvm and clang.
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the llvm-bugs
mailing list