pawn-lang / compiler

Pawn compiler for SA-MP with bug fixes and new features - runs on Windows, Linux, macOS
Other
301 stars 71 forks source link

Can't compile on linux! #713

Open TheRedM opened 2 years ago

TheRedM commented 2 years ago

Screenshot_20220708-070936_Admin Hands.jpg

I don't know what i'm doing wrong! According to the documentation i have to just add the include path using "-i" but i'm getting this error!

ghost commented 2 years ago

Don't put a space between -i and path. If you're planning on always using the same includes directory, you could consider setting an alias in your .profile file. Eg. alias pawncc='pawncc -\;+ -\(+ -i/home/ubuntu/.pawncc/include/'

Also: https://textnot.pictures/

TheRedM commented 2 years ago

Don't put a space between -i and path. If you're planning on always using the same includes directory, you could consider setting an alias in your .profile file. Eg. alias pawncc='pawncc -\;+ -\(+ -i/home/ubuntu/.pawncc/include/'

Also: https://textnot.pictures/

Thank you, it worked, it's an unusual syntax!