Commit d7c120f1 by John Kessenich

A few trivial things, including removing '/' as a command line option indicator…

A few trivial things, including removing '/' as a command line option indicator so absolute paths work naturally. git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@20839 e7fa87d3-cd2b-0410-9028-fcbf551c1848
parent 20169715
......@@ -8,6 +8,7 @@ Source Copyright
Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
Copyright (C) 2012-2013 LunarG, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
......
......@@ -132,7 +132,7 @@ int C_DECL main(int argc, char* argv[])
argc--;
argv++;
for (; argc >= 1; argc--, argv++) {
if (argv[0][0] == '-' || argv[0][0] == '/') {
if (argv[0][0] == '-') {
switch (argv[0][1]) {
case 'd': delay = true; break;
......
......@@ -67,6 +67,7 @@ SH_IMPORT_EXPORT int ShInitialize();
// Driver should call this at shutdown.
//
SH_IMPORT_EXPORT int __fastcall ShFinalize();
//
// Types of languages the compiler can consume.
//
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment