gcc-3.2.1을 처음 쓰는데;; ㅜ.ㅜ

changkhan의 이미지

FreeBSD 4.6에서 프로그래밍을 하다가, 새 서버에 FreeBSD 5.0을 깔았습니다. 그리고 전에 만들던 소소들을 새 서버로 옮겨서 컴파일을 하는데, 컴파일러가 자꾸 이상한 부분에서 딴지를 거는겁니다;;
음;; 새로운 컴파일러가 뭔가 좀 이상하다 싶어서 헬로월드를 컴파일 해 봤는데요;;;
#include <stdio.h>

void main()
{
printf("hello world!\n");
}

g++ test.cpp

글쎄 이 프로그램조차 "test.cpp4 `main' must return `int'"라는 에러를 내네요;;;;

디버그 레벨이 높아서 그런것 같은데, 이런 소소한 것들에 딴지걸리지 않을 방법이 있었까요?;;

sunyzero의 이미지

저런 메시지는 그냥 감수하셔야 합니다.

아니면 저 말대로 그냥 int main()으로 쓰시던지요.

========================================
* The truth will set you free.

changkhan의 이미지

음.. 저 메세지는 워닝이 아니고 에러이기 때문에 그냥 감수할 수가 없군요^^; 그리고 이부분이 문제라 컴파일이 안된다는게 아니라.. 이런식으로 문제되는 부분이 셀 수 없이 많아서, 이전 소스들이 완전 무용지물이 되어버렸다는겁니다. 컴파일러에 맞춰서 소스를 다 고치면 일이 너무 많아서요^^;;

changkhan의 이미지

추가로 'sgi stl'과도 호환이 안되는 것 같은 느낌인데;; 암울하군요;; 어떻게 해야할지;;

sunyzero의 이미지

한번 gcc로 컴파일해보시기 바랍니다. 그래도 에러로 떨어지나요?

========================================
* The truth will set you free.

cdpark의 이미지

C++에서 main 함수는 반드시

int main();
int main(int argc, char **argv);

이 형태여야 합니다. main 함수는 void 형을 돌려주는 함수가 아닙니다.

stdio를 쓰는 제대로 된 C++ 코드는

#include <cstdio> 

int main() 
{ 
   std::printf("hello world!\n"); 

return 0;
} 

랍니다.

STL 관련 문제는 namespace 문제인 듯 싶군요.

knight2000의 이미지

저역시 ... void main()에 익숙합니다만...
뭐, 표준이 아니라는 데 뭐라 할 말이 없더군요.

표준은 int main()입니다.
ㅡ.ㅡ;

그런데, 전에는 경고였는데, 에러로 바뀌었나 보군요.

===== ===== ===== ===== =====
knight2000 of SALM.
SALM stood for SALM Ain't a Life Model.
SALM is not the life model, but SALM is just the life.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.