Results 1 to 2 of 2
cc1: error: stdout: Value too large for defined data type
wat is this error ?...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-07-2008 #1Just Joined!
- Join Date
- Jul 2008
- Posts
- 24
kernel compilaing error
cc1: error: stdout: Value too large for defined data type
wat is this error ?
- 10-08-2008 #2Linux Newbie
- Join Date
- Oct 2004
- Posts
- 158
It means you are overflowing a datatype - example
32767 (0xffff) is beyond the range of unsigned char 0 - 255.Code:unsigned char ch=0xffff;
It may also mean you are assigning a short to a long int, for example.


Reply With Quote
