Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: Linux C++ from windows  (Read 928 times)

0 Members and 1 Guest are viewing this topic.

Floyd10

  • Guest
  • Trade Count: (0)
Linux C++ from windows
« on: November 20, 2004, 02:23:10 am »
anyone have any good online tutorials? I know how to program for C++ in windows, but not linux. Needs helps...

TalkingOctopus

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1722
  • Last login:July 20, 2025, 03:56:38 am
  • @!#?@!
    • My Arcade
Re:Linux C++ from windows
« Reply #1 on: November 20, 2004, 10:58:47 am »
The language does not change on different platforms.  What are you trying  to do?  Compile your program using g++  w/ a Makefile on linux. http://www.cs.wm.edu/cspages/computing/tutorial/gpp.html - g++ tutorial.

Floyd10

  • Guest
  • Trade Count: (0)
Re:Linux C++ from windows
« Reply #2 on: November 20, 2004, 11:06:47 am »
no... but a lot of includes I heard were different like <windows.h> and such.

TalkingOctopus

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1722
  • Last login:July 20, 2025, 03:56:38 am
  • @!#?@!
    • My Arcade
Re:Linux C++ from windows
« Reply #3 on: November 20, 2004, 03:12:15 pm »
Yes windows specific libraries and windows system calls will obviously not work on Linux.  They are also not part of the C++ standard.  If you want to make a GUI in Linux, you have to find the appropriate library and go from there.  I don't really know much of anything about GUIs so I can't really help there.  However, One of my friends really likes qt, which is available on many platfroms.  I think there is a free student version you could try out.
« Last Edit: November 20, 2004, 03:13:32 pm by TalkingOctopus »