aboutsummaryrefslogtreecommitdiff
path: root/src/boot/driver/main.ml
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-06-28 09:39:43 -0700
committerGraydon Hoare <[email protected]>2010-06-28 09:39:43 -0700
commitd608c091680989e331b849fac8936a6e493bed43 (patch)
tree194928a43764fecce4f753533775994b13b98534 /src/boot/driver/main.ml
parentOnce more with feeling. Closes #13. (diff)
downloadrust-d608c091680989e331b849fac8936a6e493bed43.tar.xz
rust-d608c091680989e331b849fac8936a6e493bed43.zip
Some fixme-to-issue housekeeping.
Diffstat (limited to 'src/boot/driver/main.ml')
-rw-r--r--src/boot/driver/main.ml6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/boot/driver/main.ml b/src/boot/driver/main.ml
index 18416590..61d419e7 100644
--- a/src/boot/driver/main.ml
+++ b/src/boot/driver/main.ml
@@ -9,7 +9,7 @@ let _ =
let (targ:Common.target) =
match Sys.os_type with
"Unix" ->
- (* FIXME: this is an absurd heuristic. *)
+ (* FIXME (issue #69): this is an absurd heuristic. *)
if Sys.file_exists "/System/Library"
then MacOS_x86_macho
else Linux_x86_elf
@@ -26,7 +26,9 @@ let (sess:Session.sess) =
Session.sess_out = None;
Session.sess_library_mode = false;
Session.sess_alt_backend = false;
- (* FIXME: need something fancier here for unix sub-flavours. *)
+ (* FIXME (issue #69): need something fancier here for unix
+ * sub-flavours.
+ *)
Session.sess_targ = targ;
Session.sess_log_lex = false;
Session.sess_log_parse = false;