VS2008 compiled with Fortran error

Updated on technology 2024-02-08
3 answers
  1. Anonymous users2024-02-05

    19: a tool returned an error code

    You can find such a post:

    Problem: Compiling a COM project, the DLL has been generated but the compiler prompts error prj0019: A tool returned an error code from"performing registration"Mistake.

    Analysis reason: It may be caused by the failure of the development tool to call the external executor to register this dll, but this error is still reported after replacing the registration tool, which seems to be another problem.

    Solution: Finally, find the command line in the custom build step item in the project's configuration

    The content is regsvr32 s c"$(targetpath)" echo regsvr32 exec. time

    (outdir)"

    By looking at the configuration parameters of regsvr32 in DOS, it is found that C is not its operator.

    Then delete the "c", recompile the program, and the problem is solved.

    You can try to solve the problem in this way.

  2. Anonymous users2024-02-04

    Microsoft Visual Studio 2008 is a powerful graphical interface from Microsoft, with a powerful graphical interface debugging function. It's like an empty shell of a robot. For example, if you install the bank manager function command on the robot, it can perform the bank manager's related operations, and if you install the factory manager's function instructions, it can perform the factory manager's related operations.

    Intel Visual Fortran 11 is a compiler that you write as a Fortran source that you write must be compiled into an executable file before it can be executed under Windows. It's the equivalent of the robot's functional instructions. Microsoft Visual Studio 2008 itself does not compile anything, it must call the appropriate compiler to compile the executable file.

    For example, Fortran**, it must call the Intel Visual Fortran compiler to compile it. If it's C++, call the corresponding C++ compiler to compile it. When you install Intel Visual Fortran 11, you have a compiler installed, which tells Microsoft Visual Studio 2008 that your machine now has this compiler, and you go to call it to compile Fortran.

  3. Anonymous users2024-02-03

    Visual Studio is a development environment launched by Microsoft, Visual Studio can be used to create Windows applications and web applications under the Windows platform, as well as to create network services, smart device applications and Office plug-ins. Visual Studio 2008 provides advanced development tools, debugging capabilities, database capabilities, and innovative features to help you quickly create today's most advanced applications on a variety of platforms.

    Intel Visual Fortran 11 is a compilation kit. Can be used with Visual Studio 2008. Do some software compilation and development.

Related questions