티스토리 뷰
IT&MAC Life
[Python] pip install 시 ' for loop initial declarations are only allowed in C99 mode' 오류 발생하는 경우
늘품아빠 2020. 6. 3. 10:11반응형

C99는 C 언어의 현대 개정판이자, C 언어 표준의 과거판인 ISO/IEC 9899:1999의 비공식 이름 (출처: 위키피디아)
컴파일러에게 C99 모드로 컴파일하라는 옵션을 주어야 한다고 함
환경변수 CFLAGS 에 -std=c99 옵션을 세팅하고 설치한다.
- 리눅스에서는 터미널 창에서 'export CFLAGS=-std=c99'
- JupyterLab에서는 '%env CFLAGS=-std=c99'
참고) https://stackoverflow.com/questions/2935047/how-to-use-make-and-compile-as-c99
for(int i=0; i<nsteps; i++) {
^
dtw/dtw_computeCM.c:144:11: error: redefinition of ‘i’
for(int i=0; i<m*n; i++)
^
dtw/dtw_computeCM.c:119:11: note: previous definition of ‘i’ was here
for(int i=0; i<nsteps; i++) {
^
dtw/dtw_computeCM.c:144:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
for(int i=0; i<m*n; i++)
^
dtw/dtw_computeCM.c:149:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
for(int j=0; j<m; j++) {
^
dtw/dtw_computeCM.c:150:5: error: ‘for’ loop initial declarations are only allowed in C99 mode
for(int i=0; i<n; i++) {
^
dtw/dtw_computeCM.c:51:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
for(int z=0; z<npats; z++) \
^
dtw/dtw_computeCM.c:160:7: note: in expansion of macro ‘CLEARCLIST’
CLEARCLIST;
^
dtw/dtw_computeCM.c:161:7: error: ‘for’ loop initial declarations are only allowed in C99 mode
for(int s=0; s<nsteps; s++) {
^
error: command 'gcc' failed with exit status 1
반응형
LIST
'IT&MAC Life' 카테고리의 다른 글
| NiFi 에 Scouter APM 툴을 적용해서 모니터링 하기 (2) | 2021.05.20 |
|---|---|
| 복직 후 새로운 IT 기술 환경에서 일하게 되었습니다. (0) | 2020.06.19 |
| Galaxy Note 10 S-Pen 교체기 (0) | 2019.12.24 |
| CJ택배 스미싱 문자 받고 앱까지 설치했네요 ㅠㅠ (13) | 2019.07.11 |
| 음원 유통의 혁신 '아이튠즈(iTunes)' 18년만에 안녕~ 잘가~ (0) | 2019.06.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 아빠육아휴직
- 양평카페
- 초등학생도 이해하는 뉴스
- 양평시장
- 책리뷰
- 옥천면카페
- 아빠의달
- 양평여행
- 옥천면맛집
- 도서리뷰
- 육아휴직
- 삼성큐브
- 김용신의그대와여는아침
- 양평가볼만한곳
- 다둥이아빠
- 호주가족여행
- 양평
- 양평맛집
- 옥천어린이집
- 옥천면
- 양평커피
- 순대국
- 책서평
- 사연당첨
- 양평냉면
- 옥천면커피
- 다둥이
- 양평전원생활
- 전원생활
- 양평군립미술관
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
글 보관함