h_osx.rc
author convert-repo
Sun, 10 Feb 2019 04:31:24 +0000
changeset 1590 a1e0688b2f39
parent 1561 6a5fa5c54b29
child 1603 bd3d01c014c8
permissions -rw-r--r--
update tags

"*
 * Encoding: iso8859-1
 *
 * $Header$
 *
 * MIMEType: application/x-smalltalk-source
 *
 * ST/X startup configuration file - for OS-X.
 *
 * DONT add site specific things here - use your own h_xxx.rc file instead
 * where xxx stands for your hostname(s)
 *"

"/
"/ you should have XCode (at least the command line tools) installed
"/

Smalltalk wasStartedFromImage ifFalse:[
    ParserFlags
	ccCompilationOptions:
	    '-O3 -mmacosx-version-min=10.6'
	  , ' -I../../support/VGL/vogl/src'
	  , ' -F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frameworks'
	  , ' -framework Foundation'
	  , ' -framework ApplicationServices'
	  , ' -framework CoreFoundation'
	  , ' -lobjc'.

    "/ includePath: -I../../include
    "/ link args: -shared -mmacosx-version-min=10.3 -arch x86_64 librun.so
].
!