Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- catkin_make
- c언어로 쉽게 풀어쓴 자료구조
- aes ctr
- geth 설치 에러
- OS1
- gcc를 사용한 컴파일 예제
- build:15
- floyld
- build:12
- ros
- aes ctr decrypt
- aes decrypt
- ousterstudio
- error
- ar과 make 사용법
- ethereum
- studio
- geth 설치 안됨
- c
- Linux
- build 에러
- 시스템프로그래밍
- gcc 실행
- aes-128-ctr
- aes_ctr
- geth 설치
- aes-ctr
- gcc
- ouster
- LIDAR
Archives
- Today
- Total
목록ar과 make 사용법 (1)
CODERJH

ar과 make를 사용해서 앞의 포스팅에서 작성했던 mystrcpy()를 라이브러리 파일로 만든 후 컴파일 하는 과정의 코드와 간단한 설명을 작성해 두었다. 또한 make명령어를 사용해서 지수연산하는 코드와 컴파일 과정을 작성해 두었다. 1. mystrcpy.c 를 libmine.a로 라이브러리를 만든 후 컴파일 #include void mystrcpy(char *dst, char *src); int main() { char str[80]; mystrcpy(str,"Hello"); puts(str); } -> Hello.c #include void mystrcpy(char *dst, char *src) { int i=0; while(src[i]!='\0')// 마지막 부분이 되면 종료 { dst[i]=s..
SystemProgramming
2022. 5. 10. 00:19