Jump to content

  • Log in with Facebook Log in with Twitter Log In with Google      Sign In   
  • Create Account

julus

Member Since 04 Mar 2012
Offline Last Active May 01 2013 07:57 PM
*****

Posts I've Made

In Topic: Compiling errors

05 April 2013 - 04:37 AM

View PostSilentJacket, on 05 April 2013 - 04:36 AM, said:

nevermind, I forgot to move it into the build folder


thanks, I got it working

should I be concerned that there are a lot of non-working dlls in it?
??? what do you mean not working dlls...

In Topic: Compiling errors

05 April 2013 - 02:57 AM

View PostSilentJacket, on 05 April 2013 - 12:12 AM, said:

/Developer/SDKs/MacOSX10.8.sdk not found!, trying to find something usable...
SDK selected is /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk, lets hope it works...
checking build system type... i386-apple-darwin12.3.0
checking host system type... i386-apple-darwin12.3.0
checking whether make sets $(MAKE)... yes
checking for gcc... clang-4.2
checking whether the C compiler works... no
configure: error: in `/Users/CMartin/Desktop/wine-1.3.13':
configure: error: C compiler cannot create executables
See `config.log' for more details
An error occurred during Wine Configure, build halted.
Cleaning up changes made for the build, if any...
fixing Macports install back
Please enter an administrator password if prompted
dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/sudo) is setuid or setgid
dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/sudo) is setuid or setgid

logout

[Process completed]




Did I break something?

clang-4.2? Hey edit that file correctly.
also wine 1.3.13 will not compile without patch (http://source.winehq...158dcff26691334)

In Topic: Compiling errors

04 April 2013 - 04:33 AM

try to compile via clang (steps how to modify wineskin build engine - http://portingteam.c...ild/#entry95153 ) gcc-4.2 is somehow stopping to work correctly..
note: works only on 1.5.23+

In Topic: Can't compile a patched custom wine build.

29 March 2013 - 04:50 PM

View Postzoroaster, on 26 March 2013 - 06:06 PM, said:

Compiling with clang works fine with Wineskin 2.5.10 Beta 3 and it also works with SDK 10.6, 10.7 and 10.8 now (and not only with SDK 10.6).

But it seems that the WineskinEngineBuild script uses a wrong option because I get a lot of warnings like this:

clang: warning: unknown warning option '-Wunused-but-set-parameter'; did you mean '-Wunused-parameter'?
warning: unknown warning option '-Wunused-but-set-parameter'; did you mean
	  '-Wunused-parameter'? [-Wunknown-warning-option]
Don't worry about warnings, only about errors (clang complains a lot while gcc keeps mouth shut)

In Topic: Can't compile a patched custom wine build.

19 March 2013 - 02:47 PM

open "~/Library/Application\ Support/Wineskin/EngineBase/W2.5.5v1EngineBase/WineskinEngineBuild"
find and change
export CC="gcc"
export CXX="g++"
to
export CC="clang"
export CXX="clang"

and

export CFLAGS="-m32 -O2 ${OSXSDK+-isysroot $OSXSDK} ${OSXVERSIONMIN+-mmacosx-version-min=$OSXVERSIONMIN} ${CPPFLAGS}"
to
export CFLAGS="-arch i386 -m32 -Os ${OSXSDK+-isysroot $OSXSDK} ${OSXVERSIONMIN+-mmacosx-version-min=$OSXVERSIONMIN} ${CPPFLAGS}"

If compilation fails somewhere in the middle, then add --disable-win16 to configure flags in wineskin. Also this works for latest wines, older require wine source code modification.