in reply to Re^7: problem with par as other user
in thread problem with par as other user

you should list perl58.lib in your command line?
gcc.exe "C:\test\start.c" -o "C:\test\start.exe" -I"C:\Dev-Cpp\include +" -I"C:\Perl\lib\CORE" -L"C:\Perl\lib\CORE" -L"C:\Dev-Cpp\lib" perl58 +.lib

And here's many information on using gcc for compiling modules with activestate perl here, on PM

Replies are listed 'Best First'.
Re^9: problem with par as other user
by Ace128 (Hermit) on Jun 30, 2006 at 12:00 UTC
    Ok, well this worked:
    C:\test>c:\Dev-Cpp\bin\gcc.exe "C:\test\start.c" -o "C:\test\start.exe +" -I"C:\Dev-Cpp\include" -I"C:\Perl\lib\CORE" -L"C:\Dev-Cpp\lib" "c:\ +Perl\lib\CORE\perl58.lib"
      ... and we're proud

      :) :) :)

        Yea, nice to be able to compile such kewl things yourself... since then you can always add stuff you want yourself ;)

        But, em... what did you do to make those cstart and wstart? I mean, you do something different in the code or add some parameter to the compiling part?