plunker에서 jor1k 2

2443 단어 web-linuxjor1kPlunker

개요



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



이상.

좋은 웹페이지 즐겨찾기