plunker에서 jor1k 2
개요
plunker에서 jor1k 해 보았습니다.
linux 프로그래밍 해 보았다.
샘플 코드
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}
결과
컴파일 에러가 된다.
~ $ cat main.c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}
~ $ gcc main.c
/tmp/cccDMhHm.s: Assembler messages:
/tmp/cccDMhHm.s:61: Error: operand out of range (1073741797 not between -3355443
2 and 33554431)
~ $
~ $ uname -a
Linux openrisc 4.16.0+ #10 Fri Jun 1 12:21:48 UTC 2018 openrisc GNU/Linux
조사
이쪽이라면 성공한다. h tps://cs-에즈카치온. 기주 b. 이오/sys/#VM
이상.
Reference
이 문제에 관하여(plunker에서 jor1k 2), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ohisama@github/items/92cd1332a28bb7264907
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}
결과
컴파일 에러가 된다.
~ $ cat main.c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}
~ $ gcc main.c
/tmp/cccDMhHm.s: Assembler messages:
/tmp/cccDMhHm.s:61: Error: operand out of range (1073741797 not between -3355443
2 and 33554431)
~ $
~ $ uname -a
Linux openrisc 4.16.0+ #10 Fri Jun 1 12:21:48 UTC 2018 openrisc GNU/Linux
조사
이쪽이라면 성공한다. h tps://cs-에즈카치온. 기주 b. 이오/sys/#VM
이상.
Reference
이 문제에 관하여(plunker에서 jor1k 2), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ohisama@github/items/92cd1332a28bb7264907
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
~ $ cat main.c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}
~ $ gcc main.c
/tmp/cccDMhHm.s: Assembler messages:
/tmp/cccDMhHm.s:61: Error: operand out of range (1073741797 not between -3355443
2 and 33554431)
~ $
~ $ uname -a
Linux openrisc 4.16.0+ #10 Fri Jun 1 12:21:48 UTC 2018 openrisc GNU/Linux
이쪽이라면 성공한다. h tps://cs-에즈카치온. 기주 b. 이오/sys/#VM
이상.
Reference
이 문제에 관하여(plunker에서 jor1k 2), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ohisama@github/items/92cd1332a28bb7264907텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)