Author Topic: -Wl,-rpath in SlickEdit  (Read 2251 times)

aos

  • Community Member
  • Posts: 22
  • Hero Points: 0
-Wl,-rpath in SlickEdit
« on: December 05, 2019, 04:55:50 PM »
Hello,
I know that in order to add specidic lib to the proj i go to 'Project Properties'->'Compile' Tab-> Libararies/Object->Add Library.
But if i want to add just a Path to the folders that contains the libraries, how do i do it in SlickEdit Interface?

i know that in a regular makefile after the "-Wl,-rpath" flag i can write all the paths to the folders that contains the libraries.
but couldn't find how to do it in slickedit.

thanks,
Aviel.

patrick

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 1818
  • Hero Points: 151
Re: -Wl,-rpath in SlickEdit
« Reply #1 on: December 05, 2019, 07:36:15 PM »
I'm assuming that's a GNU C/C++ project.  Go to Build -> GNU C Options... and click on the "Link" tab, and you can put the rpath options you want in the Other Options field.

aos

  • Community Member
  • Posts: 22
  • Hero Points: 0
Re: -Wl,-rpath in SlickEdit
« Reply #2 on: December 08, 2019, 08:43:43 AM »
Thanks!