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
- build 에러
- aes ctr decrypt
- gcc 실행
- ouster
- ros
- gcc를 사용한 컴파일 예제
- build:12
- aes ctr
- aes-ctr
- ousterstudio
- error
- studio
- ar과 make 사용법
- geth 설치 에러
- Linux
- 시스템프로그래밍
- c
- build:15
- aes decrypt
- catkin_make
- aes-128-ctr
- ethereum
- floyld
- OS1
- geth 설치
- c언어로 쉽게 풀어쓴 자료구조
- geth 설치 안됨
- gcc
- LIDAR
- aes_ctr
Archives
- Today
- Total
목록ar과 make 사용법 (1)
CODERJH
ar과 make 사용법
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