Changeset 7852 for src/Pugs/Embed
- Timestamp:
- 11/05/05 15:31:10 (3 years ago)
- Files:
-
- 1 modified
-
src/Pugs/Embed/Parrot.hsc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Embed/Parrot.hsc
r7552 r7852 42 42 args <- getEnv "PUGS_PARROT_OPTS" 43 43 let args' | isJust args && fromJust args /= "" = fromJust args 44 | otherwise = "- C"44 | otherwise = "-g" -- "-C" -- XXX broken on parrot 0.3.1 45 45 rawSystem cmd [args', file] 46 46 return () … … 161 161 #if PARROT_JIT_CAPABLE && defined(PARROT_JIT_CORE) 162 162 parrot_set_run_core interp PARROT_JIT_CORE 163 #elsif defined(PARROT_CGOTO_CORE) 164 parrot_set_run_core interp PARROT_CGOTO_CORE 163 165 #elsif defined(PARROT_CGP_CORE) 166 -- XXX broken on parrot 0.3.1 164 167 parrot_set_run_core interp PARROT_CGP_CORE 165 168 #endif
