Reputation: 499
I am attempting to build google V8 with Visual Studio 2013 according to Building with Gyp. However, I am getting this error on practically every .vcxproj file in my solution explorer:
Error 12 error D8021: invalid numeric argument '/H,' C:\v8\tools\gyp\cl v8_base_3
According to the MSDN, "/H restricts the length of external names." and "/H is deprecated; the maximum length limits have been increased and /H is no longer needed."
I'm not sure if this is a problem with visual studio versions or if I need to remove this flag from some code somewhere. Any chance I could get some help? Thank so much
Upvotes: 2
Views: 305
Reputation: 657
I think the error is pretty self-explanatory.
Error 12 error D8021: invalid numeric argument '/H,' C:\v8\tools\gyp\cl v8_base_3
.
i.e After /H
the compiler expects a numeric argument. However it encountered a comma '/H,'
. Could you paste the snippets of your .vcproject
file?
Did you try providing a numeric argument after '/H'
?
Upvotes: 2