Raised This Month: $51 Target: $400
 12% 

Module not loaded.


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
OvidiuS
Chillaxin'
Join Date: Dec 2009
Location: Serbia
Old 03-25-2014 , 01:32   Module not loaded.
Reply With Quote #1

Module i compiled is Team Semiclip by claudiuhks.
I used this makefile
Code:
# (C)2004-2013 AMX Mod X Development Team
# Makefile written by David "BAILOPAN" Anderson

###########################################
### EDIT THESE PATHS FOR YOUR OWN SETUP ###
###########################################

HLSDK   = ../../hlsdk
MM_ROOT = ../../metamod/metamod

#####################################
### EDIT BELOW FOR OTHER PROJECTS ###
#####################################

PROJECT = semiclip

OBJECTS = sdk/amxxmodule.cpp semiclip.cpp

##############################################
### CONFIGURE ANY OTHER FLAGS/OPTIONS HERE ###
##############################################

C_OPT_FLAGS     = -DNDEBUG -O2 -funroll-loops -fomit-frame-pointer -pipe
C_DEBUG_FLAGS   = -D_DEBUG -DDEBUG -g -ggdb3
C_GCC4_FLAGS    = -fvisibility=hidden
CPP_GCC4_FLAGS  = -fvisibility-inlines-hidden
CPP             = gcc
CPP_OSX         = clang

LINK =

INCLUDE = -I. -Isdk -Iinclude -I$(HLSDK) -I$(HLSDK)/public -I$(HLSDK)/common -I$(HLSDK)/dlls -I$(HLSDK)/engine -I$(HLSDK)/pm_shared -I$(HLSDK)/game_shared \
          -I$(MM_ROOT)

################################################
### DO NOT EDIT BELOW HERE FOR MOST PROJECTS ###
################################################

OS := $(shell uname -s)

ifeq "$(OS)" "Darwin"
    CPP = $(CPP_OSX)
    LIB_EXT = dylib
    LIB_SUFFIX = _amxx
    CFLAGS += -DOSX
    LINK += -dynamiclib -lstdc++ -mmacosx-version-min=10.5
else
    LIB_EXT = so
    LIB_SUFFIX = _amxx_i386
    CFLAGS += -DLINUX
    LINK += -shared
endif

LINK += -m32 -lm -ldl

CFLAGS += -DPAWN_CELL_SIZE=32 -DJIT -DASM32 -DHAVE_STDINT_H -fno-strict-aliasing -m32 -Wall
CPPFLAGS += -fno-exceptions -fno-rtti

BINARY = $(PROJECT)$(LIB_SUFFIX).$(LIB_EXT)

ifeq "$(DEBUG)" "true"
    BIN_DIR = Debug
    CFLAGS += $(C_DEBUG_FLAGS)
else
    BIN_DIR = Release
    CFLAGS += $(C_OPT_FLAGS)
    LINK += -s
endif

IS_CLANG := $(shell $(CPP) --version | head -1 | grep clang > /dev/null && echo "1" || echo "0")

ifeq "$(IS_CLANG)" "1"
    CPP_MAJOR := $(shell $(CPP) --version | grep clang | sed "s/.*version \([0-9]\)*\.[0-9]*.*/\1/")
    CPP_MINOR := $(shell $(CPP) --version | grep clang | sed "s/.*version [0-9]*\.\([0-9]\)*.*/\1/")
else
    CPP_MAJOR := $(shell $(CPP) -dumpversion >&1 | cut -b1)
    CPP_MINOR := $(shell $(CPP) -dumpversion >&1 | cut -b3)
endif

# Clang || GCC >= 4
ifeq "$(shell expr $(IS_CLANG) \| $(CPP_MAJOR) \>= 4)" "1"
    CFLAGS += $(C_GCC4_FLAGS)
    CPPFLAGS += $(CPP_GCC4_FLAGS)
endif

# Clang >= 3 || GCC >= 4.7
ifeq "$(shell expr $(IS_CLANG) \& $(CPP_MAJOR) \>= 3 \| $(CPP_MAJOR) \>= 4 \& $(CPP_MINOR) \>= 7)" "1"
    CFLAGS += -Wno-delete-non-virtual-dtor
endif

# OS is Linux and not using clang
ifeq "$(shell expr $(OS) \= Linux \& $(IS_CLANG) \= 0)" "1"
    LINK += -static-libgcc
endif

OBJ_BIN := $(OBJECTS:%.cpp=$(BIN_DIR)/%.o)

# This will break if we include other Makefiles, but is fine for now. It allows
#  us to make a copy of this file that uses altered paths (ie. Makefile.mine)
#  or other changes without mucking up the original.
MAKEFILE_NAME := $(CURDIR)/$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))

$(BIN_DIR)/%.o: %.cpp
    $(CPP) $(INCLUDE) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<

all:
    mkdir -p $(BIN_DIR)
    mkdir -p $(BIN_DIR)/sdk
    $(MAKE) -f $(MAKEFILE_NAME) $(PROJECT)

$(PROJECT): $(OBJ_BIN)
    $(CPP) $(INCLUDE) $(OBJ_BIN) $(LINK) -o $(BIN_DIR)/$(BINARY)

debug:
    $(MAKE) -f $(MAKEFILE_NAME) all DEBUG=true

default: all

clean:
    rm -rf $(BIN_DIR)/*.o
    rm -rf $(BIN_DIR)/sdk/*.o
    rm -f $(BIN_DIR)/$(BINARY)
Module is compiled fine, but it's not loaded. When i type amx_modules it's not showed at all.
OvidiuS is offline
Send a message via Skype™ to OvidiuS
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 13:07.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode