Wrong evaluation of environment variable in Visual Studio 2017Should I add the Visual Studio .suo and .user files to source control?Setting environment variables on OS XUsing Git with Visual Studio.gitignore for Visual Studio Projects and SolutionsDifference between Build Solution, Rebuild Solution, and Clean Solution in Visual Studio?Read environment variables in Node.jsHow to access environment variable values?List all environment variables from command line?How do I delete an exported environment variable?Can you force Visual Studio to always run as an Administrator in Windows 8?

Why does Captain Marvel in the MCU not have her sash?

Is population size a parameter, or sample size a statistic?

Are the coefficients of certain product of Rogers-Ramanujan Continued Fraction non-negative?

Can I exile my opponent's Progenitus/True-Name Nemesis with Teferi, Hero of Dominaria's emblem?

Science fiction episode about the creation of a living pegasus, even though flightless

Which altitudes are safest for VFR?

Can I target any number of creatures, even if the ability would have no effect?

Received a package but didn't order it

Whaling ship logistics

Can I build a half bath without permits?

what organs or modifications would be needed to have hairy fish?

What are examples of EU policies that are beneficial for one EU country, disadvantagious for another?

How do we know neutrons have no charge?

Sci-fi movie with one survivor and an organism(?) recreating his memories

As a team leader is it appropriate to bring in fundraiser candy?

Convert a string of digits from words to an integer

How can the dynamic linker/loader itself be dynamically linked as reported by `file`?

Assembly of PCBs containing a mix of SMT and thru-hole parts?

What should I consider when deciding whether to delay an exam?

Delete n lines skip 1 line script

Does the app TikTok violate trademark?

Is the illusion created by Invoke Duplicity affected by difficult terrain?

`PlotLegends` not showing correct colour

How many stack cables would be needed if we want to stack two 3850 switches



Wrong evaluation of environment variable in Visual Studio 2017


Should I add the Visual Studio .suo and .user files to source control?Setting environment variables on OS XUsing Git with Visual Studio.gitignore for Visual Studio Projects and SolutionsDifference between Build Solution, Rebuild Solution, and Clean Solution in Visual Studio?Read environment variables in Node.jsHow to access environment variable values?List all environment variables from command line?How do I delete an exported environment variable?Can you force Visual Studio to always run as an Administrator in Windows 8?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am using FANN library (it doesn't matter what this library does) in my x64 VS project. I want to add *.lib file in "Additional Dependencies" (Project->Properties->Linker->Input) library. As I do not want to hardcode path to libraries, so that my solution can be opened on computer with library in different location, I want to use environment variables. For this library it is %FANN_DIR%. When I insert such string in "Additional Dependencies" (%FANN_DIR%binfannfloat.lib) it evaluates to "úNN_DIR%binfannfloat.lib". Building of the project ends with "LNK1181 cannot open input file 'úNN_DIR%binfannfloat.lib'" I have used this approach on other libraries without any problem. What is a proper way to include environment variable %FANN_DIR% location?



I tried:



1) Provided full path - solution compiles



2) Used this approach on other libraries - it worked



3) Used %%, % and @"%(...)"



4) Checked that this is probably caused because of %FA, although I can't
change the environment variable naming



Expected results:
%FANN_DIR%binfannfloat.lib to evaluate to C:FANN-2.2.0bitfannfloat.lib



Actual results:
%FANN_DIR%binfannfloat.lib evaluates to úNN_DIR%binfannfloat.lib










share|improve this question






























    0















    I am using FANN library (it doesn't matter what this library does) in my x64 VS project. I want to add *.lib file in "Additional Dependencies" (Project->Properties->Linker->Input) library. As I do not want to hardcode path to libraries, so that my solution can be opened on computer with library in different location, I want to use environment variables. For this library it is %FANN_DIR%. When I insert such string in "Additional Dependencies" (%FANN_DIR%binfannfloat.lib) it evaluates to "úNN_DIR%binfannfloat.lib". Building of the project ends with "LNK1181 cannot open input file 'úNN_DIR%binfannfloat.lib'" I have used this approach on other libraries without any problem. What is a proper way to include environment variable %FANN_DIR% location?



    I tried:



    1) Provided full path - solution compiles



    2) Used this approach on other libraries - it worked



    3) Used %%, % and @"%(...)"



    4) Checked that this is probably caused because of %FA, although I can't
    change the environment variable naming



    Expected results:
    %FANN_DIR%binfannfloat.lib to evaluate to C:FANN-2.2.0bitfannfloat.lib



    Actual results:
    %FANN_DIR%binfannfloat.lib evaluates to úNN_DIR%binfannfloat.lib










    share|improve this question


























      0












      0








      0








      I am using FANN library (it doesn't matter what this library does) in my x64 VS project. I want to add *.lib file in "Additional Dependencies" (Project->Properties->Linker->Input) library. As I do not want to hardcode path to libraries, so that my solution can be opened on computer with library in different location, I want to use environment variables. For this library it is %FANN_DIR%. When I insert such string in "Additional Dependencies" (%FANN_DIR%binfannfloat.lib) it evaluates to "úNN_DIR%binfannfloat.lib". Building of the project ends with "LNK1181 cannot open input file 'úNN_DIR%binfannfloat.lib'" I have used this approach on other libraries without any problem. What is a proper way to include environment variable %FANN_DIR% location?



      I tried:



      1) Provided full path - solution compiles



      2) Used this approach on other libraries - it worked



      3) Used %%, % and @"%(...)"



      4) Checked that this is probably caused because of %FA, although I can't
      change the environment variable naming



      Expected results:
      %FANN_DIR%binfannfloat.lib to evaluate to C:FANN-2.2.0bitfannfloat.lib



      Actual results:
      %FANN_DIR%binfannfloat.lib evaluates to úNN_DIR%binfannfloat.lib










      share|improve this question














      I am using FANN library (it doesn't matter what this library does) in my x64 VS project. I want to add *.lib file in "Additional Dependencies" (Project->Properties->Linker->Input) library. As I do not want to hardcode path to libraries, so that my solution can be opened on computer with library in different location, I want to use environment variables. For this library it is %FANN_DIR%. When I insert such string in "Additional Dependencies" (%FANN_DIR%binfannfloat.lib) it evaluates to "úNN_DIR%binfannfloat.lib". Building of the project ends with "LNK1181 cannot open input file 'úNN_DIR%binfannfloat.lib'" I have used this approach on other libraries without any problem. What is a proper way to include environment variable %FANN_DIR% location?



      I tried:



      1) Provided full path - solution compiles



      2) Used this approach on other libraries - it worked



      3) Used %%, % and @"%(...)"



      4) Checked that this is probably caused because of %FA, although I can't
      change the environment variable naming



      Expected results:
      %FANN_DIR%binfannfloat.lib to evaluate to C:FANN-2.2.0bitfannfloat.lib



      Actual results:
      %FANN_DIR%binfannfloat.lib evaluates to úNN_DIR%binfannfloat.lib







      visual-studio environment-variables






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 19:30









      user1762979user1762979

      361 silver badge3 bronze badges




      361 silver badge3 bronze badges

























          0






          active

          oldest

          votes














          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55405535%2fwrong-evaluation-of-environment-variable-in-visual-studio-2017%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55405535%2fwrong-evaluation-of-environment-variable-in-visual-studio-2017%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript