Commit 1afe3e77 by Rasmus Villemoes Committed by Jeff Law

* inclhack.def (vxworks_iolib_include_unistd): New fix.

From-SVN: r260763
parent f22ed1ed
2018-05-25 Rasmus Villemoes <rasmus.villemoes@prevas.dk>
* inclhack.def (vxworks_iolib_include_unistd): New fix.
2018-04-18 David Malcolm <dmalcolm@redhat.com>
PR jit/85384
......
......@@ -5011,6 +5011,22 @@ fix = {
};
/*
* This hack ensures the include_next in the fixed unistd.h actually
* finds the system's unistd.h and not the fixed unistd.h again.
*/
fix = {
hackname = vxworks_iolib_include_unistd;
files = ioLib.h;
mach = "*-*-vxworks*";
select = "#include \"unistd.h\"";
c_fix = format;
c_fix_arg = "#include <unistd.h>";
test_text = "#include \"unistd.h\"";
};
/*
* There are several name conflicts with C++ reserved words in X11 header
* files. These are fixed in some versions, so don't do the fixes if
* we find __cplusplus in the file. These were found on the RS/6000.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment