SCM Repository
View of /branches/pure-cfg/src/compiler/common/paths_sml.in
Parent Directory
|
Revision Log
Revision 1210 -
(download)
(annotate)
Fri May 13 04:51:39 2011 UTC (11 years, 1 month ago) by jhr
File size: 2657 byte(s)
Fri May 13 04:51:39 2011 UTC (11 years, 1 month ago) by jhr
File size: 2657 byte(s)
Remove -march=native option from C compiles
(* paths.sml * * COPYRIGHT (c) 2011 The Diderot Project (http://diderot-language.cs.uchicago.edu) * All rights reserved. * * @configure_input@ *) structure Paths = struct local val // = OS.Path.concat infixr 4 // in (* directories for Diderot stuff *) val diderotBin = "@DIDEROT_ROOT@" // "bin" val diderotLib = "@DIDEROT_ROOT@" // "lib" val diderotSrc = "@DIDEROT_ROOT@" // "src" val diderotInclude = diderotSrc // "include" (* directories for Teem stuff *) val teemBin = "@TEEM_DIR@" // "bin" val teemInclude = "@TEEM_DIR@" // "include" val teemLib = "@TEEM_DIR@" // "lib" val teemLinkFlags = if @LD_NEEDS_RPATH@ then ["-Wl,-rpath=" ^ teemLib, "-L" ^ teemLib, "-lteem"] else ["-L" ^ teemLib, "-lteem"] (* installation directories for Diderot stuff *) val installBin = "@prefix@" // "bin" val installInclude = "@prefix@" // "include" val installLib = "@prefix@" // "lib" (* paths to some useful tools *) local (* get the user's PATH environment variable as a list of paths. Note that this is * executed at build time. *) val PATH = let val path = (case (OS.Process.getEnv "PATH") of (SOME p) => p | _ => "") in String.fields (fn #":" => true | _ => false) path end (* getPath *) (* FIXME: with SML/NJ 110.73, we'll be able to use PathUtil.findExe *) fun findExe (paths, name) = let fun isExe p = OS.FileSys.access(p, [OS.FileSys.A_EXEC]) in if OS.Path.isAbsolute name then if isExe name then name else raise Fail(name ^" is not executable") else (case PathUtil.existsFile isExe paths name of SOME cmd => cmd | NONE => raise Fail(concat["unable to find ", name, " executable"]) (* end case *)) end in val dnorm = findExe ([diderotBin, installBin, diderotSrc // "dnorm"], "dnorm") val cc = let val (cmd::args) = String.tokens Char.isSpace "@CC@" val cmd = findExe (PATH, cmd) val args = if ("@CFLAG_M64@" <> "") then "@CFLAG_M64@" :: args else args in String.concatWith " " (cmd::args) end val cflags = { base = "@CFLAGS_BASE@", pthread = "@PTHREAD_CFLAGS@", debug = "-g -O0", (* ndebug = "-march=native -O3 -DNDEBUG" *) (* gcc complains about -march=native, even though the man page says it is supported *) ndebug = "-O3 -DNDEBUG" } val extraLibs = { base = "@LIBM@", pthread = "@PTHREAD_LIBS@", cl = "@OPENCL_LIBS@" } end (* local *) (* other configuration options *) val clEnabled = @OPENCL_ENABLED@ val cudaEnabled = @CUDA_ENABLED@ end (* local *) end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |