Search the Community
Showing results for tags 'dso'.
-
Hello GUYS! I am using Houdini 17.5.173 and this is my .env # # Houdini Environment Settings # # The contents of this file are read into the environment # at startup. They will override any existing entries in # the environment. # # The syntax is one entry per line as follows: # VAR = VALUE # # Values may be quoted # VAR = "VALUE" # # Values may be empty # VAR = # # Example: # # HOUDINI_NO_SPLASH = 1 HOUDINI_DSO_ERROR = 2 PATH = "C:/ProgramData/Redshift/bin;$PATH" HOUDINI_PATH = "C:/ProgramData/Redshift/Plugins/Houdini/17.5.173;&" I keep getting this error: The directories are 100% right. I am out of ideas.
-
Hi all, I tried to edit my DSO path as shown in the HDK guide, but it didn't work properly. Worse, now when I launch Houdini, all my plugins are broken! I've realized I don't need to move my DSO path yet, is there any way to reset the DSO path? This is on Mac OS X. Here is my output from hconfig: hconfig HFS := '/Applications/Houdini/Houdini16.0.671/Frameworks/Houdini.framework/Versions/Current/Resources' HOME := '/Users/gfx03' HOUDINI_DESKTOP_DIR := '/Users/gfx03/Desktop' HOUDINI_DSO_ERROR := 2 HOUDINI_DSO_PATH := '/Users/gfx03/HDK/custom' HOUDINI_MENU_PATH := '/Users/gfx03/Library/Application Support/Thinkbox/Deadline10/submitters/HoudiniSubmitter;&' HOUDINI_NO_SPLASH := 1 HOUDINI_OS := 'MacOS' HOUDINI_OTLSCAN_PATH := '/Volumes/tools/houdini/hda;&' HOUDINI_PATH := '/Users/gfx03/Library/Application Support/Thinkbox/Deadline10/submitters/HoudiniSubmitter;&' HOUDINI_TEMP_DIR := '/tmp/houdini_temp' HOUDINI_USER_PREF_DIR := '/Users/gfx03/Library/Preferences/houdini/16.0' SHELL := '/bin/bash' USER := 'gfx03' and here is my output from hconfig -ap: HOUDINI_DSO_PATH := "/Users/gfx03/HDK/custom" The search path for loading custom plug-ins (Dynamic Shared Objects or Dynamic Link Libraries). Default path: '@/dso_^;@/dso' Where @ is replaced with HOUDINI_PATH and ^ is replaced with macos Directories searched (in order) are: 1) "$HOME/HDK/custom" Any help is much appreciated. Edit: Here is the error output I get on launch from terminal: Houdini DSO error on 'IMG_IPlay.dylib' No matching files found in path Houdini DSO error on 'IMG_MDisplay.dylib' No matching files found in path Houdini DSO error on 'IMG_JPEG.dylib' No matching files found in path Houdini DSO error on 'IMG_Cineon.dylib' No matching files found in path Houdini DSO error on 'IMG_Wave.dylib' No matching files found in path Houdini DSO error on 'IMG_Alias.dylib' No matching files found in path Houdini DSO error on 'IMG_Bitmap.dylib' No matching files found in path Houdini DSO error on 'IMG_SoftImage.dylib' No matching files found in path Houdini DSO error on 'IMG_Targa.dylib' No matching files found in path Houdini DSO error on 'IMG_Vertigo.dylib' No matching files found in path Houdini DSO error on 'IMG_RADIANCE.dylib' No matching files found in path Houdini DSO error on 'IMG_OpenEXR.dylib' No matching files found in path Houdini DSO error on 'IMG_PNG.dylib' No matching files found in path Houdini DSO error on 'IMG_ptex.dylib' No matching files found in path Houdini DSO error on 'IMG_ImageIO.dylib' No matching files found in path Houdini DSO error on 'IMG_IOTable.dylib' No matching files found in path Error "/Applications/Houdini/Houdini16.0.671/Frameworks/Houdini.framework/Versions/Current/Resources/houdini/FBoptions"[65]: Unknown file format "JPEG" Warning: Bad operator type when binding handles: Sop/filament_advect_pos Warning: Bad operator type when binding handles: Sop/findshortestpath Warning: Bad operator type when binding handles: Sop/shrinkwrap::2.0
-
I had what is hopefully a quick question about dsos being used by vfl files. I have a compiled dso, and in my vfl I am calling one of the functions that my dso declares. When using vcc to compile my vfl, it states that my function is undefined. From within a houdini shell I can run: $HFS/bin/vcc -X cvex And I can see my the functions declared in my dso. Exactly what do I need to do to get my external vfl files compiled, using my dso? Thanks.