We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is hard to build on Linux
I always have to do it like this:
$ fpc PUCUConvertUnicode.dpr .. $ ./PUCUConvertUnicode .. $ fpc -Twin32 PUCUGenCodePages.dpr Error: Illegal parameter: -Twin32 $ fpc -Twin32 -Pi386 PUCUGenCodePages.dpr ... $ wine ./PUCUGenCodePages.exe $ fpc -B PUCUBuild.dpr ... $ ./PUCUBuild
The text was updated successfully, but these errors were encountered:
or in one line:
fpc -B PUCUConvertUnicode.dpr && ./PUCUConvertUnicode && fpc -Twin32 -Pi386 -B PUCUGenCodePages.dpr && wine ./PUCUGenCodePages.exe && fpc -B PUCUBuild.dpr && ./PUCUBuild
but it gives different codepage arrays. Wine must be supporting other codepages than Windows
Sorry, something went wrong.
No branches or pull requests
This is hard to build on Linux
I always have to do it like this:
The text was updated successfully, but these errors were encountered: