From d9c73b49d16c64db841185d4a3efe32bc4d4dc1f Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 28 Jan 2015 12:51:24 +0100 Subject: [PATCH] the compiler knows vxWorks is an OS --- compiler/condsyms.nim | 2 +- compiler/platform.nim | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/compiler/condsyms.nim b/compiler/condsyms.nim index 9a7a877714..8a5189167a 100644 --- a/compiler/condsyms.nim +++ b/compiler/condsyms.nim @@ -114,7 +114,7 @@ proc initDefines*() = defineSymbol("mswindows") defineSymbol("win32") of osLinux, osMorphos, osSkyos, osIrix, osPalmos, osQnx, osAtari, osAix, - osHaiku: + osHaiku, osVxWorks: # these are all 'unix-like' defineSymbol("unix") defineSymbol("posix") diff --git a/compiler/platform.nim b/compiler/platform.nim index c6cb3d2440..8360a9dcc1 100644 --- a/compiler/platform.nim +++ b/compiler/platform.nim @@ -21,8 +21,8 @@ type # conditionals to condsyms (end of module). osNone, osDos, osWindows, osOs2, osLinux, osMorphos, osSkyos, osSolaris, osIrix, osNetbsd, osFreebsd, osOpenbsd, osAix, osPalmos, osQnx, osAmiga, - osAtari, osNetware, osMacos, osMacosx, osHaiku, osJS, osNimrodVM, - osStandalone + osAtari, osNetware, osMacos, osMacosx, osHaiku, osVxworks, + osJS, osNimrodVM, osStandalone type TInfoOSProp* = enum @@ -135,7 +135,11 @@ const (name: "Haiku", parDir: "..", dllFrmt: "lib$1.so", altDirSep: ":", objExt: ".o", newLine: "\x0A", pathSep: ":", dirSep: "/", scriptExt: ".sh", curDir: ".", exeExt: "", extSep: ".", - props: {ospNeedsPIC, ospPosix, ospLacksThreadVars}), + props: {ospNeedsPIC, ospPosix, ospLacksThreadVars}), + (name: "VxWorks", parDir: "..", dllFrmt: "lib$1.so", altDirSep: "/", + objExt: ".o", newLine: "\x0A", pathSep: ";", dirSep: "\\", + scriptExt: ".sh", curDir: ".", exeExt: "", extSep: ".", + props: {ospNeedsPIC, ospPosix, ospLacksThreadVars}), (name: "JS", parDir: "..", dllFrmt: "lib$1.so", altDirSep: "/", objExt: ".o", newLine: "\x0A",