Changeset 8672 for src/Pugs/Embed
- Timestamp:
- 01/15/06 07:01:53 (3 years ago)
- Files:
-
- 1 modified
-
src/Pugs/Embed/Parrot.hsc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Embed/Parrot.hsc
r8392 r8672 52 52 args <- getEnv "PUGS_PARROT_OPTS" 53 53 let args' | isJust args && fromJust args /= "" = fromJust args 54 | otherwise = "- g" -- "-C" -- XXX broken on parrot 0.3.154 | otherwise = "-C" 55 55 rawSystem cmd [args', file] 56 56 return () … … 169 169 interp <- parrot_new nullPtr 170 170 writeIORef _ParrotInterp interp 171 #if PARROT_JIT_CAPABLE && defined(PARROT_JIT_CORE) 171 #if PARROT_JIT_CAPABLE && defined(PARROT_JIT_CORE) && XXX_PARROT_JIT_IS_NOT_BROKEN 172 172 parrot_set_run_core interp PARROT_JIT_CORE 173 173 #elsif defined(PARROT_CGOTO_CORE) 174 174 parrot_set_run_core interp PARROT_CGOTO_CORE 175 175 #elsif defined(PARROT_CGP_CORE) 176 -- XXX broken on parrot 0.3.1177 176 parrot_set_run_core interp PARROT_CGP_CORE 178 177 #endif
