Thread: [F-Script-talk] Leopard and GC?
Brought to you by:
pmougin
From: Timothy R. <tr...@si...> - 2007-11-09 20:17:53
|
Is there a version in the works that supports GC? I can't link with my 10.5 GC enabled code. |
From: Philippe M. <pm...@ac...> - 2007-11-10 10:06:10
|
Le 9 nov. 07 =E0 21:17, Timothy Reaves a =E9crit : > Is there a version in the works that supports GC? I can't link with > my 10.5 GC enabled code. The next version will have GC support. You can download a pre-release =20= at http://www.fscript.org/download/tmp/FScript.zip Philippe Mougin |
From: Timothy R. <tr...@si...> - 2007-11-10 16:29:29
|
On Nov 10, 2007, at 5:06 AM, Philippe Mougin wrote: > > Le 9 nov. 07 =E0 21:17, Timothy Reaves a =E9crit : > >> Is there a version in the works that supports GC? I can't link with >> my 10.5 GC enabled code. > > The next version will have GC support. You can download a pre-release > at http://www.fscript.org/download/tmp/FScript.zip > > Philippe Mougin That project still has no GC support; are you sure you that was the =20 correct one?= |
From: Philippe M. <pm...@ac...> - 2007-11-10 17:52:36
|
Le 10 nov. 07 =E0 17:29, Timothy Reaves a =E9crit : > > On Nov 10, 2007, at 5:06 AM, Philippe Mougin wrote: >> >> Le 9 nov. 07 =E0 21:17, Timothy Reaves a =E9crit : >> >>> Is there a version in the works that supports GC? I can't link with >>> my 10.5 GC enabled code. >> >> The next version will have GC support. You can download a pre-release >> at http://www.fscript.org/download/tmp/FScript.zip >> >> Philippe Mougin > > That project still has no GC support; are you sure you that was the > correct one? Yes. Just change the "Objective-C Garbage Collection" build setting to =20= "supported" or "required". Philippe |
From: Timothy R. <tr...@si...> - 2007-11-10 19:02:20
|
On Nov 10, 2007, at 12:52 PM, Philippe Mougin wrote: > > Le 10 nov. 07 =E0 17:29, Timothy Reaves a =E9crit : >> >> On Nov 10, 2007, at 5:06 AM, Philippe Mougin wrote: >>> >>> Le 9 nov. 07 =E0 21:17, Timothy Reaves a =E9crit : >>> >>>> Is there a version in the works that supports GC? I can't link =20 >>>> with >>>> my 10.5 GC enabled code. >>> >>> The next version will have GC support. You can download a pre-=20 >>> release >>> at http://www.fscript.org/download/tmp/FScript.zip >>> >>> Philippe Mougin >> >> That project still has no GC support; are you sure you that was the >> correct one? > > Yes. Just change the "Objective-C Garbage Collection" build setting to > "supported" or "required". > > Philippe The build fails (for the framework) with six errors: /Users/treaves/Downloads/FScript/FScriptFramework/ArrayRep.h:13: =20 error: syntax error before 'NSUInteger' The Why wouldn't it like NSUInteger? Wh= |
From: Joseph M. <pu...@sh...> - 2007-11-12 17:41:20
|
Yes, I am just learning about F-script. I am slightly familiar with FClass but when I try to save a class (say 'A') created with FClass and then reload it I get the nil object. thanks for any help, Joseph Mann |
From: Andrew W. <wei...@wi...> - 2007-11-13 00:53:15
Attachments:
smime.p7s
|
Joseph, FSClass does not support saving/restoring; because it has to interact with the Objective-C runtime, it creates data structures that would not survive the serialization process. Now that you suggest it, I may investigate this functionality for a future release. If you use the fscript Unix interface (available at http://pages.cs.wisc.edu/~weinrich) , you can put classes you create into a separate file, which can be loaded with the command "sys import:'MyClass'." Andrew Weinrich wei...@wi... http://www.cs.wisc.edu/~weinrich On Nov 12, 2007, at 11:39 AM, Joseph Mann wrote: > Yes, I am just learning about F-script. > > I am slightly familiar with FClass but when I try to save a class > (say 'A') created with FClass and > then reload it I get the nil object. > > > thanks for any help, > Joseph Mann > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a > browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > F-Script-talk mailing list > F-S...@li... > https://lists.sourceforge.net/lists/listinfo/f-script-talk |
From: Philippe M. <pm...@ac...> - 2007-11-16 20:48:58
|
Le 10 nov. 07 =E0 20:02, Timothy Reaves a =E9crit : > On Nov 10, 2007, at 12:52 PM, Philippe Mougin wrote: >> Le 10 nov. 07 =E0 17:29, Timothy Reaves a =E9crit : >>> On Nov 10, 2007, at 5:06 AM, Philippe Mougin wrote: >>>> Le 9 nov. 07 =E0 21:17, Timothy Reaves a =E9crit : >>>> >>>>> Is there a version in the works that supports GC? I can't link =20= >>>>> with >>>>> my 10.5 GC enabled code. >>>> >>>> The next version will have GC support. You can download a pre-=20 >>>> release >>>> at http://www.fscript.org/download/tmp/FScript.zip >>>> >>>> Philippe Mougin >>> >>> That project still has no GC support; are you sure you that was the >>> correct one? >> >> Yes. Just change the "Objective-C Garbage Collection" build setting =20= >> to >> "supported" or "required". >> >> Philippe > > > The build fails (for the framework) with six errors: > /Users/treaves/Downloads/FScript/FScriptFramework/ArrayRep.h:13: =20 > error: syntax error before 'NSUInteger' > > The Why wouldn't it like NSUInteger? > W It works for me. Have you made any other modification to the build settings? Philippe |
From: Jeff B. <hyp...@ma...> - 2007-11-16 22:37:55
|
On Nov 16, 2007, at 2:48 PM, Philippe Mougin wrote: > Le 10 nov. 07 =E0 20:02, Timothy Reaves a =E9crit : >> The build fails (for the framework) with six errors: >> /Users/treaves/Downloads/FScript/FScriptFramework/ArrayRep.h:13: =20 >> error: syntax error before 'NSUInteger' >> >> The Why wouldn't it like NSUInteger? >> W > > It works for me. > Have you made any other modification to the build settings? I got the same errors as Tim, but got it to work (thanks to Rainer's =20 help) by making sure that the "Cross-Develop Using Target SDK:" =20 setting in the info panel for the project was set to "Mac OS X 10.5" =20 in the "General" panel, and then *also* changing the "Mac OS X =20 Deployment Target" to "Mac OS X 10.5" in the "Build" panel of the =20 Target's info. (I still get 147 warnings about cString, ivar_list, =20 etc, but it builds -- and works with the fscript command line tool.) That said, I could only get the framework to build this way. I can't =20 get the F-Script target, with the two test programs, to build, even =20 with the above changes. -Jeff= |
From: Philippe M. <pm...@ac...> - 2007-11-16 23:01:23
|
Thanks a lot Jeff! Now I think I see what the problem is. You are =20 using the "deployment" build configuration, right? Switch to the =20 "development" build configuration. It should work much better... Let =20 me know. I'll post a new version with a working deployment build configuration =20= soon. Phil Le 16 nov. 07 =E0 23:37, Jeff Biggus a =E9crit : > On Nov 16, 2007, at 2:48 PM, Philippe Mougin wrote: > >> Le 10 nov. 07 =E0 20:02, Timothy Reaves a =E9crit : >>> The build fails (for the framework) with six errors: >>> /Users/treaves/Downloads/FScript/FScriptFramework/ArrayRep.h:13: >>> error: syntax error before 'NSUInteger' >>> >>> The Why wouldn't it like NSUInteger? >>> W >> >> It works for me. >> Have you made any other modification to the build settings? > > > I got the same errors as Tim, but got it to work (thanks to Rainer's > help) by making sure that the "Cross-Develop Using Target SDK:" > setting in the info panel for the project was set to "Mac OS X 10.5" > in the "General" panel, and then *also* changing the "Mac OS X > Deployment Target" to "Mac OS X 10.5" in the "Build" panel of the > Target's info. (I still get 147 warnings about cString, ivar_list, > etc, but it builds -- and works with the fscript command line tool.) > > That said, I could only get the framework to build this way. I can't > get the F-Script target, with the two test programs, to build, even > with the above changes. > > -Jeff > = ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > F-Script-talk mailing list > F-S...@li... > https://lists.sourceforge.net/lists/listinfo/f-script-talk > |
From: Jeff B. <hyp...@ma...> - 2007-11-16 23:09:09
|
On Nov 16, 2007, at 5:01 PM, Philippe Mougin wrote: > Thanks a lot Jeff! Now I think I see what the problem is. You are > using the "deployment" build configuration, right? Switch to the > "development" build configuration. It should work much better... Let > me know. ah, yes! the development build works fine. thanks. (I needed the framework as deployment to work with Andrew's command- line fscript, so happily that built.) -Jeff |